forked from lavanet/lava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv
58 lines (43 loc) · 1.61 KB
/
env
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# lava environment variables for docker-compose
# lava home directory, usually ~/.lava [mandatory: portal, provider]
LAVA_HOME_DIR=.lava
# lava user address -or- user name [mandatory: portal, provider]
# note: at least one must be set (address takes precedence if both are set)
LAVA_USER=
LAVA_ADDRESS=
# lava keyring backend [mandatory: portal, provider]
LAVA_KEYRING=test
# stake amount [mandatory: portal, provider]
# (if bigger than existing stake then we would try to increase it)
LAVA_STAKE_AMOUNT=0ulava
# gas parameters for stakin [mandatory: portal, provider]
LAVA_GAS_MODE=auto
LAVA_GAS_ADJUST=1.5
LAVA_GAS_PRICE=0.000000001ulava
# service geo-location [mandatory: portal, provider]
LAVA_GEOLOCATION=1
# lava rpc node for queries, and the chain id [mandatory: portal, provider]
LAVA_RPC_NODE=http://public-rpc.lavanet.xyz:80/rpc/
LAVA_CHAIN_ID=lava-testnet-1
# listen address for services [mandatory]
# (normally should be to '0.0.0.0' since services run in container network;
# may set to the host's external address when using 'host' network mode for
# the container).
LAVA_LISTEN_IP=0.0.0.0
# listen ports for services [mandatory: node]
LAVA_NODE_PORT_API=1317
LAVA_NODE_PORT_GRPC=9090
LAVA_NODE_PORT_GRPC_WEB=9091
LAVA_NODE_PORT_P2P=26656
LAVA_NODE_PORT_RPC=26657
# listen ports for services [mandatory: portal]
LAVA_PORTAL_PORT=8080
# relay chain id, and api interface [mandatory: portal, provider]
LAVA_RELAY_CHAIN_ID=
LAVA_RELAY_IFACE=jsonrpc
# relay node URL [mandatory: provider]
LAVA_RELAY_NODE_URL=
# relay endpoint(s) [mandatory: provider]
LAVA_RELAY_ENDPOINT=
# lavad log level [mandatory]
LAVA_LOG_LEVEL=info