mirror of
https://github.com/status-im/status-python-sdk.git
synced 2026-08-31 06:01:19 +00:00
- Replace Infura and Etherscan API keys with Alchemy one. Alchemy can be used to for Status wallet functionality and fetching transactions. - Related to https://github.com/status-im/status-python-sdk/issues/3
18 lines
435 B
Python
18 lines
435 B
Python
ALCHEMY_CHAIN_IDS = {
|
|
"eth-mainnet": 1,
|
|
"polygon-mainnet": 137,
|
|
"polygon-amoy": 80002,
|
|
"arb-mainnet": 42161,
|
|
"opt-mainnet": 10,
|
|
"base-mainnet": 8453,
|
|
"zksync-mainnet": 324,
|
|
"blast-mainnet": 81457,
|
|
"linea-mainnet": 59144,
|
|
"worldchain-mainnet": 480,
|
|
"mantle-mainnet": 5000,
|
|
"scroll-mainnet": 534352,
|
|
"shape-mainnet": 360,
|
|
"apechain-mainnet": 33139,
|
|
"apechain-curtis": 33111,
|
|
}
|