diff --git a/public/assets/base_sepolia.svg b/public/assets/base_sepolia.svg index f9c1814..1e222ac 100644 --- a/public/assets/base_sepolia.svg +++ b/public/assets/base_sepolia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/public/assets/mantle.svg b/public/assets/mantle.svg new file mode 100644 index 0000000..d3103c1 --- /dev/null +++ b/public/assets/mantle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/public/assets/mantle_sepolia.svg b/public/assets/mantle_sepolia.svg new file mode 100644 index 0000000..e6db5d8 --- /dev/null +++ b/public/assets/mantle_sepolia.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/public/assets/sei.svg b/public/assets/sei.svg new file mode 100644 index 0000000..6c55cfb --- /dev/null +++ b/public/assets/sei.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/public/assets/sei_testnet.svg b/public/assets/sei_testnet.svg new file mode 100644 index 0000000..f1336b4 --- /dev/null +++ b/public/assets/sei_testnet.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/public/assets/ethereum_sepolia.svg b/public/assets/sepolia.svg similarity index 100% rename from public/assets/ethereum_sepolia.svg rename to public/assets/sepolia.svg diff --git a/src/helpers/network.ts b/src/helpers/network.ts index a6f41ab..aa66b0c 100644 --- a/src/helpers/network.ts +++ b/src/helpers/network.ts @@ -9,7 +9,7 @@ export const supportedChains: SupportedChain[] = [ id: '0x1', token: 'ETH', label: 'Ethereum', - rpcUrl: 'https://ethereum-rpc.publicnode.com' + rpcUrl: 'https://arbitrum-one.publicnode.com' }, { network: 'mainnet', @@ -17,7 +17,7 @@ export const supportedChains: SupportedChain[] = [ id: '0xa4b1', token: 'ETH', label: 'Arbitrum One', - rpcUrl: 'https://arbitrum-one.publicnode.com' + rpcUrl: 'https://ethereum-rpc.publicnode.com' }, { network: 'mainnet', @@ -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', @@ -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' } ];