-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
protocolProvider: | ||
rpcsConfig: | ||
l1: | ||
chainId: eip155:11155111 | ||
transactionReceiptConfirmations: 1 | ||
timeout: 10000 | ||
retryInterval: 150 | ||
chainId: eip155:11155111 # Chain ID for Layer 1 network | ||
transactionReceiptConfirmations: 1 # Confirmations needed for transactions on L1 | ||
timeout: 10000 # Timeout for RPC calls (ms) | ||
retryInterval: 150 # Retry interval for RPC calls (ms) | ||
l2: | ||
chainId: eip155:42161 | ||
chainId: eip155:42161 # Chain ID for Layer 2 network | ||
transactionReceiptConfirmations: 1 | ||
timeout: 10000 | ||
retryInterval: 150 | ||
contracts: | ||
oracle: "0x1234567890123456789012345678901234567890" | ||
epochManager: "0x1234567890123456789012345678901234567890" | ||
eboRequestCreator: "0x1234567890123456789012345678901234567890" | ||
bondEscalationModule: "0x1234567890123456789012345678901234567890" | ||
horizonAccountingExtension: "0x1234567890123456789012345678901234567890" | ||
oracle: "0x1234567890123456789012345678901234567890" # Oracle contract address | ||
epochManager: "0x1234567890123456789012345678901234567890" # Epoch Manager contract address | ||
eboRequestCreator: "0x1234567890123456789012345678901234567890" # EBO Request Creator contract | ||
bondEscalationModule: "0x1234567890123456789012345678901234567890" # Bond Escalation Module contract | ||
horizonAccountingExtension: "0x1234567890123456789012345678901234567890" # Accounting extension contract | ||
|
||
blockNumberService: | ||
blockmetaConfig: | ||
baseUrl: "localhost:443" | ||
baseUrl: "localhost:443" # Base URL for Blockmeta service | ||
servicePaths: | ||
blockByTime: /sf.blockmeta.v2.BlockByTime | ||
block: /sf.blockmeta.v2.Block | ||
bearerTokenExpirationWindow: 31536000000 | ||
blockByTime: /sf.blockmeta.v2.BlockByTime # Endpoint for block by time service | ||
block: /sf.blockmeta.v2.Block # Endpoint for block service | ||
bearerTokenExpirationWindow: 31536000000 # Expiration window for bearer token (ms) | ||
|
||
processor: | ||
msBetweenChecks: 1000 | ||
msBetweenChecks: 1000 # Interval between periodic checks (ms) | ||
accountingModules: | ||
requestModule: "0x1234567890123456789012345678901234567890" | ||
responseModule: "0x1234567890123456789012345678901234567890" | ||
escalationModule: "0x1234567890123456789012345678901234567890" | ||
requestModule: "0x1234567890123456789012345678901234567890" # Address of the Request module | ||
responseModule: "0x1234567890123456789012345678901234567890" # Address of the Response module | ||
escalationModule: "0x1234567890123456789012345678901234567890" # Address of the Escalation module |