Run Node
Running WorldLand and Connecting to the Network
WARNING
If you're running a WorldLand node for the first time, or if you've run a different version of an EVM-compatible chain with a different network number, run the following to initialize your locally stored block data:
bash
rm -rf ~/.ethereumTIP
These documents are based on Unix documentation. For Windows, type worldland instead of ./worldland.
First, you'll need to make a directory to store block information. Then move to /WorldLand/build/bin and start the node:
Seoul Mainnet (Chain ID: 103)
bash
./worldland consoleGwangju Testnet (Chain ID: 10359)
bash
./worldland -gwangju consoleExpected Output
When the node starts successfully, you should see output similar to:
INFO [07-24|07:41:11.823] Starting client on Worldland Seoul mainnet...
INFO [07-24|07:41:11.825] Maximum peer count ETH=50 LES=0 total=50
INFO [07-24|07:41:11.863] ---------------------------------------------------------------
INFO [07-24|07:41:11.863] Chain ID: 103 (seoul)
INFO [07-24|07:41:11.863] Consensus: Eccpow (proof-of-work)
INFO [07-24|07:41:11.863] ---------------------------------------------------------------
INFO [07-24|07:41:11.876] IPC endpoint opened url=/home/ubuntu/test0724/geth.ipc
INFO [07-24|07:41:11.876] Started P2P networking
Welcome to the Worldland JavaScript console!
instance: Worldland/v1.0.0/linux-amd64/go1.20.6
at block: 0
datadir: /home/ubuntu/test0724
modules: admin:1.0 debug:1.0 ecc:1.0 engine:1.0 eth:1.0
miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0
To exit, press ctrl-d or type exitYou can verify the Chain ID is 103 (Seoul Mainnet).
INFO
Wait until the node is running and fully synchronized with the network. This process takes between 30 minutes and 1 hour depending on your hardware and network conditions.