forked from cerc-io/stack-orchestrator
cf039d9562
* Add a fixturenet-payments stack * Export the WebSocket port in fixturenet-eth-geth service * Add container to run a go-nitro node * Add container to deploy Nitro contracts * Read contract addresses from a volume when running the Nitro node * Add a service for Nitro reverse payment proxy * Expose payment proxy endpoint to be accessible from host * Map nitro node messaging and payment proxy ports to host * Use container to deploy Nitro contracts in mobymask-v3 stack * Use a common contract deployment script from mobymask-v3 stack * Add MobyMask contract deployment and watcher services * Fixes for contract deployment and watcher scripts * Add a container and service for mobymask-snap * Add MobyMask app service * Add container and service for a ponder app * Fix ponder setup and update instructions * Handle review comments * Use enablepaidrpcmethods flag in reverse payment proxy server * Update go-nitro branch * Fixes for mobymask-v3 stack --------- Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
116 lines
3.3 KiB
TOML
116 lines
3.3 KiB
TOML
[server]
|
|
host = "0.0.0.0"
|
|
port = 3001
|
|
kind = "lazy"
|
|
|
|
# Checkpointing state.
|
|
checkpointing = true
|
|
|
|
# Checkpoint interval in number of blocks.
|
|
checkpointInterval = 2000
|
|
|
|
# Enable state creation
|
|
enableState = true
|
|
|
|
# Boolean to filter logs by contract.
|
|
filterLogs = true
|
|
|
|
# Max block range for which to return events in eventsInRange GQL query.
|
|
# Use -1 for skipping check on block range.
|
|
maxEventsBlockRange = -1
|
|
|
|
# Flag to specify whether RPC endpoint supports block hash as block tag parameter
|
|
rpcSupportsBlockHashParam = true
|
|
|
|
[server.p2p]
|
|
enableRelay = true
|
|
enablePeer = true
|
|
|
|
[server.p2p.relay]
|
|
host = "0.0.0.0"
|
|
port = 9090
|
|
relayPeers = REPLACE_WITH_CERC_RELAY_PEERS
|
|
denyMultiaddrs = REPLACE_WITH_CERC_DENY_MULTIADDRS
|
|
peerIdFile = './peers/relay-id.json'
|
|
announce = 'REPLACE_WITH_CERC_RELAY_ANNOUNCE_DOMAIN'
|
|
pubsub = 'REPLACE_WITH_CERC_PUBSUB'
|
|
enableDebugInfo = true
|
|
|
|
[server.p2p.peer]
|
|
relayMultiaddr = 'REPLACE_WITH_CERC_RELAY_MULTIADDR'
|
|
pubSubTopic = 'mobymask'
|
|
denyMultiaddrs = REPLACE_WITH_CERC_DENY_MULTIADDRS
|
|
peerIdFile = 'REPLACE_WITH_PEER_ID_FILE'
|
|
pubsub = 'REPLACE_WITH_CERC_PUBSUB'
|
|
enableDebugInfo = true
|
|
enableL2Txs = REPLACE_WITH_CERC_ENABLE_PEER_L2_TXS
|
|
pingInterval = 4000
|
|
pingTimeout = 1500
|
|
maxRelayConnections = 10
|
|
|
|
[server.p2p.peer.l2TxsConfig]
|
|
privateKey = 'REPLACE_WITH_CERC_PRIVATE_KEY_PEER'
|
|
contractAddress = 'REPLACE_WITH_CONTRACT_ADDRESS'
|
|
|
|
[server.p2p.nitro]
|
|
store = './out/nitro-db'
|
|
privateKey = 'REPLACE_WITH_CERC_WATCHER_NITRO_PK'
|
|
chainPrivateKey = 'REPLACE_WITH_CERC_PRIVATE_KEY_PEER'
|
|
|
|
[server.p2p.nitro.payments]
|
|
ratesFile = './environments/rates.toml'
|
|
requestTimeoutInSecs = 10
|
|
|
|
[server.p2p.nitro.payments.cache]
|
|
maxAccounts = 1000
|
|
accountTTLInSecs = 1800
|
|
maxVouchersPerAccount = 1000
|
|
voucherTTLInSecs = 300
|
|
maxPaymentChannels = 10000
|
|
paymentChannelTTLInSecs = 1800
|
|
|
|
[server.p2p.consensus]
|
|
enabled = REPLACE_WITH_CONSENSUS_ENABLED
|
|
publicKey = 'REPLACE_WITH_CONSENSUS_PUBLIC_KEY'
|
|
privateKey = 'REPLACE_WITH_CONSENSUS_PRIVATE_KEY'
|
|
watcherPartyPeersFile = 'REPLACE_WITH_WATCHER_PARTY_PEERS_FILE'
|
|
|
|
[metrics]
|
|
host = "0.0.0.0"
|
|
port = 9000
|
|
[metrics.gql]
|
|
port = 9001
|
|
|
|
[database]
|
|
type = "postgres"
|
|
host = "mobymask-watcher-db"
|
|
port = 5432
|
|
database = "mobymask-watcher"
|
|
username = "vdbm"
|
|
password = "password"
|
|
synchronize = true
|
|
logging = false
|
|
|
|
[upstream]
|
|
[upstream.ethServer]
|
|
gqlApiEndpoint = 'http://ipld-eth-server:8083/graphql'
|
|
rpcProviderEndpoint = 'REPLACE_WITH_CERC_ETH_RPC_QUERY_ENDPOINT'
|
|
rpcProviderMutationEndpoint = 'REPLACE_WITH_CERC_ETH_RPC_MUTATION_ENDPOINT'
|
|
|
|
[upstream.ethServer.rpcProviderNitroNode]
|
|
address = 'REPLACE_WITH_UPSTREAM_NITRO_ADDRESS'
|
|
multiAddr = 'REPLACE_WITH_UPSTREAM_NITRO_MULTIADDR'
|
|
amount = 'REPLACE_WITH_UPSTREAM_NITRO_PAY_AMOUNT'
|
|
|
|
[upstream.cache]
|
|
name = "requests"
|
|
enabled = false
|
|
deleteOnStart = false
|
|
|
|
[jobQueue]
|
|
dbConnectionString = "postgres://vdbm:password@mobymask-watcher-db/mobymask-watcher-job-queue"
|
|
maxCompletionLagInSecs = 300
|
|
jobDelayInMilliSecs = 100
|
|
eventsInBatch = 50
|
|
blockDelayInMilliSecs = 60000
|