-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs/networks: Add example indexer-agent configs for Sepolia networks
- Loading branch information
1 parent
8167327
commit 1e69176
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
docs/networks/config-examples/arbitrum-sepolia-indexer-agent-config.yaml
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
networkIdentifier: 'arbitrum-sepolia' | ||
indexerOptions: | ||
address: '?' | ||
mnemonic: '?' | ||
url: '?' | ||
geoCoordinates: [118.2923, 36.5785] | ||
defaultAllocationAmount: 1000 | ||
allocationManagementMode: 'oversight' | ||
restakeRewards: true | ||
poiDisputeMonitoring: true | ||
poiDisputableEpochs: 3 | ||
voucherRedemptionThreshold: 100 | ||
voucherRedemptionBatchThreshold: 250 | ||
rebateClaimThreshold: 100 | ||
rebateClaimBatchThreshold: 250 | ||
gateway: | ||
url: 'https://gateway-testnet-arbitrum.network.thegraph.com' | ||
subgraphs: | ||
maxBlockDistance: 60 | ||
freshnessSleepMilliseconds: 10000 | ||
networkSubgraph: | ||
url: 'https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-arbitrum-sepolia' | ||
deployment: 'QmT8UDGK7zKd2u2NQZwhLYHdA4KM55QsivkE3ouCuX6fEj' | ||
epochSubgraph: | ||
url: 'https://api.thegraph.com/subgraphs/name/graphprotocol/arbitrum-sepolia-ebo' | ||
deployment: 'QmTpu2mVquoMpr4SWSM77nGkU3tcUS1Bhk1sVHpjDrAUAx' | ||
networkProvider: | ||
url: '?' | ||
transactionMonitoring: | ||
baseFeePerGasMax: 100 | ||
gasIncreaseTimeout: 90 | ||
gasIncreaseFactor: 1.5 | ||
maxTransactionAttempts: 20 | ||
dai: | ||
contractAddress: '0x9e7e607afd22906f7da6f1ec8f432d6f244278be' | ||
inject: true |
34 changes: 34 additions & 0 deletions
34
docs/networks/config-examples/sepolia-indexer-agent-config.yaml
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
networkIdentifier: 'sepolia' | ||
indexerOptions: | ||
address: '?' | ||
mnemonic: '?' | ||
url: '?' | ||
geoCoordinates: [118.2923, 36.5785] | ||
defaultAllocationAmount: 5000 | ||
allocationManagementMode: 'oversight' | ||
restakeRewards: true | ||
poiDisputeMonitoring: true | ||
poiDisputableEpochs: 3 | ||
voucherRedemptionThreshold: 100 | ||
voucherRedemptionBatchThreshold: 250 | ||
rebateClaimThreshold: 100 | ||
rebateClaimBatchThreshold: 250 | ||
gateway: | ||
url: 'https://gateway.testnet.thegraph.com' | ||
subgraphs: | ||
networkSubgraph: | ||
url: 'https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-sepolia' | ||
deployment: 'QmdwyUJ2GNAkSxLc3dRgFULf5fN1mZWYeQLjXsdowQcfTg' | ||
epochSubgraph: | ||
url: 'https://api.thegraph.com/subgraphs/name/graphprotocol/sepolia-epoch-block-oracle' | ||
deployment: 'QmUXAKvt84bYpkctHgXqWBjq1YY7DaTCKfmxEh8w9Xxb5X' | ||
networkProvider: | ||
url: '?' | ||
transactionMonitoring: | ||
baseFeePerGasMax: 100 | ||
gasIncreaseTimeout: 90 | ||
gasIncreaseFactor: 1.5 | ||
maxTransactionAttempts: 20 | ||
dai: | ||
contractAddress: '0x9e7e607afd22906f7da6f1ec8f432d6f244278be' | ||
inject: true |