Setup PinkChain Node

Windows

Step 1: Create a folder named Pink in your harddrive. Let's assume the folder is in C drive.

Step 2: Download client software and genesis file. Put them inside Pink folder.

Client: https://downloads.pinkchain.net/mainnet/binary/windows/pink.exearrow-up-right

Genesis: https://downloads.pinkchain.net/mainnet/genesis/pinkchain.jsonarrow-up-right

Step 3: Open cmd and type:

cd C:/Pink

pink.exe --datadir c:/mainnet/data init pinkchain.json

pink.exe --datadir c:/mainnet/data --syncmode "full" console

Linux / Ubuntu

Commands to install node:

cd

mkdir pinkchain && cd pinkchain

wgethttps://downloads.pinkchain.net/mainnet/binary/linux/pinkarrow-up-right

wgethttps://downloads.pinkchain.net/mainnet/genesis/pinkchain.jsonarrow-up-right

chmod u+x pink

./pink --datadir data init pinkchain.json

./pink --datadir data --syncmode "full"

Commands to access the node via IPC:

cd

cd pinkchain

./pink attach /root/pinkchain/data/geth.ipc

Last updated