@@ -50,7 +50,7 @@ and contains the genesis and persistent_peers files.
50
50
51
51
2 . Configure dclcli:
52
52
* ` dclcli config chain-id <chain-id> `
53
- * Use ` dcl-test-net-chain ` if you want to connect to the persistent Test Net
53
+ * Use ` testnet ` if you want to connect to the persistent Test Net
54
54
* ` dclcli config output json ` - Output format (text/json).
55
55
* ` dclcli config indent true ` - Add indent to JSON response.
56
56
* ` dclcli config trust-node false ` - Verify proofs for node responses.
@@ -92,18 +92,26 @@ and contains the genesis and persistent_peers files.
92
92
```
93
93
94
94
4 . Initialize the node and create the necessary config files:
95
- * Init Node: ` dcld init <node name> --chain-id dclchain ` .
95
+ * Init Node: ` dcld init <node name> --chain-id <chain-id> ` .
96
+ * Use ` testnet ` if you want to connect to the persistent Test Net
96
97
* Put ` genesis.json ` into dcld's config directory (usually ` $HOME/.dcld/config/ ` ).
97
- * Open ` $HOME/.dcld/config/config.toml ` file in your favorite text editor and
98
- set the value for the ` persistent_peers ` field as the content of ` persistent_peers.txt ` file.
98
+ * Use ` deployment/persistent_chains/testnet/genesis.json ` if you want to connect to the persistent Test Net
99
+ * Open ` $HOME/.dcld/config/config.toml ` file in your favorite text editor:
100
+ * Tell node how to connect to the network:
101
+ * Set the value for the ` persistent_peers ` field as the content of ` persistent_peers.txt ` file.
102
+ * Use ` deployment/persistent_chains/testnet/persistent_peers.txt ` if you want to connect to the persistent Test Net.
103
+ * Make your node public:
104
+ * Open ` $HOME/.dcld/config/config.toml `
105
+ * Find the line under ` # TCP or UNIX socket address for the RPC server to listen on `
106
+ * Change it to: ` laddr = "tcp://0.0.0.0:26657" `
107
+ * Optionally change other setting.
99
108
* Open ` 26656 ` (p2p) and ` 26657 ` (RPC) ports.
100
109
* ` sudo ufw allow 26656/tcp `
101
110
* ` sudo ufw allow 26657/tcp `
102
111
* Edit ` dcld.service `
103
112
* Replace ` ubuntu ` with a user name you want to start service on behalf
104
113
* Copy service configuration.
105
114
* ` cp dcld.service /etc/systemd/system/ `
106
- * Optionally, edit ` $HOME/.dcld/config/config.toml ` in order to set different setting (like listen address).
107
115
108
116
5 . Add validator node to the network:
109
117
* Get this node's tendermint validator address: ` dcld tendermint show-address ` .
@@ -124,7 +132,7 @@ and contains the genesis and persistent_peers files.
124
132
* For testing purpose the node can be started in CLI mode: ` dcld start ` (instead of two previous ` systemctl ` commands).
125
133
Service mode is recommended for demo and production environment.
126
134
127
- * Use ` systemctl start status ` to get the node service status.
135
+ * Use ` systemctl status dcld ` to get the node service status.
128
136
In the output, you can notice that ` height ` increases quickly over time.
129
137
This means that the node in updating to the latest network state (it takes some time).
130
138
0 commit comments