Skip to content

Commit

Permalink
base support
Browse files Browse the repository at this point in the history
  • Loading branch information
jfschwarz committed May 2, 2024
1 parent 48de842 commit dfef4ac
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions extension/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const RPC = {
100: 'https://rpc.gnosischain.com',
137: 'https://polygon-rpc.com',
246: 'https://rpc.energyweb.org',
8453: 'https://mainnet.base.org',
42161: 'https://arb1.arbitrum.io/rpc',
42220: 'https://forno.celo.org',
73799: 'https://volta-rpc.energyweb.org',
Expand All @@ -27,6 +28,7 @@ export const EXPLORER_URL: Record<ChainId, string> = {
100: 'https://gnosisscan.io',
137: 'https://polygonscan.com',
246: 'https://explorer.energyweb.org',
8453: 'https://basescan.org',
42161: 'https://arbiscan.io',
42220: 'https://explorer.celo.org',
73799: 'https://volta-explorer.energyweb.org',
Expand All @@ -43,6 +45,7 @@ export const EXPLORER_API_URL: Record<ChainId, string> = {
100: 'https://api.gnosisscan.io/api',
137: 'https://api.polygonscan.com/api',
246: 'https://explorer.energyweb.org/api',
8453: 'https://api.basescan.org/api',
42161: 'https://api.arbiscan.io/api',
42220: 'https://explorer.celo.org/api',
73799: 'https://volta-explorer.energyweb.org/api',
Expand All @@ -59,6 +62,7 @@ export const EXPLORER_API_KEY: Record<ChainId, string> = {
100: 'W575K6DTMSTVB7UFUSNW7GWQ4UWUARTJ7Z',
137: '',
246: '',
8453: 'KCC7EQHE17IAQZA9TICUS6BQTJGZUDRNIY',
42161: '',
42220: '',
73799: '',
Expand All @@ -75,6 +79,7 @@ export const CHAIN_PREFIX: Record<ChainId, string> = {
100: 'gno',
137: 'matic',
246: 'ewt',
8453: 'base',
42161: 'arb1',
42220: 'celo',
73799: 'vt',
Expand All @@ -91,6 +96,7 @@ export const CHAIN_CURRENCY: Record<ChainId, string> = {
100: 'xDAI',
137: 'MATIC',
246: 'EWT',
8453: 'ETH',
42161: 'ETH',
42220: 'CELO',
73799: 'VT',
Expand All @@ -107,6 +113,7 @@ export const CHAIN_NAME: Record<ChainId, string> = {
100: 'Gnosis Chain',
137: 'Polygon',
246: 'Energy Web',
8453: 'Base',
42161: 'Arbitrum One',
42220: 'Celo',
73799: 'Volta Testnet',
Expand Down Expand Up @@ -154,6 +161,7 @@ export const MULTI_SEND_ADDRESS: Record<ChainId, string> = {
// 595: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
// 686: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
// 787: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
8453: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
// 1001: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
// 1008: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
// 1088: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
Expand Down

0 comments on commit dfef4ac

Please sign in to comment.