Nabarun Gogoi
d3715d1952
* Add flag to enable/disable watcher peer L2 txs * Update watcher-ts version in readme
21 lines
723 B
Bash
21 lines
723 B
Bash
# Change if pointing web app to external watcher endpoint
|
|
WATCHER_HOST="mobymask-watcher-server"
|
|
WATCHER_PORT=3001
|
|
APP_WATCHER_URL="http://localhost:3001"
|
|
|
|
# Base URI for mobymask-app (used for generating invite)
|
|
MOBYMASK_APP_BASE_URI="http://127.0.0.1:3002/#"
|
|
|
|
# Set to false for disabling watcher peer to send txs to L2
|
|
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
|
|
DEPLOYED_CONTRACT=
|
|
|
|
# Chain ID is used by mobymask web-app for txs
|
|
CHAIN_ID=42069
|
|
|
|
# Set relay nodes to be used by web-apps
|
|
RELAY_NODES=["/ip4/127.0.0.1/tcp/9090/ws/p2p/12D3KooWSPCsVkHVyLQoCqhu2YRPvvM7o6r6NRYyLM5zeA6Uig5t"]
|