Skip to content

Commit

Permalink
added: networks info
Browse files Browse the repository at this point in the history
  • Loading branch information
nrjshka committed Aug 17, 2023
1 parent e56f4b0 commit 1ff499e
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,58 @@ const networksRaw = /* #__PURE__ */ [
currency_symbol: 'CUBE',
currency_decimals: 18,
is_testnet: false
},
// Mantle
{
chain_id: NETWORK_IDS.Mantle,
name: 'Mantle',
short_name: 'mantle',
logo_url: 'https://cdn.via.exchange/networks/mantle.svg',
explorer_url: 'https://explorer.mantle.xyz/',
rpc_url: 'https://rpc.mantle.xyz',
currency_name: 'Mantle',
currency_symbol: 'MNT',
currency_decimals: 18,
is_testnet: false
},
// Base
{
chain_id: NETWORK_IDS.Base,
name: 'Base',
short_name: 'base',
logo_url: 'https://cdn.via.exchange/networks/base.svg',
explorer_url: 'https://basescan.org/',
rpc_url: 'https://mainnet.base.org',
currency_name: 'Base',
currency_symbol: 'ETH',
currency_decimals: 18,
is_testnet: false
},
// zkEVM
{
chain_id: NETWORK_IDS.zkEVM,
name: 'zkEVM',
short_name: 'zkevm',
logo_url: 'https://cdn.via.exchange/networks/zkevm.svg',
explorer_url: 'https://zkevm.polygonscan.com/',
rpc_url: 'https://zkevm-rpc.com/',
currency_name: 'ETH',
currency_symbol: 'ETH',
currency_decimals: 18,
is_testnet: false
},
// Linea
{
chain_id: NETWORK_IDS.Linea,
name: 'Linea',
short_name: 'linea',
logo_url: 'https://cdn.via.exchange/networks/linea.svg',
explorer_url: 'https://explorer.linea.build/',
rpc_url: 'https://linea-mainnet.infura.io/v3',
currency_name: 'ETH',
currency_symbol: 'ETH',
currency_decimals: 18,
is_testnet: false
}
]

Expand Down

0 comments on commit 1ff499e

Please sign in to comment.