# Linux
wget $(curl -s https://api.github.com/repos/aiachain/aia/releases/latest |grep browser_ |grep geth_linux |cut -d\" -f4)
mv geth_linux geth
chmod -v u+x geth
# mainnet
wget $(curl -s https://api.github.com/repos/aiachain/aia/releases/latest |grep browser_ |grep mainnet |cut -d\" -f4)
unzip mainnet.zip
./geth --config ./config.toml --datadir ./node
INFO [07-01|15:59:29.039] Imported new chain segment blocks=2048 txs=5 mgas=3.051 elapsed=486.787ms mgasps=6.267 number=6169 hash=136200..a326f8 age=2y11mo3w dirty=117.71KiB
INFO [07-01|15:59:29.535] Imported new chain segment blocks=1895 txs=0 mgas=0.000 elapsed=486.088ms mgasps=0.000 number=8064 hash=9d7c2f..7919ec age=2y11mo3w dirty=128.09KiB
INFO [07-01|15:59:30.011] Imported new chain segment blocks=2048 txs=0 mgas=0.000 elapsed=466.577ms mgasps=0.000 number=10112 hash=485e3f..00e1a8 age=2y11mo3w dirty=135.38KiB
INFO [07-01|15:59:30.488] Imported new chain segment blocks=2048 txs=0 mgas=0.000 elapsed=463.842ms mgasps=0.000 number=12160 hash=7056d5..988849 age=2y11mo3w dirty=136.87KiB
nohup ./geth --config ./config.toml --datadir ./node --logpath logs >> /dev/null 2>&1 &