Start Node
Before running the EN (Execution Node), the following steps must be completed:
Mainnet
To run the node on the CROSS mainnet network, use the following command. You may add additional flags or specify a configuration file as needed.
The --cross
flag is used to indicate that the mainnet network should be used.
geth --syncmode full --datadir {data_folder} --http --http.addr 0.0.0.0 --cross
Testnet
To run the node on the CROSS testnet network, use the following command. You may add additional flags or specify a configuration file as needed.
The --crosstest
flag is used to indicate that the testnet network should be used.
geth --syncmode full --datadir {data_folder} --http --http.addr 0.0.0.0 --crosstest
Updated 26 days ago