Make sure you have all prerequisites set up.
Steps are the same as in full-node.md
except:
- Set
<node-type>
to"observer"
when using run_dcl_node - Configure node specific parameters before running the node depending on the ON deployment option.
This is the main option if you want to connect an ON to CSA public nodes.
[config.toml
]
[p2p]
pex = true
seeds = "<seed-node-ID>@<seed-node-public-IP>:26656"
addr_book_strict = false
[app.toml
]
[api]
enable = true
CSA `seeds` Example for Testnet 2.0 (clickable)
seeds = "[email protected]:26656"
CSA `seeds` Example for MainNet (clickable)
seeds = "[email protected]:26656"
This option can be used if you have a trusted relationship with some organization and that organization provided you with access to its nodes.
[config.toml
]
[p2p]
pex = true
persistent_peers = "<node1-ID>@<node1-IP>:26656,..." # See the comment below on what values should be set here
addr_book_strict = false
[app.toml
]
[api]
enable = true
persistent_peers
value:
- another organization nodes with public IPs that this organization shared with you.
This is the option when you have a VN and want to create an ON connected to it.
[config.toml
]
[p2p]
pex = true
persistent_peers = "<node1-ID>@<node1-IP>:26656,..." # See the comment below on what values should be set here
addr_book_strict = false
[app.toml
]
[api]
enable = true
persistent_peers
value:
- If your VN doesn't use any Private Sentry nodes, then it must point to the
Validator
node with private IP. - Otherwise, it must point to the Private Sentry nodes with private IPs.
- Use the following command to get
node-ID
of a node:./dcld tendermint show-node-id
.