Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Polygon, Base mainnet and test in the network list #55

Merged
merged 5 commits into from
Jul 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
169 changes: 169 additions & 0 deletions data/networks.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,173 @@
{
"base_mainnet": {
"chain_id": 8453,
"chain_aliases": [
"base",
"base_network",
"base_chain",
"base-network",
"base-chain",
"base-mainnet"
],
"chain_name": "Base Mainnet",
"fees": {
"assets": [
{
"denom": "eth",
"gas": 5000000,
"gas_price": 1000000000
}
]
},
"assets": [
{
"denoms": [
{
"denom": "wei",
"exponent": 0
},
{
"denom": "eth",
"exponent": 18
}
],
"base": "eth",
"symbol": "ETH"
}
],
"apps": [
{
"type": "explorer",
"url": "https://basescan.org/",
"tx": "/tx/${tx}",
"address": "/address/${address}"
}
],
"api": [
lumtis marked this conversation as resolved.
Show resolved Hide resolved
{
"url": "https://base.blockpi.network/v1/rpc/public",
"type": "evm"
},
{
"url": "https://rpc.ankr.com/base",
"type": "evm"
}
]
},
"base_testnet": {
"chain_id": 84532,
"chain_aliases": [
"base",
"base_network",
"base_chain",
"base_sepolia_testnet",
"base_sepolia",
"base-network",
"base-chain",
"base-testnet",
"base-sepolia-testnet",
"base-sepolia"
],
"chain_name": "Base Sepolia Testnet",
"fees": {
"assets": [
{
"denom": "eth",
"gas": 5000000,
"gas_price": 1000000000
}
]
},
"assets": [
{
"denoms": [
{
"denom": "wei",
"exponent": 0
},
{
"denom": "eth",
"exponent": 18
}
],
"base": "eth",
"symbol": "ETH"
}
],
"apps": [
{
"type": "explorer",
"url": "https://sepolia.basescan.org/",
"tx": "/tx/${tx}",
"address": "/address/${address}"
}
],
"api": [
lumtis marked this conversation as resolved.
Show resolved Hide resolved
{
"url": "https://base-sepolia.blockpi.network/v1/rpc/public",
"type": "evm"
},
{
"url": "https://rpc.ankr.com/base_sepolia",
"type": "evm"
}
]
},
"polygon_mainnet": {
"chain_id": 137,
"chain_aliases": [
"polygon",
"polygon_network",
"polygon_chain",
"polygon-mainnet",
"polygon-network",
"polygon-chain"
],
"chain_name": "Polygon PoS Mainnet",
"fees": {
"assets": [
{
"denom": "pol",
"gas": 5000000,
"gas_price": 80000000000
}
]
},
"assets": [
{
"denoms": [
{
"denom": "wei",
"exponent": 0
},
{
"denom": "pol",
"exponent": 18
}
],
"base": "pol",
"symbol": "POL"
}
],
"apps": [
{
"type": "explorer",
"url": "https://polygonscan.com",
"tx": "/tx/${tx}",
"address": "/address/${address}"
}
],
"api": [
{
"url": "https://polygon.blockpi.network/v1/rpc/public",
"type": "evm"
},
{
"url": "https://rpc.ankr.com/polygon",
"type": "evm"
}
]
},
"amoy_testnet": {
"chain_id": 80002,
"chain_aliases": [
Expand Down
Loading