chore: add cyber network

This commit is contained in:
Andrei O 2024-08-26 01:13:35 +03:00
parent 1b67a37a39
commit a6bc10c49b
No known key found for this signature in database
GPG Key ID: B961E5B68389457E
3 changed files with 17 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

View File

@ -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}