Post
Topic
Board Announcements (Altcoins)
Re: [ANN][APT] Aptcoin★ASIC Resistant Scrypt In-Motion(NM) w/Aptcurve Retargeting
by
GimmeMyCoins
on 28/01/2018, 07:29:10 UTC
Helpful Info:


Currently Aptcoin is CPU minable only. Mine directly from the wallet.
 
- There is also a stand alone CPU miner but it will need to be compiled - https://github.com/aptcoin/cpuminer

Exchange - YoBit (Price should be a lot Higher based on Coin Supply)

NEW Block Explorer - http://45.32.213.208:3002
(Donations: APT- APgkkrqV6aa7pntepmh5TERSVSJk1kxr74 BTC- 1LJgTxr6gn1y3vQKWSUDmvm7u3HR4MuNoH )


Aptcoin basics:

Project Started - August 2014
Current Coin Supply - 9.8 Million APT - No Premine
Max Coins – 42 Million APT
Block time – 5 minutes - This can be shorter or MUCH longer. This is the normal difficulty retargeting for Aptcoin.

Aptcoin Wallet Info:
 
Source - https://github.com/aptcoin/aptcoin.git

Windows Wallet
https://github.com/aptcoin/aptcoin/releases/download/0.9.0.2/aptcoin-qt-0.9.0.2.zip

OSX Wallet
https://github.com/aptcoin/aptcoin/releases/download/0.9.0.2/Aptcoin-Qt-0.9.0.2.dmg

Create config file and add Nodes:

Win7: C:\Users\Username\AppData\Roaming\aptcoin\aptcoin.conf
OS X: /home/User/Library/Application Support/aptcoin/aptcoin.conf
Linux: /home/User/.aptcoin/aptcoin.conf
Code:
rpcallowip=127.0.0.1
rpcuser=rpcuser
rpcpassword=rpcpass
addnode=45.32.213.208
addnode=118.126.112.172
addnode=34.239.110.36

Compiling on Debian/Ubuntu:

Code:
sudo apt-get install ntp git build-essential libssl-dev libdb-dev libdb++-dev libboost-all-dev libqrencode-dev
git clone https://github.com/aptcoin/aptcoin.git
cd aptcoin/src
make -f makefile.unix

Running a full Aptcoin node:
Code:
./aptcoind -daemon

Running a full Aptcoin node (while also mining):
Code:
./aptcoind -daemon -gen

Checking the status and confirmed balance:
Code:
./aptcoind getinfo

Showing combined confirmed and immature balance:
Code:
./aptcoind listaccounts

Showing mining info (your hashrate, network hashrate, etc):
Code:
./aptcoind getmininginfo