-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.sample
executable file
·38 lines (29 loc) · 1.7 KB
/
.env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# A correct value allows Poktroll full node to participate in P2P communication
NODE_HOSTNAME=
# Deployment env vars
NETWORK_NAME=testnet-validated
POKTROLLD_IMAGE_REPO=ghcr.io/pokt-network/poktrolld
# The version of the image to run off-chain components such as RelayMiner and AppGate.
# Adjust the value when need to upgrade off-chain actors.
POKTROLLD_IMAGE_TAG_OFF_CHAIN=0.0.9-3 # latest
# The version of the image to use for the full-node. As the network upgrades, the full-node will be upgraded automatically
# using cosmovisor. That value can be adjusted **after** the upgrade, though not necessary for normal operations.
# Should match the value here when synching the full-node from genesis:
# https://github.com/pokt-network/pocket-network-genesis/blob/master/poktrolld/testnet-validated.init-version
POKTROLLD_IMAGE_TAG_VALIDATOR=0.0.9
POKTROLLD_LOG_LEVEL=info
# Credentials for AppGateServer, Gateway and RelayMiner
APPLICATION_MNEMONIC=""
APPLICATION_ADDR=""
SUPPLIER_MNEMONIC=""
SUPPLIER_ADDR=""
GATEWAY_MNEMONIC=""
GATEWAY_ADDR=""
# [email protected]:26656 # validator
[email protected]:26656 # dedicated seed
# For Grove Protocol team members, you can get the latest seed like so:
# $ kubectl config use-context gke_protocol-us-central1-d505_us-central1_protocol-us-central1
# $ kubectl describe pod testnet-validated-seed1-poktrolld-0 --namespace=testnet-validated-seed1 | grep "persistent_peers"
# As a bonus, here are some other helpers:
# $ kubectl get svc testnet-validated-seed1-poktrolld-p2p --namespace=testnet-validated-seed1
# $ kubectl logs testnet-validated-seed1-poktrolld-0 --namespace=testnet-validated-seed1