Skip to content

Commit

Permalink
add all supported chains
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarnadas committed Oct 30, 2024
1 parent 43ff7a0 commit 0528d45
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public/assets/base_sepolia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/assets/mantle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/assets/mantle_sepolia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/assets/sei.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/assets/sei_testnet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
38 changes: 35 additions & 3 deletions src/helpers/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ export const supportedChains: SupportedChain[] = [
id: '0x1',
token: 'ETH',
label: 'Ethereum',
rpcUrl: 'https://ethereum-rpc.publicnode.com'
rpcUrl: 'https://arbitrum-one.publicnode.com'
},
{
network: 'mainnet',
icon: './assets/arbitrum.svg',
id: '0xa4b1',
token: 'ETH',
label: 'Arbitrum One',
rpcUrl: 'https://arbitrum-one.publicnode.com'
rpcUrl: 'https://ethereum-rpc.publicnode.com'
},
{
network: 'mainnet',
Expand All @@ -35,9 +35,25 @@ export const supportedChains: SupportedChain[] = [
label: 'Base',
rpcUrl: 'https://base-rpc.publicnode.com'
},
{
network: 'mainnet',
icon: './assets/mantle.svg',
id: '0x1388',
token: 'MNT',
label: 'Mantle',
rpcUrl: 'https://rpc.mantle.xyz'
},
{
network: 'mainnet',
icon: './assets/sei.svg',
id: '0x531',
token: 'SEI',
label: 'Sei',
rpcUrl: 'https://evm-rpc.sei-apis.com'
},
{
network: 'testnet',
icon: './assets/ethereum_sepolia.svg',
icon: './assets/sepolia.svg',
id: '0xaa36a7',
token: 'ETH',
label: 'Sepolia',
Expand Down Expand Up @@ -66,6 +82,22 @@ export const supportedChains: SupportedChain[] = [
token: 'ETH',
label: 'Base Sepolia',
rpcUrl: 'https://base-sepolia-rpc.publicnode.com'
},
{
network: 'testnet',
icon: './assets/mantle_sepolia.svg',
id: '0x138b',
token: 'MNT',
label: 'Mantle Sepolia',
rpcUrl: 'https://rpc.sepolia.mantle.xyz'
},
{
network: 'testnet',
icon: './assets/sei_testnet.svg',
id: '0xae3f3',
token: 'SEI',
label: 'Sei Devnet',
rpcUrl: 'https://evm-rpc-arctic-1.sei-apis.com'
}
];

Expand Down

0 comments on commit 0528d45

Please sign in to comment.