forked from cerc-io/stack-orchestrator
Nabarun Gogoi
5d19c56b0c
* Changes required for ponder container and upgrade ts-nitro version * Fix empty CERC_RELAY_MULTIADDR env variable * Add curl output for ponder payment channel * Add `nitro-rpc-client` container in payments stack (#1) * Add container for nitro-rpc-client * Add nitro-rpc-client service * Update nitro-rpc-client container * Update demo.md in payments stack --------- Co-authored-by: Shreerang Kale <shreerangkale@gmail.com> * Update env variables used for go-nitro container * Pass Nitro chain URL in watcher config * Update ponder config chainUrl * Remove curl check in ponder start script * Upgrade node version to 18 in watcher-ts Dockerfile * Update ponder section in the demo instructions --------- Co-authored-by: Shreerang Kale <shreerangkale@gmail.com> Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
54 lines
1.7 KiB
Bash
54 lines
1.7 KiB
Bash
# Defaults
|
|
|
|
# ETH RPC endpoint used for contract(s) deployment
|
|
DEFAULT_CERC_ETH_RPC_ENDPOINT="http://fixturenet-eth-geth-1:8545"
|
|
|
|
# ETH RPC endpoint used for queries in the watcher
|
|
DEFAULT_CERC_ETH_RPC_QUERY_ENDPOINT="http://nitro-reverse-payment-proxy:8081"
|
|
|
|
# ETH RPC endpoint used for mutations in the watcher
|
|
DEFAULT_CERC_ETH_RPC_MUTATION_ENDPOINT="http://fixturenet-eth-geth-1:8545"
|
|
|
|
# ETH endpoint used by watcher's Nitro node
|
|
DEFAULT_CERC_NITRO_CHAIN_URL="http://fixturenet-eth-geth-1:8546"
|
|
|
|
# Set of relay peers to connect to from the relay node
|
|
DEFAULT_CERC_RELAY_PEERS=[]
|
|
|
|
# Domain to be used in the relay node's announce address
|
|
DEFAULT_CERC_RELAY_ANNOUNCE_DOMAIN=
|
|
|
|
# Base URI for mobymask-app (used for generating invite)
|
|
DEFAULT_CERC_MOBYMASK_APP_BASE_URI="http://127.0.0.1:3004/#"
|
|
|
|
# Set to false for disabling watcher peer to send txs to L2
|
|
DEFAULT_CERC_ENABLE_PEER_L2_TXS=true
|
|
|
|
# Set deployed MobyMask contract address to avoid deploying contract in stack
|
|
# mobymask-app will use this contract address in config if run separately
|
|
DEFAULT_CERC_DEPLOYED_CONTRACT=
|
|
|
|
# Chain ID is used by mobymask web-app for txs
|
|
DEFAULT_CERC_CHAIN_ID=1212
|
|
|
|
# Watcher endpoint used by the web-app
|
|
DEFAULT_CERC_APP_WATCHER_URL="http://localhost:3001"
|
|
|
|
# MobyMask snap URL to be used by the web-app
|
|
DEFAULT_CERC_SNAP_URL=http://localhost:8080
|
|
|
|
# Set of relay nodes to be used by web-apps
|
|
DEFAULT_CERC_RELAY_NODES=[]
|
|
|
|
# Set of multiaddrs to be avoided while dialling
|
|
DEFAULT_CERC_DENY_MULTIADDRS=[]
|
|
|
|
# Type of pubsub to be used
|
|
DEFAULT_CERC_PUBSUB=""
|
|
|
|
# Set of direct peers to be used when pubsub is set to gossipsub
|
|
DEFAULT_CERC_GOSSIPSUB_DIRECT_PEERS=[]
|
|
|
|
# Whether to enable payments to upstream ETH server
|
|
DEFAULT_CERC_ENABLE_UPSTREAM_PAYMENTS=true
|