Skip to content

Commit 826209e

Browse files
authored
Added genesis, persistent peers for the testnet (#67)
* Fixed typo * Added instruction item about how to make node publicly accessible * The same for genesis node * Added genesis, persistent peers for the testnet * Updated `running-node` instruction * Persistent network configurations moved to deployment folder
1 parent 5ca4792 commit 826209e

File tree

5 files changed

+122
-8
lines changed

5 files changed

+122
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
{
2+
"genesis_time": "2020-10-19T10:19:18.147430343Z",
3+
"chain_id": "testnet",
4+
"consensus_params": {
5+
"block": {
6+
"max_bytes": "22020096",
7+
"max_gas": "-1",
8+
"time_iota_ms": "1000"
9+
},
10+
"evidence": {
11+
"max_age": "100000"
12+
},
13+
"validator": {
14+
"pub_key_types": [
15+
"ed25519"
16+
]
17+
}
18+
},
19+
"app_hash": "",
20+
"app_state": {
21+
"compliancetest": {
22+
"testing_result_records": []
23+
},
24+
"pki": {
25+
"proposed_certificates": [],
26+
"approved_certificates_records": [],
27+
"proposed_certificate_revocations": [],
28+
"revoked_certificates_records": [],
29+
"child_certificates_records": []
30+
},
31+
"auth": {
32+
"accounts": [],
33+
"pending_accounts": [],
34+
"pending_account_revocations": []
35+
},
36+
"validator": {
37+
"validators": [],
38+
"last_validators": [],
39+
"signing_infos": {},
40+
"missed_blocks": {}
41+
},
42+
"genutil": {
43+
"accounts": [
44+
{
45+
"address": "cosmos1fchu73y8n0h47mlxyyyd9wtwz5767cl8mcpvv6",
46+
"public_key": {
47+
"type": "tendermint/PubKeySecp256k1",
48+
"value": "A6boWLQ19DQdSA2NXqHF1i7Jf1zU9PBdm25/oangrh1s"
49+
},
50+
"account_number": "0",
51+
"sequence": "0",
52+
"roles": [
53+
"Trustee",
54+
"NodeAdmin"
55+
]
56+
}
57+
],
58+
"gentxs": [
59+
{
60+
"type": "cosmos-sdk/StdTx",
61+
"value": {
62+
"msg": [
63+
{
64+
"type": "validator/CreateValidator",
65+
"value": {
66+
"validator_address": "cosmosvalcons1sny4psk3zv5lyn4prhpdplud82zpy8s77rnzve",
67+
"validator_pubkey": "cosmosvalconspub1zcjduepq0akjmv6zsl4zh99p006w5e6w2nm68fsd40f8dkwy7w2lstmvew7qksk4ga",
68+
"description": {
69+
"name": "dsr1"
70+
},
71+
"signer": "cosmos1fchu73y8n0h47mlxyyyd9wtwz5767cl8mcpvv6"
72+
}
73+
}
74+
],
75+
"fee": {
76+
"amount": [],
77+
"gas": "200000"
78+
},
79+
"signatures": [
80+
{
81+
"pub_key": {
82+
"type": "tendermint/PubKeySecp256k1",
83+
"value": "A6boWLQ19DQdSA2NXqHF1i7Jf1zU9PBdm25/oangrh1s"
84+
},
85+
"signature": "PTdtIZN5Qtv8TnxH+idgRYGbVUjC//jie/07DTpIAvJKfELobzkD0a+k1DIpGQihtGy96MgggvqAzjoIfx7s7Q=="
86+
}
87+
],
88+
"memo": "b0ee4bb4d45da84cd3b9d4f779c8590d30c3aaf5@172.26.4.110:26656"
89+
}
90+
}
91+
]
92+
},
93+
"modelinfo": {
94+
"model_info_records": []
95+
},
96+
"compliance": {
97+
"compliance_model_records": []
98+
}
99+
}
100+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b0ee4bb4d45da84cd3b9d4f779c8590d30c3aaf5@54.73.187.91:26656,405af98ff8e9a41df4d709b576e7317d5cb2572f@3.124.76.30:26656

docs/how-to.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Here is the list of supported settings:
5656
In order to connect the CLI to a DC Ledger Network (Chain), the following parameters should be used:
5757

5858
* `dclcli config chain-id <chain-id>` - `<chain-id>` defines the Network you want to connect to
59-
* Use `dcl-test-net-chain` if you want to connect to persistent Test Net
59+
* Use `testnet` if you want to connect to persistent Test Net
6060
* A full list of available persistent chains can be found in [Persistent Chains](../deployment/persistent_chains)
6161
where every sub-folder matches the corresponding chain-id.
6262
* `dclcli config output json` - Output format (text/json).

docs/running-genesis-node.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,18 @@ must have a unique chain ID.
8383
* Replace `ubuntu` with a user name you want to start service on behalf
8484
* Copy service configuration.
8585
* `cp dcld.service /etc/systemd/system/`
86+
* Make your node public:
87+
* Open `$HOME/.dcld/config/config.toml`
88+
* Find the line under `# TCP or UNIX socket address for the RPC server to listen on`
89+
* Change it to: `laddr = "tcp://0.0.0.0:26657"`
8690
* Optionally, edit `$HOME/.dcld/config/config.toml` in order to set different setting (like listen address).
8791
* Enable the service: `sudo systemctl enable dcld`
8892
* Start node: `sudo systemctl start dcld`
8993
* For testing purpose the node can be started in CLI mode: `dcld start` (instead of two previous `systemctl` commands).
9094
Service mode is recommended for demo and production environment.
9195

92-
* Use `systemctl start status` to get the node service status.
96+
* Use `systemctl status dcld` to get the node service status.
97+
* Use `journalctl -u dcld.service -f` to see node logs.
9398
* You can also check node status by executing the command `dclcli status` to get the current status.
9499
The value of `latest_block_height` reflects the current node height.
95100

docs/running-node.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ and contains the genesis and persistent_peers files.
5050

5151
2. Configure dclcli:
5252
* `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
5454
* `dclcli config output json` - Output format (text/json).
5555
* `dclcli config indent true` - Add indent to JSON response.
5656
* `dclcli config trust-node false` - Verify proofs for node responses.
@@ -92,18 +92,26 @@ and contains the genesis and persistent_peers files.
9292
```
9393

9494
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
9697
* 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.
99108
* Open `26656` (p2p) and `26657` (RPC) ports.
100109
* `sudo ufw allow 26656/tcp`
101110
* `sudo ufw allow 26657/tcp`
102111
* Edit `dcld.service`
103112
* Replace `ubuntu` with a user name you want to start service on behalf
104113
* Copy service configuration.
105114
* `cp dcld.service /etc/systemd/system/`
106-
* Optionally, edit `$HOME/.dcld/config/config.toml` in order to set different setting (like listen address).
107115

108116
5. Add validator node to the network:
109117
* Get this node's tendermint validator address: `dcld tendermint show-address`.
@@ -124,7 +132,7 @@ and contains the genesis and persistent_peers files.
124132
* For testing purpose the node can be started in CLI mode: `dcld start` (instead of two previous `systemctl` commands).
125133
Service mode is recommended for demo and production environment.
126134

127-
* Use `systemctl start status` to get the node service status.
135+
* Use `systemctl status dcld` to get the node service status.
128136
In the output, you can notice that `height` increases quickly over time.
129137
This means that the node in updating to the latest network state (it takes some time).
130138

0 commit comments

Comments
 (0)