Merge pull request #9 from andrei0x309/dev/4

chore: add cyber network
This commit is contained in:
Andrei O. 2024-08-26 01:24:52 +03:00 committed by GitHub
commit f972250eaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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}