-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from valory-xyz/feat/support_different_networks
Support different networks
- Loading branch information
Showing
5 changed files
with
334 additions
and
66 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
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,92 @@ | ||
{ | ||
"gnosis": { | ||
"agent_registry_contract": "0xE49CB081e8d96920C38aA7AB90cb0294ab4Bc8EA", | ||
"rpc_url": "https://rpc.eu-central-2.gateway.fm/v4/gnosis/non-archival/mainnet", | ||
"wss_endpoint": "wss://rpc.eu-central-2.gateway.fm/ws/v4/gnosis/non-archival/mainnet", | ||
"ledger_config": { | ||
"address": "https://rpc.eu-central-2.gateway.fm/v4/gnosis/non-archival/mainnet", | ||
"chain_id": 100, | ||
"poa_chain": false, | ||
"default_gas_price_strategy": "eip1559", | ||
"is_gas_estimation_enabled": false | ||
}, | ||
"gas_limit": 100000, | ||
"contract_abi_url": "https://gnosis.blockscout.com/api/v2/smart-contracts/{contract_address}", | ||
"subgraph_url": "https://api.studio.thegraph.com/query/57238/mech/version/latest" | ||
}, | ||
"arbitrum": { | ||
"agent_registry_contract": "0xa4799B083E0068732456EF45ff9fe5c683658327", | ||
"rpc_url": "https://arbitrum.llamarpc.com", | ||
"wss_endpoint": "wss://arbitrum.gateway.tenderly.co", | ||
"ledger_config": { | ||
"address": "https://arbitrum.llamarpc.com", | ||
"chain_id": 42161, | ||
"poa_chain": false, | ||
"default_gas_price_strategy": "eip1559", | ||
"is_gas_estimation_enabled": false | ||
}, | ||
"gas_limit": 100000, | ||
"contract_abi_url": "https://api.arbiscan.io/api?module=contract&action=getabi&address={contract_address}", | ||
"subgraph_url": "" | ||
}, | ||
"polygon": { | ||
"agent_registry_contract": "0x984cf72FDe8B5aA910e9e508aC5e007ae5BDcC9C", | ||
"rpc_url": "https://polygon-bor-rpc.publicnode.com", | ||
"wss_endpoint": "wss://polygon.gateway.tenderly.co", | ||
"ledger_config": { | ||
"address": "https://polygon-bor-rpc.publicnode.com", | ||
"chain_id": 137, | ||
"poa_chain": true, | ||
"default_gas_price_strategy": "eip1559", | ||
"is_gas_estimation_enabled": false | ||
}, | ||
"gas_limit": 100000, | ||
"contract_abi_url": "https://api.polygonscan.com/api?module=contract&action=getabi&address={contract_address}", | ||
"subgraph_url": "" | ||
}, | ||
"base": { | ||
"agent_registry_contract": "0x88DE734655184a09B70700aE4F72364d1ad23728", | ||
"rpc_url": "https://base.llamarpc.com", | ||
"wss_endpoint": "wss://base.gateway.tenderly.co", | ||
"ledger_config": { | ||
"address": "https://base.llamarpc.com", | ||
"chain_id": 8453, | ||
"poa_chain": false, | ||
"default_gas_price_strategy": "eip1559", | ||
"is_gas_estimation_enabled": false | ||
}, | ||
"gas_limit": 100000, | ||
"contract_abi_url": "https://api.basescan.org/api?module=contract&action=getabi&address={contract_address}", | ||
"subgraph_url": "" | ||
}, | ||
"celo": { | ||
"agent_registry_contract": "0xE49CB081e8d96920C38aA7AB90cb0294ab4Bc8EA", | ||
"rpc_url": "https://forno.celo.org", | ||
"wss_endpoint": "wss://forno.celo.org/ws", | ||
"ledger_config": { | ||
"address": "https://forno.celo.org", | ||
"chain_id": 42220, | ||
"poa_chain": false, | ||
"default_gas_price_strategy": "eip1559", | ||
"is_gas_estimation_enabled": false | ||
}, | ||
"gas_limit": 100000, | ||
"contract_abi_url": "https://api.celoscan.io/api?module=contract&action=getabi&address={contract_address}", | ||
"subgraph_url": "" | ||
}, | ||
"optimism": { | ||
"agent_registry_contract": "0x75D529FAe220bC8db714F0202193726b46881B76", | ||
"rpc_url": "https://mainnet.optimism.io", | ||
"wss_endpoint": "wss://optimism.gateway.tenderly.co", | ||
"ledger_config": { | ||
"address": "https://mainnet.optimism.io", | ||
"chain_id": 10, | ||
"poa_chain": false, | ||
"default_gas_price_strategy": "eip1559", | ||
"is_gas_estimation_enabled": false | ||
}, | ||
"gas_limit": 100000, | ||
"contract_abi_url": "https://api-optimistic.etherscan.io/api?module=contract&action=getabi&address={contract_address}", | ||
"subgraph_url": "" | ||
} | ||
} |
Oops, something went wrong.