-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.testnet
39 lines (30 loc) · 1.46 KB
/
.env.testnet
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
39
# Docker image path at Docker Hub
REGISTRY_HOST=registry.hub.docker.com
REGISTRY_GROUP=dfinance
# Tendermint chain-id
CHAIN_ID=dn-testnet-v2
# Comma separated list of seed nodes to connect to
# NODE_SEEDS=
# Comma separated list of nodes to keep persistent connections to
PERSISTENT_PEERS=fe00e769f8a8f08832c034ad64a07aed9ba983bc@167.71.73.25:26616,[email protected]:26626,[email protected]:26636,[email protected]:26646
# Address to advertise to peers for them to dial (set your public IP and port from NODE_P2P_PORT variable)
# EXTERNAL_ADDRESS=tcp://x.x.x.x:26656
# Seed mode, in which node constantly crawls the network and looks for
# peers. If another node asks it for addresses, it responds and disconnects.
SEED_MODE=false
# RPC endpoint with genesis, if you'd like to see it try curl:
# $ curl https://rpc.testnet.dfinance.co/genesis
# If the variable is not set, then genesis.json from the repository is used,
# otherwise it is downloaded from the link.
# GENESIS_RPC_ENDPOINT=https://rpc.testnet.dfinance.co/genesis
# name of your node
NODE_MONIKER=my-first-dfinance-node
# container tag to use in dvm - https://github.com/dfinance/dvm
# and in dnode - https://github.com/dfinance/dnode
NODE_TAG=latest
DVM_TAG=latest
# you can also change these:
# DVM_COMPILER_PORT=127.0.0.1:50051
# NODE_REST_PORT=127.0.0.1:1317
# NODE_P2P_PORT=26656
# NODE_RPC_PORT=127.0.0.1:26657