Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add Berty validator node in conf files #3095

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions misc/deployments/test5.gno.land/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The initial `genesis.json` validator set is consisted of 6 entities (17 validato
- AiB - the AiB DevOps team (**3 validators**)
- Onbloc - the [Onbloc](https://onbloc.xyz/) team (**2 validator**)
- Teritori - the [Teritori](https://teritori.com/) team (**1 validator**)
- Berty - the [Berty](https://berty.io/) team (**1 validator**)
- Berty - the [Berty](https://berty.tech/) team (**1 validator**)

Subsequent validators will be added through the governance mechanism in govdao, employing a preliminary simplified
version Proof of Contribution.
Expand All @@ -35,7 +35,7 @@ Some configuration params are required, while others are advised to be set.
reverse-proxy, and keep this value at `tcp://0.0.0.0:<port>`.
- `p2p.max_num_outbound_peers` - the max number of outbound peer connections. **Advised to be `40`**.
- `p2p.persistent_peers` - the persistent peers. ⚠️ **Required to be
`TODO`** ⚠️.
`[email protected]:26656`** ⚠️.
- `p2p.pex` - if using a sentry node architecture, should be `false`. **If not, please set to `true`**.
- `p2p.external_address` - the advertised peer dial address. If empty, will use the same port as the `p2p.laddr`. This
value should be **changed to `{{ your_ip_address }}:26656`**
Expand Down
6 changes: 1 addition & 5 deletions misc/deployments/test5.gno.land/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,7 @@ max_num_outbound_peers = 40 # Advised value is 40
max_packet_msg_payload_size = 1024

# Comma separated list of nodes to keep persistent connections to
persistent_peers = "
g16384atcuf6ew3ufpwtvhymwfyl2aw390aq8jtt@gno-core-sen-01.test5.gno.land:26656,
g1ty443uhf6qr2n0gv3dkemr4slt96e5hnmx90qh@gno-core-sen-02.test5.gno.land:26656,
g19x2gsyn02fldtq44dpgtcq2dq28kszlf5jn2es@gno-core-sen-03.test5.gno.land:26656,
" # TODO update @Salvo, @Blake, @Sergio, @Norman, @Albert
persistent_peers = "g16384atcuf6ew3ufpwtvhymwfyl2aw390aq8jtt@gno-core-sen-01.test5.gno.land:26656,g1ty443uhf6qr2n0gv3dkemr4slt96e5hnmx90qh@gno-core-sen-02.test5.gno.land:26656,g19x2gsyn02fldtq44dpgtcq2dq28kszlf5jn2es@gno-core-sen-03.test5.gno.land:26656,[email protected]:26656" # TODO update @Salvo, @Blake, @Sergio, @Norman, @Albert

# Set true to enable the peer-exchange reactor
pex = false # Should be `false` if using a sentry node. Otherwise `true`!
Expand Down
12 changes: 11 additions & 1 deletion misc/deployments/test5.gno.land/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@
},
"power": "1",
"name": "gnocore-val-06"
},
{
"address": "g1ut590acnamvhkrh4qz6dz9zt9e3hyu499u0gvl",
"pub_key": {
"@type": "/tm.PubKeyEd25519",
"value": "KRPAQ2SLZvQUrc9P2l/DCEH6okMX13bds5Ma/wOQgBM="
},
"power": "1",
"name": "berty-val-1"
}
],
"app_hash": null,
Expand Down Expand Up @@ -108,7 +117,8 @@
"g18amm3fc00t43dcxsys6udug0czyvqt9e7p23rd=9000000000000000000ugnot",
"g127l4gkhk0emwsx5tmxe96sp86c05h8vg5tufzq=9000000000000000000ugnot",
"g16tfrrul20g4jzt3z303raqw8vs8s2pqqh5clwu=9000000000000000000ugnot",
"g1a6jf5g6gkhn5rxcvwxq5zjxgwaznjr9r8gehey=9000000000000000000ugnot"
"g1a6jf5g6gkhn5rxcvwxq5zjxgwaznjr9r8gehey=9000000000000000000ugnot",
"g1qynsu9dwj9lq0m5fkje7jh6qy3md80ztqnshhm=9000000000000000000ugnot"
],
"txs": null
}
Expand Down
2 changes: 1 addition & 1 deletion misc/deployments/test5.gno.land/genesis_balances.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ g1sw5xklxjjuv0yvuxy5f5s3l3mnj0nqq626a9wr=9000000000000000000ugnot # Albert

# Berty

# TODO @Jeff please add these here
g1qynsu9dwj9lq0m5fkje7jh6qy3md80ztqnshhm=9000000000000000000ugnot

# Dragos

Expand Down
Loading