-
Run the following command to get the Node ID:
aircosmicd tendermint show-node-id
-
Locate
genesis.json
at~/.aircosmicd/config/genesis.json
and find thechain_id
:{ "chain_id": "your_chain_id_here", ... }
-
Initialize the new node using the
chain_id
from the seed node'sgenesis.json
:aircosmicd init Your-Node-Name-Here --chain-id=your_chain_id_here
-
Transfer the
genesis.json
file from Computer 1 to Computer 2:scp username@computer_1_ip:~/.aircosmicd/config/genesis.json ~/.aircosmicd/config/genesis.json
-
Edit
~/.aircosmicd/config/config.toml
on Computer 2 to setpersistent_peers
:persistent_peers = "node_id@computer_1_ip:26656"
-
Start the new node:
aircosmicd start
- Use
aircosmicd status
to verify if the new node is syncing correctly with the seed node.
Feel free to ask further questions or reach out for more details.