Multi-functional Node Client on Ngin Network
git clone github.com/NginProject/ngFuncNode
cd ngFuncNode
# For Linux
make
./ngFuncNode -a 1.1.1.1 # Replace 1.1.1.1 with your IP
# For Windows
go run ./cmd/config2go > ./cmd/ngFuncNode/config.go
go build ./cmd/ngFuncNode
ngFuncNode.exe -a 1.1.1.1 # Replace 1.1.1.1 with your IP
How to run a ngFuncNode to gain reward?
- run a mainnet ngind daemon
./ngind --rpc
- Make sure your 52520 port is exposed to internet
- run the ngFuncNode with external IP address flag
./ngFuncNode --a 1.1.1.1
(change1.1.1.1
with your IP) - When both
ngind
andngFuncNode
are running all the time. If they stop, delivering reward to your coinbase account would stop in next 2 or 3 blocks.
For Windows, just need to convert the ./ngind
to ngind.exe
, the ./ngFuncNode
to ngFuncNode.exe