added bootstrap to harmony
This commit is contained in:
75
README_POKT.md
Normal file
75
README_POKT.md
Normal file
@@ -0,0 +1,75 @@
|
||||
Tested on Ubuntu 20.04.3 LTS
|
||||
|
||||
#### Prerequisites:
|
||||
docker <br />
|
||||
docker-compose <br />
|
||||
DNS A-Record pointing to your server <br />
|
||||
Wireguard-Server: Paste wireguard wg0.conf from wireguard-server to wireguard/config/wg0.conf <br />
|
||||
.env File inside POKT-DOKT with secrets <br />
|
||||
|
||||
#### Usage
|
||||
|
||||
```
|
||||
git clone https://github.com/cventastic/POKT_DOKT.git
|
||||
cd POKT_DOKT
|
||||
git reset --hard origin/main && git pull && ./util/prepare.sh
|
||||
```
|
||||
|
||||
# EXAMPLES
|
||||
|
||||
Start POKT in relay mode:
|
||||
```
|
||||
command: pocket start --simulateRelay
|
||||
```
|
||||
If you want to activly relay. You also have to Stake! <br />
|
||||
Testnet-Faucet: (https://faucet.pokt.network/) <br />
|
||||
How to stake: https://docs.pokt.network/home/paths/node-runner#stake-the-validator <br />
|
||||
|
||||
POKT QUERY for simulate-relay mode:
|
||||
```
|
||||
Pockt-Testnet:
|
||||
curl -X POST --data '{"relay_network_id":"0002","payload":{"data":"{}","method":"POST","path":"v1/query/height","headers":{}}}' http://localhost:8082/v1/client/sim
|
||||
Pocket-Mainnet:
|
||||
curl -X POST --data '{"relay_network_id":"0001","payload":{"data":"{}","method":"POST","path":"v1/query/height","headers":{}}}' http://localhost:8081/v1/client/sim
|
||||
```
|
||||
|
||||
GETH QUERY (from whitelisted servers e.g pokt-test) for simulate-relay mode:
|
||||
```
|
||||
Pocket-Testnet:
|
||||
curl -X POST --data '{"relay_network_id":"0020","payload":{"data":"{\"jsonrpc\":\"2.0\",\"method\":\"eth_getBalance\",\"params\":[\"0x1a8c807a6E4F624fCab01FEBf76a541d31B8345A\", \"latest\"],\"id\":1}","method":"POST","path":"","headers":{}}}' http://127.0.0.1:8082/v1/client/sim
|
||||
curl -v -X POST --data '{"relay_network_id":"0020","payload":{"data":"{\"jsonrpc\":\"2.0\",\"method\":\"eth_syncing\",\"params\":[],\"id\":1}","method":"POST","path":"","headers":{}}}' http://127.0.0.1:8082/v1/client/sim
|
||||
Pocket-Mainnet:
|
||||
curl -X POST --data '{"relay_network_id":"0020","payload":{"data":"{\"jsonrpc\":\"2.0\",\"method\":\"eth_getBalance\",\"params\":[\"0x1a8c807a6E4F624fCab01FEBf76a541d31B8345A\", \"latest\"],\"id\":1}","method":"POST","path":"","headers":{}}}' http://127.0.0.1:8081/v1/client/sim
|
||||
curl -v -X POST --data '{"relay_network_id":"0020","payload":{"data":"{\"jsonrpc\":\"2.0\",\"method\":\"eth_syncing\",\"params\":[],\"id\":1}","method":"POST","path":"","headers":{}}}' http://127.0.0.1:8081/v1/client/sim
|
||||
```
|
||||
|
||||
STANDARD GETH QUERY (from whitelistet server)
|
||||
```
|
||||
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}' https://$RPCNODE/goerli
|
||||
```
|
||||
|
||||
# SSL
|
||||
I you want to test SSL comment in:
|
||||
```
|
||||
# - "--certificatesresolvers.myresolver.acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory"
|
||||
```
|
||||
Check if there is a file here /traefic/letsencrypt/acme.json if yes, you have to delete it. <br />
|
||||
Otherwise traefik will not issue the certificate for an existing domain. <br />
|
||||
|
||||
#### TODO !!!!
|
||||
Bootstrapping from Snapshots <br />
|
||||
Link-Timezone into containers.
|
||||
|
||||
AVALANCHE:
|
||||
- Archive?
|
||||
- Monitoring https://docs.avax.network/build/tools/dashboards/README
|
||||
|
||||
### Notes
|
||||
#### Monitoring
|
||||
Telegram get group ids the bot is in:
|
||||
```curl -X POST https://api.telegram.org/bot$TELEGRAM_API_TOKEN/getUpdates```
|
||||
|
||||
### neue NODE
|
||||
.env
|
||||
rpc-timeout
|
||||
whitelist
|
||||
Reference in New Issue
Block a user