Running Network1 Node
To run a Network1 Node, follow the simple guide below;
Steps to Run a Full node
# Linux
wget $(curl -s https://api.github.com/repos/network1/net1/releases/latest |grep browser_ |grep geth_linux |cut -d\" -f4)
mv geth_linux geth
chmod -v u+x geth
# MacOS
wget $(curl -s https://api.github.com/repos/network1/net1/releases/latest |grep browser_ |grep geth_mac |cut -d\" -f4)
mv geth_mac geth
chmod -v u+x geth# mainnet
wget $(curl -s https://api.github.com/repos/network1/net1/releases/latest |grep browser_ |grep mainnet |cut -d\" -f4)
unzip mainnet.zip
# testnet
wget $(curl -s https://api.github.com/repos/network1/net1/releases/latest |grep browser_ |grep testnet |cut -d\" -f4)
unzip testnet.zipLast updated