diff --git a/public/assets/chain-icons/cyber.webp b/public/assets/chain-icons/cyber.webp new file mode 100644 index 0000000..48117e8 Binary files /dev/null and b/public/assets/chain-icons/cyber.webp differ diff --git a/public/assets/chain-icons/cyber_t.webp b/public/assets/chain-icons/cyber_t.webp new file mode 100644 index 0000000..83e5cb6 Binary files /dev/null and b/public/assets/chain-icons/cyber_t.webp differ diff --git a/src/utils/networks.ts b/src/utils/networks.ts index 83a5057..2b5b793 100644 --- a/src/utils/networks.ts +++ b/src/utils/networks.ts @@ -64,7 +64,16 @@ export const mainNets: {[key: number]: Network} = { icon: 'base.webp', symbol: 'ETH', priceId: 'ethereum' - } + }, + 7560 : { + name: 'Cyber', + rpc: 'https://rpc.cyber.co', + chainId: 7560 , + explorer: 'https://cyberscan.co', + icon: 'cyber.webp', + symbol: 'ETH', + priceId: 'ethereum' + }, } export const testNets = { @@ -124,6 +133,13 @@ export const testNets = { explorer: 'https://sepolia.arbiscan.io/', icon: 'arbitrum_t.webp' }, + 111557560 : { + name: 'Cyber', + rpc: 'https://rpc.testnet.cyber.co', + chainId: 111557560 , + explorer: 'https://testnet.cyberscan.co/', + icon: 'cyber_t.webp' + }, } export const allTemplateNets = {...mainNets, ...testNets}