From a6bc10c49bbfaeb719cb0007f8683f1d29f9c399 Mon Sep 17 00:00:00 2001 From: Andrei O Date: Mon, 26 Aug 2024 01:13:35 +0300 Subject: [PATCH] chore: add cyber network --- public/assets/chain-icons/cyber.webp | Bin 0 -> 442 bytes public/assets/chain-icons/cyber_t.webp | Bin 0 -> 510 bytes src/utils/networks.ts | 18 +++++++++++++++++- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 public/assets/chain-icons/cyber.webp create mode 100644 public/assets/chain-icons/cyber_t.webp diff --git a/public/assets/chain-icons/cyber.webp b/public/assets/chain-icons/cyber.webp new file mode 100644 index 0000000000000000000000000000000000000000..48117e8ef8df65f7d69e8553f392c3bda40b9b40 GIT binary patch literal 442 zcmV;r0Y&~&Nk&Gp0RRA3MM6+kP&go_0RRAS2>_h|Dj)zL06uXvmr5Z9{Qw1l!5x4T zrcjOs^;%#)4D^880pg@olb#I`yF^h+myi#)emuvmIQIP8PWCH-eh=^oh*e z$CEhHCQ)$DS(^24^B859y~*6Fj)|c6rQ6>oY1UB|sXs@e`FDKHkF4#5fdZ9mgW?f> zbG!e8hjN>R?VsPI{3Wp$NqtVe*(80!z(hTcri=}c5h{MxA0>t9vL%L7b*xMik?>Rd z{$@0Ihi1J5Xd9N3!MzEXr7ygfd?dQ0NI_2MM zv+Jx8*tY&`CM64p#B9%hqK=REMSe>x@kLs;dDGvUilv=?gvO5xiXgf{p(x20bAJ6- ktT+_&QVL(5p7ah2yBj`yx%2 literal 0 HcmV?d00001 diff --git a/public/assets/chain-icons/cyber_t.webp b/public/assets/chain-icons/cyber_t.webp new file mode 100644 index 0000000000000000000000000000000000000000..83e5cb6f293c6d1e7b4e2b808d40d0a6819755b4 GIT binary patch literal 510 zcmV_h|Dj)zL06u*>nM)xB0aXQo@g0B@ zrcjOs^W!#EINHqCi}^M}&_-bDW~Xb93CrZI}pE){4LwLi(u-Q3~wu(Nv(@>c#f z=B6erG##5ruoM9P{+vdGLoku$dr8T{7OBcnt^P(&Y+<{12tG#x6eM81taAGcpUTGMekX7eHfqe;+iBsix!lpZYH+7N8Oim(kMZ4s$O{Uc$7vkvuDeuiAL{ zfB%`jmW&ttr}obd+UEEemW=H@&Z-rQ@NH|B79|JFEqtDd7Znmr1pi_jm;*z4&{G9* zc}Sfz?nQ?Xhp+doum)*1E%*#$`;SYW2d+i{)L1y`mf!q1y&uzeuWe`j>eH_8BnZ(k zMdfIu{tFDuyJS&Yq4B%J0ze6hr#wH!pHIx(U^0DLa+ A9{>OV literal 0 HcmV?d00001 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}