@revoke.cash/chains 35.0.0 → 37.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/chains.js +621 -25
- package/dist/src/enums.d.ts +61 -7
- package/dist/src/enums.js +61 -7
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -323,6 +323,8 @@ exports.chains = {
|
|
|
323
323
|
'https://flare.rpc.thirdweb.com',
|
|
324
324
|
'https://flare-bundler.etherspot.io',
|
|
325
325
|
'https://rpc.ankr.com/flare',
|
|
326
|
+
'https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
327
|
+
'https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
326
328
|
'https://rpc.ftso.au/flare',
|
|
327
329
|
'https://flare.enosys.global/ext/C/rpc',
|
|
328
330
|
'https://flare.solidifi.app/ext/C/rpc'
|
|
@@ -364,7 +366,10 @@ exports.chains = {
|
|
|
364
366
|
icon: 'coston',
|
|
365
367
|
rpc: [
|
|
366
368
|
'https://coston-api.flare.network/ext/C/rpc',
|
|
367
|
-
'https://
|
|
369
|
+
'https://songbird-testnet-coston.rpc.thirdweb.com',
|
|
370
|
+
'https://01-gravelines-004-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
371
|
+
'https://02-chicago-004-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
372
|
+
'https://02-tokyo-004-03.rpc.tatum.io/ext/bc/C/rpc',
|
|
368
373
|
'https://coston.enosys.global/ext/C/rpc'
|
|
369
374
|
],
|
|
370
375
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -432,6 +437,9 @@ exports.chains = {
|
|
|
432
437
|
icon: 'songbird',
|
|
433
438
|
rpc: [
|
|
434
439
|
'https://songbird-api.flare.network/ext/C/rpc',
|
|
440
|
+
'https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
441
|
+
'https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
442
|
+
'https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc',
|
|
435
443
|
'https://rpc.ftso.au/songbird',
|
|
436
444
|
'https://songbird.enosys.global/ext/C/rpc',
|
|
437
445
|
'https://songbird.solidifi.app/ext/C/rpc'
|
|
@@ -2439,6 +2447,9 @@ exports.chains = {
|
|
|
2439
2447
|
'https://coston2-api.flare.network/ext/C/rpc',
|
|
2440
2448
|
'https://flare-testnet-coston2.rpc.thirdweb.com',
|
|
2441
2449
|
'https://flaretestnet-bundler.etherspot.io',
|
|
2450
|
+
'https://01-gravelines-005-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
2451
|
+
'https://02-chicago-005-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
2452
|
+
'https://02-tokyo-005-03.rpc.tatum.io/ext/bc/C/rpc',
|
|
2442
2453
|
'https://coston2.enosys.global/ext/C/rpc'
|
|
2443
2454
|
],
|
|
2444
2455
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -2887,23 +2898,25 @@ exports.chains = {
|
|
|
2887
2898
|
name: 'Defi Oracle Meta Mainnet',
|
|
2888
2899
|
chain: 'dfiometa',
|
|
2889
2900
|
icon: 'defioraclemeta',
|
|
2890
|
-
rpc: [
|
|
2891
|
-
'https://rpc.public-0138.defi-oracle.io',
|
|
2892
|
-
'wss://rpc.public-0138.defi-oracle.io'
|
|
2893
|
-
],
|
|
2901
|
+
rpc: ['https://rpc.defi-oracle.io', 'wss://wss.defi-oracle.io'],
|
|
2894
2902
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
2895
2903
|
faucets: [],
|
|
2896
2904
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
2897
|
-
infoURL: 'https://defi-oracle.io/',
|
|
2905
|
+
infoURL: 'https://info.defi-oracle.io/',
|
|
2898
2906
|
shortName: 'dfio-meta-main',
|
|
2899
2907
|
chainId: 138,
|
|
2900
2908
|
networkId: 1,
|
|
2901
2909
|
slip44: 60,
|
|
2902
2910
|
ens: { registry: '0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85' },
|
|
2903
2911
|
explorers: [
|
|
2912
|
+
{
|
|
2913
|
+
name: 'Blockscout Explorer',
|
|
2914
|
+
url: 'https://blockscout.defi-oracle.io',
|
|
2915
|
+
standard: 'none'
|
|
2916
|
+
},
|
|
2904
2917
|
{
|
|
2905
2918
|
name: 'Quorum Explorer',
|
|
2906
|
-
url: 'https://
|
|
2919
|
+
url: 'https://explorer.defi-oracle.io',
|
|
2907
2920
|
standard: 'none'
|
|
2908
2921
|
}
|
|
2909
2922
|
]
|
|
@@ -2979,6 +2992,33 @@ exports.chains = {
|
|
|
2979
2992
|
}
|
|
2980
2993
|
]
|
|
2981
2994
|
},
|
|
2995
|
+
145: {
|
|
2996
|
+
name: 'SoraAI Testnet',
|
|
2997
|
+
chain: 'SETH',
|
|
2998
|
+
icon: 'ethereum',
|
|
2999
|
+
rpc: ['https://rpc-testnet.soraai.bot'],
|
|
3000
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
3001
|
+
faucets: [],
|
|
3002
|
+
nativeCurrency: { name: 'SoraETH', symbol: 'SETH', decimals: 18 },
|
|
3003
|
+
infoURL: 'https://soraai.bot',
|
|
3004
|
+
shortName: 'SETH',
|
|
3005
|
+
chainId: 145,
|
|
3006
|
+
networkId: 145,
|
|
3007
|
+
slip44: 1,
|
|
3008
|
+
explorers: [
|
|
3009
|
+
{
|
|
3010
|
+
name: 'blockscout',
|
|
3011
|
+
url: 'https://explorer.soraai.bot',
|
|
3012
|
+
icon: 'blockscout',
|
|
3013
|
+
standard: 'EIP3091'
|
|
3014
|
+
}
|
|
3015
|
+
],
|
|
3016
|
+
parent: {
|
|
3017
|
+
type: 'L2',
|
|
3018
|
+
chain: 'eip155-1',
|
|
3019
|
+
bridges: [{ url: 'https://bridge.soraai.bot' }]
|
|
3020
|
+
}
|
|
3021
|
+
},
|
|
2982
3022
|
148: {
|
|
2983
3023
|
name: 'ShimmerEVM',
|
|
2984
3024
|
title: 'ShimmerEVM',
|
|
@@ -5023,6 +5063,27 @@ exports.chains = {
|
|
|
5023
5063
|
chainId: 385,
|
|
5024
5064
|
networkId: 385
|
|
5025
5065
|
},
|
|
5066
|
+
395: {
|
|
5067
|
+
name: 'CamDL Testnet',
|
|
5068
|
+
chain: 'CADL',
|
|
5069
|
+
rpc: ['https://rpc1.testnet.camdl.gov.kh/'],
|
|
5070
|
+
faucets: ['https://faucet.testnet.camdl.gov.kh/'],
|
|
5071
|
+
nativeCurrency: { name: 'CADL', symbol: 'CADL', decimals: 18 },
|
|
5072
|
+
features: [{ name: 'EIP155' }],
|
|
5073
|
+
infoURL: 'https://camdl.gov.kh/',
|
|
5074
|
+
shortName: 'camdl-testnet',
|
|
5075
|
+
chainId: 395,
|
|
5076
|
+
networkId: 395,
|
|
5077
|
+
icon: 'camdl',
|
|
5078
|
+
explorers: [
|
|
5079
|
+
{
|
|
5080
|
+
name: 'CamDL Testnet Explorer',
|
|
5081
|
+
url: 'https://explorer.testnet.camdl.gov.kh',
|
|
5082
|
+
standard: 'EIP3091'
|
|
5083
|
+
}
|
|
5084
|
+
],
|
|
5085
|
+
status: 'active'
|
|
5086
|
+
},
|
|
5026
5087
|
399: {
|
|
5027
5088
|
name: 'Nativ3 Mainnet',
|
|
5028
5089
|
chainId: 399,
|
|
@@ -6645,7 +6706,7 @@ exports.chains = {
|
|
|
6645
6706
|
]
|
|
6646
6707
|
},
|
|
6647
6708
|
813: {
|
|
6648
|
-
name: 'Qitmeer',
|
|
6709
|
+
name: 'Qitmeer Network Mainnet',
|
|
6649
6710
|
chain: 'MEER',
|
|
6650
6711
|
rpc: [
|
|
6651
6712
|
'https://evm-dataseed1.meerscan.io',
|
|
@@ -6945,6 +7006,26 @@ exports.chains = {
|
|
|
6945
7006
|
networkId: 888,
|
|
6946
7007
|
slip44: 5718350
|
|
6947
7008
|
},
|
|
7009
|
+
898: {
|
|
7010
|
+
name: 'MAXI Chain Testnet',
|
|
7011
|
+
chain: 'MAXI',
|
|
7012
|
+
rpc: ['https://rpc-testnet.maxi.network'],
|
|
7013
|
+
faucets: ['https://faucet.maxi.network'],
|
|
7014
|
+
nativeCurrency: { name: 'MAXICOIN', symbol: 'MAXI', decimals: 18 },
|
|
7015
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
7016
|
+
infoURL: 'https://maxi.network',
|
|
7017
|
+
shortName: 'maxi-testnet',
|
|
7018
|
+
chainId: 898,
|
|
7019
|
+
networkId: 898,
|
|
7020
|
+
icon: 'maxi',
|
|
7021
|
+
explorers: [
|
|
7022
|
+
{
|
|
7023
|
+
name: 'Maxi Chain Testnet Explorer',
|
|
7024
|
+
url: 'https://testnet.maxi.network',
|
|
7025
|
+
standard: 'EIP3091'
|
|
7026
|
+
}
|
|
7027
|
+
]
|
|
7028
|
+
},
|
|
6948
7029
|
900: {
|
|
6949
7030
|
name: 'Garizon Testnet Stage0',
|
|
6950
7031
|
chain: 'GAR',
|
|
@@ -7061,6 +7142,27 @@ exports.chains = {
|
|
|
7061
7142
|
networkId: 910,
|
|
7062
7143
|
slip44: 1
|
|
7063
7144
|
},
|
|
7145
|
+
911: {
|
|
7146
|
+
name: 'TAPROOT Mainnet',
|
|
7147
|
+
title: 'TAPROOT Mainnet',
|
|
7148
|
+
chain: 'TAPROOT CHAIN',
|
|
7149
|
+
rpc: ['https://rpc.taprootchain.io'],
|
|
7150
|
+
faucets: [],
|
|
7151
|
+
nativeCurrency: { name: 'TBTC', symbol: 'TBTC', decimals: 18 },
|
|
7152
|
+
infoURL: 'https://taprootchain.io',
|
|
7153
|
+
shortName: 'TAPROOT-Mainnet',
|
|
7154
|
+
chainId: 911,
|
|
7155
|
+
networkId: 911,
|
|
7156
|
+
icon: 'taproot',
|
|
7157
|
+
explorers: [
|
|
7158
|
+
{
|
|
7159
|
+
name: 'TAPROOT Scan',
|
|
7160
|
+
url: 'https://scan.taprootchain.io',
|
|
7161
|
+
icon: 'taproot',
|
|
7162
|
+
standard: 'EIP3091'
|
|
7163
|
+
}
|
|
7164
|
+
]
|
|
7165
|
+
},
|
|
7064
7166
|
917: {
|
|
7065
7167
|
name: 'Rinia Testnet',
|
|
7066
7168
|
chain: 'FIRE',
|
|
@@ -7887,7 +7989,8 @@ exports.chains = {
|
|
|
7887
7989
|
'https://evm.humans.stakepool.dev.br',
|
|
7888
7990
|
'https://mainnet-humans-evm.konsortech.xyz',
|
|
7889
7991
|
'https://evm-rpc.mainnet.humans.zone',
|
|
7890
|
-
'https://json-rpc.humans.bh.rocks'
|
|
7992
|
+
'https://json-rpc.humans.bh.rocks',
|
|
7993
|
+
'https://evm-rpc.humans.huginn.tech'
|
|
7891
7994
|
],
|
|
7892
7995
|
faucets: [],
|
|
7893
7996
|
nativeCurrency: { name: 'HEART', symbol: 'HEART', decimals: 18 },
|
|
@@ -13828,6 +13931,24 @@ exports.chains = {
|
|
|
13828
13931
|
chainId: 5105,
|
|
13829
13932
|
networkId: 5105
|
|
13830
13933
|
},
|
|
13934
|
+
5106: {
|
|
13935
|
+
name: 'Azra Testnet',
|
|
13936
|
+
chain: 'Azra Testnet',
|
|
13937
|
+
rpc: ['https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz'],
|
|
13938
|
+
faucets: [],
|
|
13939
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
13940
|
+
infoURL: 'https://azragames.com',
|
|
13941
|
+
shortName: 'azra-testnet',
|
|
13942
|
+
chainId: 5106,
|
|
13943
|
+
networkId: 5106,
|
|
13944
|
+
explorers: [
|
|
13945
|
+
{
|
|
13946
|
+
name: 'blockscout',
|
|
13947
|
+
url: 'https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz',
|
|
13948
|
+
standard: 'EIP3091'
|
|
13949
|
+
}
|
|
13950
|
+
]
|
|
13951
|
+
},
|
|
13831
13952
|
5165: {
|
|
13832
13953
|
name: 'Bahamut',
|
|
13833
13954
|
title: 'Bahamut mainnet',
|
|
@@ -13981,6 +14102,20 @@ exports.chains = {
|
|
|
13981
14102
|
}
|
|
13982
14103
|
]
|
|
13983
14104
|
},
|
|
14105
|
+
5439: {
|
|
14106
|
+
name: 'Egochain',
|
|
14107
|
+
chainId: 5439,
|
|
14108
|
+
shortName: 'egax',
|
|
14109
|
+
chain: 'EGAX',
|
|
14110
|
+
networkId: 5439,
|
|
14111
|
+
nativeCurrency: { name: 'EGAX', symbol: 'EGAX', decimals: 18 },
|
|
14112
|
+
rpc: ['https://mainnet.egochain.org'],
|
|
14113
|
+
faucets: [],
|
|
14114
|
+
infoURL: 'https://docs.egochain.org/',
|
|
14115
|
+
explorers: [
|
|
14116
|
+
{ name: 'egoscan', url: 'https://egoscan.io', standard: 'EIP3091' }
|
|
14117
|
+
]
|
|
14118
|
+
},
|
|
13984
14119
|
5522: {
|
|
13985
14120
|
name: 'VEX EVM TESTNET',
|
|
13986
14121
|
chain: 'vex',
|
|
@@ -14108,6 +14243,25 @@ exports.chains = {
|
|
|
14108
14243
|
}
|
|
14109
14244
|
]
|
|
14110
14245
|
},
|
|
14246
|
+
5615: {
|
|
14247
|
+
name: 'Arcturus Testneet',
|
|
14248
|
+
chain: 'Arcturus',
|
|
14249
|
+
rpc: ['https://rpc-testnet.arcturuschain.io/'],
|
|
14250
|
+
faucets: ['https://faucet.arcturuschain.io'],
|
|
14251
|
+
nativeCurrency: { name: 'tARC', symbol: 'tARC', decimals: 18 },
|
|
14252
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
14253
|
+
infoURL: 'https://arcturuschain.io',
|
|
14254
|
+
shortName: 'arcturus-testnet',
|
|
14255
|
+
chainId: 5615,
|
|
14256
|
+
networkId: 5615,
|
|
14257
|
+
explorers: [
|
|
14258
|
+
{
|
|
14259
|
+
name: 'explorer-arcturus-testnet',
|
|
14260
|
+
url: 'https://testnet.arcscan.net',
|
|
14261
|
+
standard: 'EIP3091'
|
|
14262
|
+
}
|
|
14263
|
+
]
|
|
14264
|
+
},
|
|
14111
14265
|
5616: {
|
|
14112
14266
|
name: 'Arcturus Chain Testnet',
|
|
14113
14267
|
chain: 'ARCTURUS',
|
|
@@ -14261,6 +14415,24 @@ exports.chains = {
|
|
|
14261
14415
|
}
|
|
14262
14416
|
]
|
|
14263
14417
|
},
|
|
14418
|
+
6000: {
|
|
14419
|
+
name: 'BounceBit Testnet',
|
|
14420
|
+
chain: 'BounceBit',
|
|
14421
|
+
rpc: ['https://fullnode-testnet.bouncebitapi.com/'],
|
|
14422
|
+
faucets: [],
|
|
14423
|
+
nativeCurrency: { name: 'BounceBit', symbol: 'BB', decimals: 18 },
|
|
14424
|
+
infoURL: 'https://bouncebit.io',
|
|
14425
|
+
shortName: 'bouncebit-testnet',
|
|
14426
|
+
chainId: 6000,
|
|
14427
|
+
networkId: 6000,
|
|
14428
|
+
explorers: [
|
|
14429
|
+
{
|
|
14430
|
+
name: 'BBScan Testnet Explorer',
|
|
14431
|
+
url: 'https://bbscan.io',
|
|
14432
|
+
standard: 'none'
|
|
14433
|
+
}
|
|
14434
|
+
]
|
|
14435
|
+
},
|
|
14264
14436
|
6065: {
|
|
14265
14437
|
name: 'Tres Testnet',
|
|
14266
14438
|
chain: 'TresLeches',
|
|
@@ -15135,6 +15307,28 @@ exports.chains = {
|
|
|
15135
15307
|
}
|
|
15136
15308
|
]
|
|
15137
15309
|
},
|
|
15310
|
+
7798: {
|
|
15311
|
+
name: 'OpenEX LONG Testnet',
|
|
15312
|
+
title: 'OpenEX LONG Testnet',
|
|
15313
|
+
chain: 'OEX',
|
|
15314
|
+
icon: 'oex',
|
|
15315
|
+
rpc: ['https://long.rpc.openex.network/'],
|
|
15316
|
+
faucets: ['https://long.hub.openex.network/faucet'],
|
|
15317
|
+
nativeCurrency: { name: 'USDT Testnet', symbol: 'USDT', decimals: 18 },
|
|
15318
|
+
infoURL: 'https://openex.network',
|
|
15319
|
+
shortName: 'oex',
|
|
15320
|
+
chainId: 7798,
|
|
15321
|
+
networkId: 7798,
|
|
15322
|
+
slip44: 1,
|
|
15323
|
+
explorers: [
|
|
15324
|
+
{
|
|
15325
|
+
name: 'OpenEX Long Testnet Explorer',
|
|
15326
|
+
url: 'https://scan.long.openex.network',
|
|
15327
|
+
icon: 'oex',
|
|
15328
|
+
standard: 'EIP3091'
|
|
15329
|
+
}
|
|
15330
|
+
]
|
|
15331
|
+
},
|
|
15138
15332
|
7860: {
|
|
15139
15333
|
name: 'MaalChain Testnet',
|
|
15140
15334
|
chain: 'MaalChain Testnet',
|
|
@@ -15806,6 +16000,27 @@ exports.chains = {
|
|
|
15806
16000
|
chainId: 8768,
|
|
15807
16001
|
networkId: 8768
|
|
15808
16002
|
},
|
|
16003
|
+
8822: {
|
|
16004
|
+
name: 'IOTA EVM',
|
|
16005
|
+
title: 'IOTA EVM',
|
|
16006
|
+
chain: 'IOTA EVM',
|
|
16007
|
+
rpc: ['https://json-rpc.evm.iotaledger.net'],
|
|
16008
|
+
faucets: [],
|
|
16009
|
+
nativeCurrency: { name: 'IOTA', symbol: 'IOTA', decimals: 18 },
|
|
16010
|
+
infoURL: 'https://www.iota.org',
|
|
16011
|
+
shortName: 'iotaevm',
|
|
16012
|
+
chainId: 8822,
|
|
16013
|
+
networkId: 8822,
|
|
16014
|
+
icon: 'iotaevm',
|
|
16015
|
+
explorers: [
|
|
16016
|
+
{
|
|
16017
|
+
name: 'explorer',
|
|
16018
|
+
url: 'https://iota-evm.blockscout.com',
|
|
16019
|
+
icon: 'iotaevm',
|
|
16020
|
+
standard: 'EIP3091'
|
|
16021
|
+
}
|
|
16022
|
+
]
|
|
16023
|
+
},
|
|
15809
16024
|
8848: {
|
|
15810
16025
|
name: 'MARO Blockchain Mainnet',
|
|
15811
16026
|
chain: 'MARO Blockchain',
|
|
@@ -16177,7 +16392,11 @@ exports.chains = {
|
|
|
16177
16392
|
9025: {
|
|
16178
16393
|
name: 'Nexa Mainnet Block',
|
|
16179
16394
|
chain: 'Nexa Mainnet',
|
|
16180
|
-
rpc: [
|
|
16395
|
+
rpc: [
|
|
16396
|
+
'https://rpc-nodes.nexablockscan.io',
|
|
16397
|
+
'wss://wss-nodes.nexablockscan.io',
|
|
16398
|
+
'https://rpc-nodes-delta.nexablockscan.io'
|
|
16399
|
+
],
|
|
16181
16400
|
faucets: [],
|
|
16182
16401
|
nativeCurrency: {
|
|
16183
16402
|
name: 'Nexa Mainnet Token',
|
|
@@ -16577,6 +16796,26 @@ exports.chains = {
|
|
|
16577
16796
|
}
|
|
16578
16797
|
]
|
|
16579
16798
|
},
|
|
16799
|
+
9911: {
|
|
16800
|
+
name: 'Espento Mainnet',
|
|
16801
|
+
chain: 'SPENT',
|
|
16802
|
+
rpc: ['https://rpc.escscan.com/'],
|
|
16803
|
+
faucets: [],
|
|
16804
|
+
nativeCurrency: { name: 'ESPENTO', symbol: 'SPENT', decimals: 18 },
|
|
16805
|
+
infoURL: 'https://espento.network',
|
|
16806
|
+
shortName: 'spent',
|
|
16807
|
+
chainId: 9911,
|
|
16808
|
+
networkId: 9911,
|
|
16809
|
+
icon: 'espento',
|
|
16810
|
+
explorers: [
|
|
16811
|
+
{
|
|
16812
|
+
name: 'escscan',
|
|
16813
|
+
url: 'https://escscan.com',
|
|
16814
|
+
icon: 'espento',
|
|
16815
|
+
standard: 'EIP3091'
|
|
16816
|
+
}
|
|
16817
|
+
]
|
|
16818
|
+
},
|
|
16580
16819
|
9977: {
|
|
16581
16820
|
name: 'Mind Smart Chain Testnet',
|
|
16582
16821
|
chain: 'tMIND',
|
|
@@ -17271,11 +17510,11 @@ exports.chains = {
|
|
|
17271
17510
|
]
|
|
17272
17511
|
},
|
|
17273
17512
|
11888: {
|
|
17274
|
-
name: '
|
|
17275
|
-
chain: '
|
|
17513
|
+
name: 'Santiment Intelligence Network',
|
|
17514
|
+
chain: 'Santiment Intelligence Network',
|
|
17276
17515
|
rpc: ['https://sanrchain-node.santiment.net'],
|
|
17277
17516
|
faucets: [],
|
|
17278
|
-
nativeCurrency: { name: '
|
|
17517
|
+
nativeCurrency: { name: 'SANR', symbol: 'SANR', decimals: 18 },
|
|
17279
17518
|
infoURL: 'https://sanr.app',
|
|
17280
17519
|
shortName: 'SAN',
|
|
17281
17520
|
chainId: 11888,
|
|
@@ -17288,8 +17527,8 @@ exports.chains = {
|
|
|
17288
17527
|
},
|
|
17289
17528
|
explorers: [
|
|
17290
17529
|
{
|
|
17291
|
-
name: '
|
|
17292
|
-
url: 'https://
|
|
17530
|
+
name: 'Santiment Intelligence Explorer',
|
|
17531
|
+
url: 'https://app-explorer-pos.sanr.app',
|
|
17293
17532
|
standard: 'none'
|
|
17294
17533
|
}
|
|
17295
17534
|
]
|
|
@@ -17639,6 +17878,26 @@ exports.chains = {
|
|
|
17639
17878
|
}
|
|
17640
17879
|
]
|
|
17641
17880
|
},
|
|
17881
|
+
13396: {
|
|
17882
|
+
name: 'Masa',
|
|
17883
|
+
chain: 'MASA',
|
|
17884
|
+
icon: 'masa',
|
|
17885
|
+
rpc: ['https://subnets.avax.network/masanetwork/mainnet/rpc'],
|
|
17886
|
+
features: [{ name: 'EIP1559' }],
|
|
17887
|
+
faucets: [],
|
|
17888
|
+
nativeCurrency: { name: 'Masa Token', symbol: 'MASA', decimals: 18 },
|
|
17889
|
+
infoURL: 'https://masa.finance',
|
|
17890
|
+
shortName: 'masa',
|
|
17891
|
+
chainId: 13396,
|
|
17892
|
+
networkId: 13396,
|
|
17893
|
+
explorers: [
|
|
17894
|
+
{
|
|
17895
|
+
name: 'Masa Explorer',
|
|
17896
|
+
url: 'https://subnets.avax.network/masa',
|
|
17897
|
+
standard: 'EIP3091'
|
|
17898
|
+
}
|
|
17899
|
+
]
|
|
17900
|
+
},
|
|
17642
17901
|
13473: {
|
|
17643
17902
|
name: 'Immutable zkEVM Testnet',
|
|
17644
17903
|
chain: 'Immutable zkEVM',
|
|
@@ -18193,7 +18452,7 @@ exports.chains = {
|
|
|
18193
18452
|
]
|
|
18194
18453
|
},
|
|
18195
18454
|
18231: {
|
|
18196
|
-
name: 'unreal',
|
|
18455
|
+
name: 'unreal-old',
|
|
18197
18456
|
title: 'unreal testnet for re.al',
|
|
18198
18457
|
chain: 'unreal',
|
|
18199
18458
|
rpc: [
|
|
@@ -18203,7 +18462,7 @@ exports.chains = {
|
|
|
18203
18462
|
nativeCurrency: { name: 'unreal Ether', symbol: 'ETH', decimals: 18 },
|
|
18204
18463
|
infoURL: 'https://raas.gelato.network/rollups/details/public/unreal',
|
|
18205
18464
|
faucets: [],
|
|
18206
|
-
shortName: 'unreal',
|
|
18465
|
+
shortName: 'unreal-old',
|
|
18207
18466
|
chainId: 18231,
|
|
18208
18467
|
networkId: 18231,
|
|
18209
18468
|
slip44: 60,
|
|
@@ -18216,10 +18475,37 @@ exports.chains = {
|
|
|
18216
18475
|
standard: 'EIP3091'
|
|
18217
18476
|
}
|
|
18218
18477
|
],
|
|
18478
|
+
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] },
|
|
18479
|
+
status: 'deprecated'
|
|
18480
|
+
},
|
|
18481
|
+
18233: {
|
|
18482
|
+
name: 'unreal',
|
|
18483
|
+
title: 'unreal testnet for re.al',
|
|
18484
|
+
chain: 'unreal',
|
|
18485
|
+
rpc: [
|
|
18486
|
+
'https://rpc.unreal-orbit.gelato.digital',
|
|
18487
|
+
'wss://ws.unreal-orbit.gelato.digital'
|
|
18488
|
+
],
|
|
18489
|
+
nativeCurrency: { name: 'unreal Ether', symbol: 'reETH', decimals: 18 },
|
|
18490
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/unreal',
|
|
18491
|
+
faucets: [],
|
|
18492
|
+
shortName: 'unreal',
|
|
18493
|
+
chainId: 18233,
|
|
18494
|
+
networkId: 18233,
|
|
18495
|
+
slip44: 60,
|
|
18496
|
+
icon: 'unreal',
|
|
18497
|
+
explorers: [
|
|
18498
|
+
{
|
|
18499
|
+
name: 'blockscout',
|
|
18500
|
+
url: 'https://unreal.blockscout.com',
|
|
18501
|
+
icon: 'unreal',
|
|
18502
|
+
standard: 'EIP3091'
|
|
18503
|
+
}
|
|
18504
|
+
],
|
|
18219
18505
|
parent: {
|
|
18220
18506
|
type: 'L2',
|
|
18221
|
-
chain: 'eip155-
|
|
18222
|
-
bridges: [{ url: 'https://bridge.
|
|
18507
|
+
chain: 'eip155-17000',
|
|
18508
|
+
bridges: [{ url: 'https://bridge.gelato.network/bridge/unreal' }]
|
|
18223
18509
|
}
|
|
18224
18510
|
},
|
|
18225
18511
|
18686: {
|
|
@@ -19728,6 +20014,20 @@ exports.chains = {
|
|
|
19728
20014
|
chainId: 43110,
|
|
19729
20015
|
networkId: 43110
|
|
19730
20016
|
},
|
|
20017
|
+
43111: {
|
|
20018
|
+
name: 'Hemi Network',
|
|
20019
|
+
chain: 'ETH',
|
|
20020
|
+
rpc: [],
|
|
20021
|
+
faucets: [],
|
|
20022
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
20023
|
+
infoURL: 'https://hemi.xyz',
|
|
20024
|
+
shortName: 'hemi',
|
|
20025
|
+
chainId: 43111,
|
|
20026
|
+
networkId: 43111,
|
|
20027
|
+
explorers: [],
|
|
20028
|
+
parent: { type: 'L2', chain: 'eip155-1' },
|
|
20029
|
+
status: 'incubating'
|
|
20030
|
+
},
|
|
19731
20031
|
43113: {
|
|
19732
20032
|
name: 'Avalanche Fuji Testnet',
|
|
19733
20033
|
chain: 'AVAX',
|
|
@@ -19842,6 +20142,26 @@ exports.chains = {
|
|
|
19842
20142
|
}
|
|
19843
20143
|
]
|
|
19844
20144
|
},
|
|
20145
|
+
44445: {
|
|
20146
|
+
name: 'Quantum Network',
|
|
20147
|
+
chain: 'Quantum',
|
|
20148
|
+
rpc: ['https://rpcqtm.avescoin.io'],
|
|
20149
|
+
faucets: [],
|
|
20150
|
+
nativeCurrency: { name: 'Quantum', symbol: 'QTM', decimals: 18 },
|
|
20151
|
+
infoURL: 'https://avescoin.io/',
|
|
20152
|
+
shortName: 'QTM',
|
|
20153
|
+
chainId: 44445,
|
|
20154
|
+
networkId: 44445,
|
|
20155
|
+
icon: 'quantum',
|
|
20156
|
+
explorers: [
|
|
20157
|
+
{
|
|
20158
|
+
name: 'Quantum Explorer',
|
|
20159
|
+
url: 'https://qtm.avescoin.io',
|
|
20160
|
+
icon: 'quantum',
|
|
20161
|
+
standard: 'EIP3091'
|
|
20162
|
+
}
|
|
20163
|
+
]
|
|
20164
|
+
},
|
|
19845
20165
|
44787: {
|
|
19846
20166
|
name: 'Celo Alfajores Testnet',
|
|
19847
20167
|
chainId: 44787,
|
|
@@ -19887,6 +20207,26 @@ exports.chains = {
|
|
|
19887
20207
|
}
|
|
19888
20208
|
]
|
|
19889
20209
|
},
|
|
20210
|
+
45454: {
|
|
20211
|
+
name: 'Swamps L2',
|
|
20212
|
+
chain: 'SWP',
|
|
20213
|
+
icon: 'swamps',
|
|
20214
|
+
rpc: ['https://swamps.tc.l2aas.com'],
|
|
20215
|
+
faucets: [],
|
|
20216
|
+
nativeCurrency: { name: 'SWP', symbol: 'SWP', decimals: 18 },
|
|
20217
|
+
infoURL: 'https://www.swamps.fi',
|
|
20218
|
+
shortName: 'SWP',
|
|
20219
|
+
chainId: 45454,
|
|
20220
|
+
networkId: 45454,
|
|
20221
|
+
explorers: [
|
|
20222
|
+
{
|
|
20223
|
+
name: 'blockscout',
|
|
20224
|
+
url: 'https://swamps-explorer.tc.l2aas.com',
|
|
20225
|
+
icon: 'blockscout',
|
|
20226
|
+
standard: 'EIP3091'
|
|
20227
|
+
}
|
|
20228
|
+
]
|
|
20229
|
+
},
|
|
19890
20230
|
45510: {
|
|
19891
20231
|
name: 'Deelance Mainnet',
|
|
19892
20232
|
title: 'Deelance Network Mainnet',
|
|
@@ -20945,6 +21285,34 @@ exports.chains = {
|
|
|
20945
21285
|
}
|
|
20946
21286
|
]
|
|
20947
21287
|
},
|
|
21288
|
+
70700: {
|
|
21289
|
+
name: 'Proof of Play - Apex',
|
|
21290
|
+
chainId: 70700,
|
|
21291
|
+
shortName: 'pop-apex',
|
|
21292
|
+
chain: 'ETH',
|
|
21293
|
+
networkId: 70700,
|
|
21294
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
21295
|
+
rpc: ['https://rpc.apex.proofofplay.com'],
|
|
21296
|
+
faucets: [],
|
|
21297
|
+
explorers: [
|
|
21298
|
+
{
|
|
21299
|
+
name: 'Proof of Play Apex Explorer',
|
|
21300
|
+
url: 'https://explorer.apex.proofofplay.com',
|
|
21301
|
+
icon: 'pop-apex',
|
|
21302
|
+
standard: 'EIP3091'
|
|
21303
|
+
}
|
|
21304
|
+
],
|
|
21305
|
+
infoURL: 'https://proofofplay.com',
|
|
21306
|
+
icon: 'pop-apex',
|
|
21307
|
+
parent: {
|
|
21308
|
+
type: 'L2',
|
|
21309
|
+
chain: 'eip155-42161',
|
|
21310
|
+
bridges: [
|
|
21311
|
+
{ url: 'https://bridge.arbitrum.io' },
|
|
21312
|
+
{ url: 'https://relay.link/bridge/apex/' }
|
|
21313
|
+
]
|
|
21314
|
+
}
|
|
21315
|
+
},
|
|
20948
21316
|
71111: {
|
|
20949
21317
|
name: 'GuapcoinX',
|
|
20950
21318
|
chain: 'GuapcoinX',
|
|
@@ -21025,6 +21393,28 @@ exports.chains = {
|
|
|
21025
21393
|
}
|
|
21026
21394
|
]
|
|
21027
21395
|
},
|
|
21396
|
+
72778: {
|
|
21397
|
+
name: 'CAGA crypto Ankara testnet',
|
|
21398
|
+
chain: 'Ankara',
|
|
21399
|
+
rpc: [
|
|
21400
|
+
'https://www.ankara-cagacrypto.com',
|
|
21401
|
+
'wss://wss.ankara-cagacrypto.com'
|
|
21402
|
+
],
|
|
21403
|
+
faucets: [],
|
|
21404
|
+
nativeCurrency: { name: 'Caga', symbol: 'CAGA', decimals: 18 },
|
|
21405
|
+
infoURL: 'https://www.cagacrypto.com/',
|
|
21406
|
+
shortName: 'caga',
|
|
21407
|
+
chainId: 72778,
|
|
21408
|
+
networkId: 72778,
|
|
21409
|
+
icon: 'ankaracaga',
|
|
21410
|
+
explorers: [
|
|
21411
|
+
{
|
|
21412
|
+
name: 'ankara',
|
|
21413
|
+
url: 'https://explorer.ankara-cagacrypto.com',
|
|
21414
|
+
standard: 'EIP3091'
|
|
21415
|
+
}
|
|
21416
|
+
]
|
|
21417
|
+
},
|
|
21028
21418
|
72992: {
|
|
21029
21419
|
name: 'Grok Chain Mainnet',
|
|
21030
21420
|
chain: 'Grok',
|
|
@@ -21330,6 +21720,27 @@ exports.chains = {
|
|
|
21330
21720
|
}
|
|
21331
21721
|
]
|
|
21332
21722
|
},
|
|
21723
|
+
80002: {
|
|
21724
|
+
name: 'Amoy',
|
|
21725
|
+
title: 'Polygon Amoy Testnet',
|
|
21726
|
+
chain: 'Polygon',
|
|
21727
|
+
icon: 'polygon',
|
|
21728
|
+
rpc: ['https://rpc-amoy.polygon.technology'],
|
|
21729
|
+
faucets: ['https://faucet.polygon.technology/'],
|
|
21730
|
+
nativeCurrency: { name: 'MATIC', symbol: 'MATIC', decimals: 18 },
|
|
21731
|
+
infoURL: 'https://polygon.technology/',
|
|
21732
|
+
shortName: 'polygonamoy',
|
|
21733
|
+
chainId: 80002,
|
|
21734
|
+
networkId: 80002,
|
|
21735
|
+
slip44: 1,
|
|
21736
|
+
explorers: [
|
|
21737
|
+
{
|
|
21738
|
+
name: 'polygonamoy',
|
|
21739
|
+
url: 'https://www.oklink.com/amoy',
|
|
21740
|
+
standard: 'EIP3091'
|
|
21741
|
+
}
|
|
21742
|
+
]
|
|
21743
|
+
},
|
|
21333
21744
|
80085: {
|
|
21334
21745
|
name: 'Berachain Artio',
|
|
21335
21746
|
chain: 'Berachain Artio',
|
|
@@ -21697,6 +22108,25 @@ exports.chains = {
|
|
|
21697
22108
|
}
|
|
21698
22109
|
]
|
|
21699
22110
|
},
|
|
22111
|
+
88819: {
|
|
22112
|
+
name: 'Unit Zero Stagenet',
|
|
22113
|
+
chain: 'Unit Zero',
|
|
22114
|
+
rpc: ['https://rpc-stagenet.unit0.dev'],
|
|
22115
|
+
faucets: [],
|
|
22116
|
+
nativeCurrency: { name: 'UNIT0', symbol: 'UNIT0', decimals: 18 },
|
|
22117
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
22118
|
+
infoURL: 'https://units.network',
|
|
22119
|
+
shortName: 'unit0-stagenet',
|
|
22120
|
+
chainId: 88819,
|
|
22121
|
+
networkId: 88819,
|
|
22122
|
+
explorers: [
|
|
22123
|
+
{
|
|
22124
|
+
name: 'explorer-stagenet',
|
|
22125
|
+
url: 'https://explorer-stagenet.unit0.dev',
|
|
22126
|
+
standard: 'EIP3091'
|
|
22127
|
+
}
|
|
22128
|
+
]
|
|
22129
|
+
},
|
|
21700
22130
|
88880: {
|
|
21701
22131
|
name: 'Chiliz Scoville Testnet',
|
|
21702
22132
|
chain: 'CHZ',
|
|
@@ -22226,6 +22656,27 @@ exports.chains = {
|
|
|
22226
22656
|
],
|
|
22227
22657
|
redFlags: ['reusedChainId']
|
|
22228
22658
|
},
|
|
22659
|
+
102031: {
|
|
22660
|
+
name: 'Creditcoin Testnet',
|
|
22661
|
+
chain: 'CTC',
|
|
22662
|
+
icon: 'creditcoin',
|
|
22663
|
+
rpc: ['https://rpc.cc3-testnet.creditcoin.network'],
|
|
22664
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
22665
|
+
nativeCurrency: { name: 'Testnet CTC', symbol: 'tCTC', decimals: 18 },
|
|
22666
|
+
infoURL: 'https://creditcoin.org',
|
|
22667
|
+
shortName: 'ctctest',
|
|
22668
|
+
chainId: 102031,
|
|
22669
|
+
networkId: 102031,
|
|
22670
|
+
faucets: [],
|
|
22671
|
+
explorers: [
|
|
22672
|
+
{
|
|
22673
|
+
name: 'blockscout',
|
|
22674
|
+
url: 'https://creditcoin-testnet.blockscout.com',
|
|
22675
|
+
icon: 'blockscout',
|
|
22676
|
+
standard: 'EIP3091'
|
|
22677
|
+
}
|
|
22678
|
+
]
|
|
22679
|
+
},
|
|
22229
22680
|
103090: {
|
|
22230
22681
|
name: 'Crystaleum',
|
|
22231
22682
|
chain: 'crystal',
|
|
@@ -22249,12 +22700,13 @@ exports.chains = {
|
|
|
22249
22700
|
103454: {
|
|
22250
22701
|
name: 'Masa Testnet',
|
|
22251
22702
|
chain: 'MASA',
|
|
22703
|
+
icon: 'masa',
|
|
22252
22704
|
rpc: ['https://subnets.avax.network/masatestne/testnet/rpc'],
|
|
22253
22705
|
features: [{ name: 'EIP1559' }],
|
|
22254
22706
|
faucets: [],
|
|
22255
22707
|
nativeCurrency: { name: 'Masa Token', symbol: 'MASA', decimals: 18 },
|
|
22256
22708
|
infoURL: 'https://masa.finance',
|
|
22257
|
-
shortName: '
|
|
22709
|
+
shortName: 'masatest',
|
|
22258
22710
|
chainId: 103454,
|
|
22259
22711
|
networkId: 103454,
|
|
22260
22712
|
explorers: [
|
|
@@ -22541,6 +22993,37 @@ exports.chains = {
|
|
|
22541
22993
|
}
|
|
22542
22994
|
]
|
|
22543
22995
|
},
|
|
22996
|
+
111188: {
|
|
22997
|
+
name: 're.al',
|
|
22998
|
+
title: 're.al Real-World Assets network',
|
|
22999
|
+
chain: 're.al',
|
|
23000
|
+
rpc: ['https://real.drpc.org', 'wss://real.drpc.org'],
|
|
23001
|
+
nativeCurrency: { name: 're.al Ether', symbol: 'reETH', decimals: 18 },
|
|
23002
|
+
infoURL: 'https://re.al',
|
|
23003
|
+
faucets: [],
|
|
23004
|
+
shortName: 're-al',
|
|
23005
|
+
chainId: 111188,
|
|
23006
|
+
networkId: 111188,
|
|
23007
|
+
slip44: 60,
|
|
23008
|
+
icon: 'real',
|
|
23009
|
+
explorers: [
|
|
23010
|
+
{
|
|
23011
|
+
name: 'blockscout',
|
|
23012
|
+
url: 'https://explorer.re.al',
|
|
23013
|
+
icon: 'real',
|
|
23014
|
+
standard: 'EIP3091'
|
|
23015
|
+
}
|
|
23016
|
+
],
|
|
23017
|
+
parent: {
|
|
23018
|
+
type: 'L2',
|
|
23019
|
+
chain: 'eip155-1',
|
|
23020
|
+
bridges: [
|
|
23021
|
+
{ url: 'https://re.al/bridge' },
|
|
23022
|
+
{ url: 'https://bridge.gelato.network/bridge/real' }
|
|
23023
|
+
]
|
|
23024
|
+
},
|
|
23025
|
+
status: 'incubating'
|
|
23026
|
+
},
|
|
22544
23027
|
112358: {
|
|
22545
23028
|
name: 'Metachain One Mainnet',
|
|
22546
23029
|
chain: 'METAO',
|
|
@@ -22868,7 +23351,13 @@ exports.chains = {
|
|
|
22868
23351
|
200810: {
|
|
22869
23352
|
name: 'Bitlayer Testnet',
|
|
22870
23353
|
chain: 'Bitlayer',
|
|
22871
|
-
rpc: [
|
|
23354
|
+
rpc: [
|
|
23355
|
+
'https://testnet-rpc.bitlayer.org',
|
|
23356
|
+
'wss://testnet-ws.bitlayer.org',
|
|
23357
|
+
'https://testnet-rpc.bitlayer-rpc.com',
|
|
23358
|
+
'wss://testnet-ws.bitlayer-rpc.com',
|
|
23359
|
+
'https://rpc.ankr.com/bitlayer_testnet'
|
|
23360
|
+
],
|
|
22872
23361
|
faucets: ['https://www.bitlayer.org/faucet'],
|
|
22873
23362
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
|
22874
23363
|
infoURL: 'https://docs.bitlayer.org/',
|
|
@@ -22994,6 +23483,24 @@ exports.chains = {
|
|
|
22994
23483
|
}
|
|
22995
23484
|
]
|
|
22996
23485
|
},
|
|
23486
|
+
202401: {
|
|
23487
|
+
name: 'YMTECH-BESU Testnet',
|
|
23488
|
+
chain: 'YMTECH-BESU',
|
|
23489
|
+
rpc: ['http://39.119.118.216:8545'],
|
|
23490
|
+
faucets: [],
|
|
23491
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
23492
|
+
infoURL: 'https://www.ymtech.co.kr',
|
|
23493
|
+
shortName: 'YMTECH-BESU',
|
|
23494
|
+
chainId: 202401,
|
|
23495
|
+
networkId: 202401,
|
|
23496
|
+
explorers: [
|
|
23497
|
+
{
|
|
23498
|
+
name: 'YMTECH-BESU Chainlens',
|
|
23499
|
+
url: 'http://39.119.118.198',
|
|
23500
|
+
standard: 'none'
|
|
23501
|
+
}
|
|
23502
|
+
]
|
|
23503
|
+
},
|
|
22997
23504
|
202624: {
|
|
22998
23505
|
name: 'Jellie',
|
|
22999
23506
|
title: 'Twala Testnet Jellie',
|
|
@@ -24342,17 +24849,17 @@ exports.chains = {
|
|
|
24342
24849
|
]
|
|
24343
24850
|
},
|
|
24344
24851
|
696969: {
|
|
24345
|
-
name: 'Galadriel
|
|
24852
|
+
name: 'Galadriel Devnet',
|
|
24346
24853
|
chain: 'Galadriel',
|
|
24347
|
-
rpc: ['https://
|
|
24854
|
+
rpc: ['https://devnet.galadriel.com'],
|
|
24348
24855
|
faucets: ['https://docs.galadriel.com/faucet'],
|
|
24349
24856
|
nativeCurrency: {
|
|
24350
|
-
name: 'Galadriel
|
|
24857
|
+
name: 'Galadriel Devnet token',
|
|
24351
24858
|
symbol: 'GAL',
|
|
24352
24859
|
decimals: 18
|
|
24353
24860
|
},
|
|
24354
24861
|
infoURL: 'https://galadriel.com',
|
|
24355
|
-
shortName: 'galadriel-
|
|
24862
|
+
shortName: 'galadriel-devnet',
|
|
24356
24863
|
chainId: 696969,
|
|
24357
24864
|
networkId: 696969,
|
|
24358
24865
|
explorers: [
|
|
@@ -24412,6 +24919,27 @@ exports.chains = {
|
|
|
24412
24919
|
}
|
|
24413
24920
|
]
|
|
24414
24921
|
},
|
|
24922
|
+
743111: {
|
|
24923
|
+
name: 'Hemi Sepolia',
|
|
24924
|
+
chain: 'ETH',
|
|
24925
|
+
rpc: ['https://testnet.rpc.hemi.network/rpc'],
|
|
24926
|
+
faucets: [],
|
|
24927
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
24928
|
+
infoURL: 'https://hemi.xyz',
|
|
24929
|
+
shortName: 'hemi-sep',
|
|
24930
|
+
chainId: 743111,
|
|
24931
|
+
networkId: 743111,
|
|
24932
|
+
explorers: [
|
|
24933
|
+
{
|
|
24934
|
+
name: 'blockscout',
|
|
24935
|
+
url: 'https://testnet.explorer.hemi.network',
|
|
24936
|
+
icon: 'blockscout',
|
|
24937
|
+
standard: 'EIP3091'
|
|
24938
|
+
}
|
|
24939
|
+
],
|
|
24940
|
+
parent: { type: 'L2', chain: 'eip155-11155111' },
|
|
24941
|
+
status: 'active'
|
|
24942
|
+
},
|
|
24415
24943
|
751230: {
|
|
24416
24944
|
name: 'Bear Network Chain Testnet',
|
|
24417
24945
|
chain: 'BRNKCTEST',
|
|
@@ -24834,6 +25362,27 @@ exports.chains = {
|
|
|
24834
25362
|
}
|
|
24835
25363
|
]
|
|
24836
25364
|
},
|
|
25365
|
+
1100789: {
|
|
25366
|
+
name: 'Netmind Chain Testnet',
|
|
25367
|
+
title: 'NetMind Chain Testnet',
|
|
25368
|
+
chain: 'NetMind',
|
|
25369
|
+
rpc: ['https://testblock.protago-dev.com'],
|
|
25370
|
+
faucets: [],
|
|
25371
|
+
nativeCurrency: { name: 'NMT', symbol: 'NMT', decimals: 18 },
|
|
25372
|
+
infoURL: 'https://netmind.ai',
|
|
25373
|
+
shortName: 'nmtTest',
|
|
25374
|
+
chainId: 1100789,
|
|
25375
|
+
networkId: 1100789,
|
|
25376
|
+
icon: 'netmind',
|
|
25377
|
+
explorers: [
|
|
25378
|
+
{
|
|
25379
|
+
name: 'NetMind Testnet Explorer',
|
|
25380
|
+
url: 'https://testbrower.protago-dev.com',
|
|
25381
|
+
icon: 'netmind',
|
|
25382
|
+
standard: 'EIP3091'
|
|
25383
|
+
}
|
|
25384
|
+
]
|
|
25385
|
+
},
|
|
24837
25386
|
1127469: {
|
|
24838
25387
|
name: 'Tiltyard Subnet',
|
|
24839
25388
|
chain: 'TILTYARD',
|
|
@@ -25809,6 +26358,26 @@ exports.chains = {
|
|
|
25809
26358
|
}
|
|
25810
26359
|
]
|
|
25811
26360
|
},
|
|
26361
|
+
20240324: {
|
|
26362
|
+
name: 'DeBank Sepolia Testnet',
|
|
26363
|
+
chain: 'DeBank',
|
|
26364
|
+
rpc: ['https://sepolia-rpc.testnet.debank.com'],
|
|
26365
|
+
faucets: [],
|
|
26366
|
+
icon: 'debank',
|
|
26367
|
+
nativeCurrency: { name: 'DeBank USD', symbol: 'USD', decimals: 18 },
|
|
26368
|
+
infoURL: 'https://debank.com',
|
|
26369
|
+
shortName: 'dbkse',
|
|
26370
|
+
chainId: 20240324,
|
|
26371
|
+
networkId: 20240324,
|
|
26372
|
+
slip44: 1,
|
|
26373
|
+
explorers: [
|
|
26374
|
+
{
|
|
26375
|
+
name: 'DeBank Chain Explorer',
|
|
26376
|
+
url: 'https://sepolia-explorer.testnet.debank.com',
|
|
26377
|
+
standard: 'EIP3091'
|
|
26378
|
+
}
|
|
26379
|
+
]
|
|
26380
|
+
},
|
|
25812
26381
|
20482050: {
|
|
25813
26382
|
name: 'Hokum Testnet',
|
|
25814
26383
|
chain: 'HokumTestnet',
|
|
@@ -26173,6 +26742,33 @@ exports.chains = {
|
|
|
26173
26742
|
}
|
|
26174
26743
|
]
|
|
26175
26744
|
},
|
|
26745
|
+
77787778: {
|
|
26746
|
+
name: '0xHash Testnet',
|
|
26747
|
+
chain: 'HETH',
|
|
26748
|
+
icon: 'ethereum',
|
|
26749
|
+
rpc: ['https://rpc-test.0xhash.io'],
|
|
26750
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
26751
|
+
faucets: [],
|
|
26752
|
+
nativeCurrency: { name: '0xHash', symbol: 'HETH', decimals: 18 },
|
|
26753
|
+
infoURL: 'https://0xhash.io',
|
|
26754
|
+
shortName: 'HETH',
|
|
26755
|
+
chainId: 77787778,
|
|
26756
|
+
networkId: 77787778,
|
|
26757
|
+
slip44: 1,
|
|
26758
|
+
explorers: [
|
|
26759
|
+
{
|
|
26760
|
+
name: 'blockscout',
|
|
26761
|
+
url: 'https://test.0xhashscan.io',
|
|
26762
|
+
icon: 'blockscout',
|
|
26763
|
+
standard: 'EIP3091'
|
|
26764
|
+
}
|
|
26765
|
+
],
|
|
26766
|
+
parent: {
|
|
26767
|
+
type: 'L2',
|
|
26768
|
+
chain: 'eip155-1',
|
|
26769
|
+
bridges: [{ url: 'https://app.optimism.io/bridge/deposit' }]
|
|
26770
|
+
}
|
|
26771
|
+
},
|
|
26176
26772
|
88888888: {
|
|
26177
26773
|
name: 'T.E.A.M Blockchain',
|
|
26178
26774
|
chain: 'TEAM',
|