forked from cerc-io/stack-orchestrator
58 lines
917 B
Bash
58 lines
917 B
Bash
|
# Enable remote debugging using dlv
|
||
|
CERC_REMOTE_DEBUG=false
|
||
|
|
||
|
# Enable startup script debug output.
|
||
|
CERC_SCRIPT_DEBUG=false
|
||
|
|
||
|
# Simple toggle to choose either a 'full' node or an 'archive' node
|
||
|
# (controls the values of --syncmode --gcmode --snapshot)
|
||
|
CERC_GETH_MODE_QUICK_SET=full
|
||
|
|
||
|
# Optional custom node name.
|
||
|
# GETH_NODE_NAME=""
|
||
|
|
||
|
# Specify any other geth CLI options.
|
||
|
GETH_OPTS=""
|
||
|
|
||
|
# --cache
|
||
|
GETH_CACHE=1024
|
||
|
|
||
|
# --cache.database
|
||
|
GETH_CACHE_DB=50
|
||
|
|
||
|
# --cache.gc
|
||
|
GETH_CACHE_GC=25
|
||
|
|
||
|
# --cache.trie
|
||
|
GETH_CACHE_TRIE=15
|
||
|
j
|
||
|
# --datadir
|
||
|
GETH_DATADIR="/data"
|
||
|
|
||
|
# --http.api
|
||
|
GETH_HTTP_API="eth,web3,net"
|
||
|
|
||
|
# --authrpc.jwtsecret
|
||
|
GETH_JWTSECRET="/etc/mainnet-eth/jwtsecret"
|
||
|
|
||
|
# --maxpeers
|
||
|
GETH_MAX_PEERS=100
|
||
|
|
||
|
# --rpc.evmtimeout
|
||
|
GETH_RPC_EVMTIMEOUT=0
|
||
|
|
||
|
# --rpc.gascap
|
||
|
GETH_RPC_GASCAP=0
|
||
|
|
||
|
# --txlookuplimit
|
||
|
GETH_TXLOOKUPLIMIT=0
|
||
|
|
||
|
# --verbosity
|
||
|
GETH_VERBOSITY=3
|
||
|
|
||
|
# --log.vmodule
|
||
|
GETH_VMODULE="rpc/*=4"
|
||
|
|
||
|
# --ws.api
|
||
|
GETH_WS_API="eth,web3,net"
|