eth-chainlist 0.0.556 → 0.0.558
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/CHANGELOG.md +16 -0
- package/data/chain.js +239 -34
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.558 (2024-12-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.557 ([5236a27](https://github.com/poowf/eth-chainlist/commit/5236a275e32407a6a71d46f1e8438ac05d2aeb7e))
|
|
9
|
+
* update chain data ([fceecad](https://github.com/poowf/eth-chainlist/commit/fceecad28c0854bbcff00dd1a492527dce585434))
|
|
10
|
+
|
|
11
|
+
### 0.0.557 (2024-12-05)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.556 ([f7039b5](https://github.com/poowf/eth-chainlist/commit/f7039b5ad7fdfbc636ce251c1acfcf541f9f463c))
|
|
17
|
+
* update chain data ([888687f](https://github.com/poowf/eth-chainlist/commit/888687f7ada2128dfe0863313580140f7dd17c11))
|
|
18
|
+
|
|
3
19
|
### 0.0.556 (2024-12-04)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -1040,7 +1040,9 @@ const chainArray = [
|
|
|
1040
1040
|
'https://rpc.xinfin.network',
|
|
1041
1041
|
'https://rpc1.xinfin.network',
|
|
1042
1042
|
'https://rpc.xdcrpc.com',
|
|
1043
|
-
'https://erpc.xdcrpc.com'
|
|
1043
|
+
'https://erpc.xdcrpc.com',
|
|
1044
|
+
'https://rpc.ankr.com/xdc',
|
|
1045
|
+
'https://rpc.xdc.org'
|
|
1044
1046
|
],
|
|
1045
1047
|
faucets: [],
|
|
1046
1048
|
nativeCurrency: { name: 'XinFin', symbol: 'XDC', decimals: 18 },
|
|
@@ -1057,24 +1059,26 @@ const chainArray = [
|
|
|
1057
1059
|
standard: 'EIP3091'
|
|
1058
1060
|
},
|
|
1059
1061
|
{
|
|
1060
|
-
name: '
|
|
1062
|
+
name: 'openscan',
|
|
1061
1063
|
url: 'https://xdcscan.io',
|
|
1062
1064
|
icon: 'blocksscan',
|
|
1063
1065
|
standard: 'EIP3091'
|
|
1064
|
-
},
|
|
1065
|
-
{
|
|
1066
|
-
name: 'blocksscan',
|
|
1067
|
-
url: 'https://xdc.blocksscan.io',
|
|
1068
|
-
icon: 'blocksscan',
|
|
1069
|
-
standard: 'EIP3091'
|
|
1070
1066
|
}
|
|
1071
1067
|
]
|
|
1072
1068
|
},
|
|
1073
1069
|
{
|
|
1074
1070
|
name: 'XDC Apothem Network',
|
|
1075
1071
|
chain: 'XDC',
|
|
1076
|
-
rpc: [
|
|
1077
|
-
|
|
1072
|
+
rpc: [
|
|
1073
|
+
'https://rpc.apothem.network',
|
|
1074
|
+
'https://erpc.apothem.network',
|
|
1075
|
+
'https://apothem.xdcrpc.com'
|
|
1076
|
+
],
|
|
1077
|
+
faucets: [
|
|
1078
|
+
'https://faucet.apothem.network',
|
|
1079
|
+
'https://faucet.blocksscan.io',
|
|
1080
|
+
'https://apothem.xdcscan.io/faucet'
|
|
1081
|
+
],
|
|
1078
1082
|
nativeCurrency: { name: 'XinFin', symbol: 'TXDC', decimals: 18 },
|
|
1079
1083
|
infoURL: 'https://xinfin.org',
|
|
1080
1084
|
shortName: 'txdc',
|
|
@@ -1084,13 +1088,13 @@ const chainArray = [
|
|
|
1084
1088
|
explorers: [
|
|
1085
1089
|
{
|
|
1086
1090
|
name: 'xdcscan',
|
|
1087
|
-
url: 'https://
|
|
1091
|
+
url: 'https://testnet.xdcscan.com',
|
|
1088
1092
|
icon: 'blocksscan',
|
|
1089
1093
|
standard: 'EIP3091'
|
|
1090
1094
|
},
|
|
1091
1095
|
{
|
|
1092
|
-
name: '
|
|
1093
|
-
url: 'https://apothem.
|
|
1096
|
+
name: 'openscan',
|
|
1097
|
+
url: 'https://apothem.xdcscan.io',
|
|
1094
1098
|
icon: 'blocksscan',
|
|
1095
1099
|
standard: 'EIP3091'
|
|
1096
1100
|
}
|
|
@@ -3039,6 +3043,27 @@ const chainArray = [
|
|
|
3039
3043
|
bridges: [ { url: 'https://bridge.soraai.bot' } ]
|
|
3040
3044
|
}
|
|
3041
3045
|
},
|
|
3046
|
+
{
|
|
3047
|
+
name: 'Sonic Mainnet',
|
|
3048
|
+
chain: 'sonic',
|
|
3049
|
+
rpc: [ 'https://rpc.soniclabs.com' ],
|
|
3050
|
+
faucets: [],
|
|
3051
|
+
nativeCurrency: { name: 'Sonic', symbol: 'S', decimals: 18 },
|
|
3052
|
+
features: [ { name: 'EIP155' } ],
|
|
3053
|
+
infoURL: 'https://soniclabs.com',
|
|
3054
|
+
shortName: 'sonic',
|
|
3055
|
+
chainId: 146,
|
|
3056
|
+
networkId: 146,
|
|
3057
|
+
icon: 'sonic',
|
|
3058
|
+
explorers: [
|
|
3059
|
+
{
|
|
3060
|
+
name: 'sonic',
|
|
3061
|
+
url: 'https://explorer.soniclabs.com',
|
|
3062
|
+
icon: 'sonic',
|
|
3063
|
+
standard: 'none'
|
|
3064
|
+
}
|
|
3065
|
+
]
|
|
3066
|
+
},
|
|
3042
3067
|
{
|
|
3043
3068
|
name: 'Flag Mainnet',
|
|
3044
3069
|
chain: 'Flag',
|
|
@@ -6495,6 +6520,34 @@ const chainArray = [
|
|
|
6495
6520
|
}
|
|
6496
6521
|
]
|
|
6497
6522
|
},
|
|
6523
|
+
{
|
|
6524
|
+
name: 'AppChain',
|
|
6525
|
+
chain: 'AppChain',
|
|
6526
|
+
rpc: [
|
|
6527
|
+
'https://appchain.calderachain.xyz/http',
|
|
6528
|
+
'wss://appchain.calderachain.xyz/ws'
|
|
6529
|
+
],
|
|
6530
|
+
faucets: [],
|
|
6531
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
6532
|
+
infoURL: 'https://appchain.xyz',
|
|
6533
|
+
shortName: 'appchain',
|
|
6534
|
+
chainId: 466,
|
|
6535
|
+
networkId: 466,
|
|
6536
|
+
icon: 'appchain',
|
|
6537
|
+
explorers: [
|
|
6538
|
+
{
|
|
6539
|
+
name: 'AppChain Explorer',
|
|
6540
|
+
url: 'https://explorer.appchain.xyz',
|
|
6541
|
+
icon: 'blockscout',
|
|
6542
|
+
standard: 'EIP3091'
|
|
6543
|
+
}
|
|
6544
|
+
],
|
|
6545
|
+
parent: {
|
|
6546
|
+
type: 'L2',
|
|
6547
|
+
chain: 'eip155-1',
|
|
6548
|
+
bridges: [ { url: 'https://bridge.appchain.xyz' } ]
|
|
6549
|
+
}
|
|
6550
|
+
},
|
|
6498
6551
|
{
|
|
6499
6552
|
name: 'World Chain',
|
|
6500
6553
|
chain: 'ETH',
|
|
@@ -9280,9 +9333,9 @@ const chainArray = [
|
|
|
9280
9333
|
parent: { type: 'L2', chain: 'eip155-1' }
|
|
9281
9334
|
},
|
|
9282
9335
|
{
|
|
9283
|
-
name: 'Kaia Testnet
|
|
9336
|
+
name: 'Kaia Kairos Testnet',
|
|
9284
9337
|
chain: 'KAIA',
|
|
9285
|
-
rpc: [ 'https://public-en
|
|
9338
|
+
rpc: [ 'https://public-en-kairos.node.kaia.io' ],
|
|
9286
9339
|
faucets: [ 'https://faucet.kaia.io' ],
|
|
9287
9340
|
nativeCurrency: { name: 'KAIA', symbol: 'KAIA', decimals: 18 },
|
|
9288
9341
|
infoURL: 'https://kaia.io/',
|
|
@@ -11680,16 +11733,24 @@ const chainArray = [
|
|
|
11680
11733
|
redFlags: [ 'reusedChainId' ]
|
|
11681
11734
|
},
|
|
11682
11735
|
{
|
|
11683
|
-
name: '
|
|
11684
|
-
chain: '
|
|
11685
|
-
rpc: [],
|
|
11686
|
-
nativeCurrency: { name: '
|
|
11687
|
-
faucets: [],
|
|
11688
|
-
infoURL: '',
|
|
11689
|
-
shortName: '
|
|
11736
|
+
name: 'Vana',
|
|
11737
|
+
chain: 'Vana',
|
|
11738
|
+
rpc: [ 'https://rpc.vana.org/' ],
|
|
11739
|
+
nativeCurrency: { name: 'Vana', symbol: 'VANA', decimals: 18 },
|
|
11740
|
+
faucets: [ 'https://faucet.vana.org/' ],
|
|
11741
|
+
infoURL: 'https://vana.org',
|
|
11742
|
+
shortName: 'vana',
|
|
11690
11743
|
chainId: 1480,
|
|
11691
11744
|
networkId: 1480,
|
|
11692
|
-
|
|
11745
|
+
icon: 'vana',
|
|
11746
|
+
explorers: [
|
|
11747
|
+
{
|
|
11748
|
+
name: 'Vana Block Explorer',
|
|
11749
|
+
url: 'https://vanascan.io',
|
|
11750
|
+
icon: 'vana',
|
|
11751
|
+
standard: 'EIP3091'
|
|
11752
|
+
}
|
|
11753
|
+
]
|
|
11693
11754
|
},
|
|
11694
11755
|
{
|
|
11695
11756
|
name: 'Vitruveo Mainnet',
|
|
@@ -17852,17 +17913,40 @@ const chainArray = [
|
|
|
17852
17913
|
faucets: [ 'https://faucet.emoney.network/faucet' ],
|
|
17853
17914
|
nativeCurrency: { name: 'Emoney Network', symbol: 'EMYC', decimals: 18 },
|
|
17854
17915
|
infoURL: 'https://emoney.network/',
|
|
17855
|
-
shortName: '
|
|
17916
|
+
shortName: 'EmoneyTestnet',
|
|
17856
17917
|
chainId: 4544,
|
|
17857
17918
|
networkId: 4544,
|
|
17858
17919
|
slip44: 118,
|
|
17859
17920
|
icon: 'emoney',
|
|
17860
17921
|
explorers: [
|
|
17861
17922
|
{
|
|
17862
|
-
name: 'EMoney
|
|
17863
|
-
url: 'https://
|
|
17923
|
+
name: 'EMoney Explorer',
|
|
17924
|
+
url: 'https://explore-stage.emoney.network',
|
|
17864
17925
|
icon: 'emoney',
|
|
17865
|
-
standard: '
|
|
17926
|
+
standard: 'none'
|
|
17927
|
+
}
|
|
17928
|
+
]
|
|
17929
|
+
},
|
|
17930
|
+
{
|
|
17931
|
+
name: 'Emoney Network Mainnet',
|
|
17932
|
+
chain: 'Emoney',
|
|
17933
|
+
rpc: [
|
|
17934
|
+
'https://rpc-publicnode.emoney.io/',
|
|
17935
|
+
'https://public-node1-rpc.emoney.network/'
|
|
17936
|
+
],
|
|
17937
|
+
faucets: [],
|
|
17938
|
+
nativeCurrency: { name: 'Emoney Coin', symbol: 'EMYC', decimals: 18 },
|
|
17939
|
+
infoURL: 'https://emoney.io/',
|
|
17940
|
+
shortName: 'emoney',
|
|
17941
|
+
chainId: 4545,
|
|
17942
|
+
networkId: 4545,
|
|
17943
|
+
icon: 'emoney',
|
|
17944
|
+
explorers: [
|
|
17945
|
+
{
|
|
17946
|
+
name: 'EMoney Explorer',
|
|
17947
|
+
url: 'https://explore.emoney.network',
|
|
17948
|
+
icon: 'emoney',
|
|
17949
|
+
standard: 'none'
|
|
17866
17950
|
}
|
|
17867
17951
|
]
|
|
17868
17952
|
},
|
|
@@ -17901,6 +17985,34 @@ const chainArray = [
|
|
|
17901
17985
|
status: 'incubating',
|
|
17902
17986
|
icon: 'gold'
|
|
17903
17987
|
},
|
|
17988
|
+
{
|
|
17989
|
+
name: 'AppChain Testnet',
|
|
17990
|
+
chain: 'AppChain Testnet',
|
|
17991
|
+
rpc: [
|
|
17992
|
+
'https://appchaintestnet.rpc.caldera.xyz/http',
|
|
17993
|
+
'wss://appchaintestnet.rpc.caldera.xyz/ws'
|
|
17994
|
+
],
|
|
17995
|
+
faucets: [],
|
|
17996
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
17997
|
+
infoURL: 'https://appchain.xyz',
|
|
17998
|
+
shortName: 'appchaintestnet',
|
|
17999
|
+
chainId: 4661,
|
|
18000
|
+
networkId: 4661,
|
|
18001
|
+
icon: 'appchain',
|
|
18002
|
+
explorers: [
|
|
18003
|
+
{
|
|
18004
|
+
name: 'AppChain Testnet Explorer',
|
|
18005
|
+
url: 'https://appchaintestnet.explorer.caldera.xyz',
|
|
18006
|
+
icon: 'blockscout',
|
|
18007
|
+
standard: 'EIP3091'
|
|
18008
|
+
}
|
|
18009
|
+
],
|
|
18010
|
+
parent: {
|
|
18011
|
+
type: 'L2',
|
|
18012
|
+
chain: 'eip155-11155111',
|
|
18013
|
+
bridges: [ { url: 'https://appchaintestnet.bridge.caldera.xyz' } ]
|
|
18014
|
+
}
|
|
18015
|
+
},
|
|
17904
18016
|
{
|
|
17905
18017
|
name: 'IoTeX Network Mainnet',
|
|
17906
18018
|
chain: 'iotex.io',
|
|
@@ -18758,6 +18870,19 @@ const chainArray = [
|
|
|
18758
18870
|
}
|
|
18759
18871
|
]
|
|
18760
18872
|
},
|
|
18873
|
+
{
|
|
18874
|
+
name: 'Settlus Sepolia Testnet',
|
|
18875
|
+
chain: 'ETH',
|
|
18876
|
+
rpc: [],
|
|
18877
|
+
faucets: [],
|
|
18878
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
18879
|
+
infoURL: 'https://settlus.org',
|
|
18880
|
+
shortName: 'setl-sepolia',
|
|
18881
|
+
chainId: 5373,
|
|
18882
|
+
networkId: 5373,
|
|
18883
|
+
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] },
|
|
18884
|
+
status: 'incubating'
|
|
18885
|
+
},
|
|
18761
18886
|
{
|
|
18762
18887
|
name: 'edeXa Mainnet',
|
|
18763
18888
|
chain: 'edeXa Network',
|
|
@@ -25680,7 +25805,7 @@ const chainArray = [
|
|
|
25680
25805
|
chain: 'EXPCHAIN',
|
|
25681
25806
|
rpc: [ 'https://rpc1-testnet.expchain.ai' ],
|
|
25682
25807
|
faucets: [],
|
|
25683
|
-
nativeCurrency: { name: '
|
|
25808
|
+
nativeCurrency: { name: 'tZKJ', symbol: 'tZKJ', decimals: 18 },
|
|
25684
25809
|
infoURL: 'https://expchain.ai',
|
|
25685
25810
|
shortName: 'expchain',
|
|
25686
25811
|
chainId: 18880,
|
|
@@ -28997,7 +29122,7 @@ const chainArray = [
|
|
|
28997
29122
|
{
|
|
28998
29123
|
name: 'Sophon',
|
|
28999
29124
|
chain: 'Sophon',
|
|
29000
|
-
rpc: [ 'https://rpc.sophon.xyz' ],
|
|
29125
|
+
rpc: [ 'https://rpc.sophon.xyz', 'wss://rpc.sophon.xyz/ws' ],
|
|
29001
29126
|
nativeCurrency: { name: 'Sophon', symbol: 'SOPH', decimals: 18 },
|
|
29002
29127
|
faucets: [],
|
|
29003
29128
|
infoURL: '',
|
|
@@ -29011,7 +29136,12 @@ const chainArray = [
|
|
|
29011
29136
|
icon: 'sophon-testnet',
|
|
29012
29137
|
standard: 'none'
|
|
29013
29138
|
}
|
|
29014
|
-
]
|
|
29139
|
+
],
|
|
29140
|
+
parent: {
|
|
29141
|
+
type: 'L2',
|
|
29142
|
+
chain: 'eip155-1',
|
|
29143
|
+
bridges: [ { url: 'https://portal.sophon.xyz/bridge' } ]
|
|
29144
|
+
}
|
|
29015
29145
|
},
|
|
29016
29146
|
{
|
|
29017
29147
|
name: 'Reddio Devnet',
|
|
@@ -29558,6 +29688,27 @@ const chainArray = [
|
|
|
29558
29688
|
}
|
|
29559
29689
|
]
|
|
29560
29690
|
},
|
|
29691
|
+
{
|
|
29692
|
+
name: 'Sonic Blaze Testnet',
|
|
29693
|
+
chain: 'blaze-testnet',
|
|
29694
|
+
rpc: [ 'https://rpc.blaze.soniclabs.com' ],
|
|
29695
|
+
faucets: [ 'https://blaze.soniclabs.com/account' ],
|
|
29696
|
+
nativeCurrency: { name: 'Sonic', symbol: 'S', decimals: 18 },
|
|
29697
|
+
features: [ { name: 'EIP155' } ],
|
|
29698
|
+
infoURL: 'https://blaze.soniclabs.com',
|
|
29699
|
+
shortName: 'blaze',
|
|
29700
|
+
chainId: 57054,
|
|
29701
|
+
networkId: 57054,
|
|
29702
|
+
icon: 'sonic',
|
|
29703
|
+
explorers: [
|
|
29704
|
+
{
|
|
29705
|
+
name: 'sonic blaze testnet',
|
|
29706
|
+
url: 'https://explorer.blaze.soniclabs.com',
|
|
29707
|
+
icon: 'sonic',
|
|
29708
|
+
standard: 'none'
|
|
29709
|
+
}
|
|
29710
|
+
]
|
|
29711
|
+
},
|
|
29561
29712
|
{
|
|
29562
29713
|
name: 'Ink',
|
|
29563
29714
|
chain: 'ETH',
|
|
@@ -31903,14 +32054,22 @@ const chainArray = [
|
|
|
31903
32054
|
{
|
|
31904
32055
|
name: 'Unite',
|
|
31905
32056
|
chain: 'UNITE',
|
|
31906
|
-
rpc: [],
|
|
32057
|
+
rpc: [ 'https://unite-mainnet.g.alchemy.com/public' ],
|
|
31907
32058
|
faucets: [],
|
|
31908
32059
|
nativeCurrency: { name: 'Unite', symbol: 'UNITE', decimals: 18 },
|
|
31909
32060
|
infoURL: 'https://unite.io',
|
|
31910
32061
|
shortName: 'unite',
|
|
31911
32062
|
chainId: 88899,
|
|
31912
32063
|
networkId: 88899,
|
|
31913
|
-
status: '
|
|
32064
|
+
status: 'active',
|
|
32065
|
+
icon: 'unite',
|
|
32066
|
+
explorers: [
|
|
32067
|
+
{
|
|
32068
|
+
name: 'Unite Explorer',
|
|
32069
|
+
url: 'https://unite-mainnet.explorer.alchemy.com',
|
|
32070
|
+
standard: 'EIP3091'
|
|
32071
|
+
}
|
|
32072
|
+
]
|
|
31914
32073
|
},
|
|
31915
32074
|
{
|
|
31916
32075
|
name: 'F(x)Core Testnet Network',
|
|
@@ -33325,6 +33484,24 @@ const chainArray = [
|
|
|
33325
33484
|
}
|
|
33326
33485
|
]
|
|
33327
33486
|
},
|
|
33487
|
+
{
|
|
33488
|
+
name: 'Mitosis Testnet',
|
|
33489
|
+
chain: 'Mitosis Testnet',
|
|
33490
|
+
rpc: [ 'https://rpc.testnet.mitosis.org' ],
|
|
33491
|
+
faucets: [ 'https://testnet.mitosis.org/faucet' ],
|
|
33492
|
+
nativeCurrency: { name: 'MITO', symbol: 'MITO', decimals: 18 },
|
|
33493
|
+
infoURL: 'https://mitosis.org',
|
|
33494
|
+
shortName: 'mitosis-testnet',
|
|
33495
|
+
chainId: 124832,
|
|
33496
|
+
networkId: 124832,
|
|
33497
|
+
explorers: [
|
|
33498
|
+
{
|
|
33499
|
+
name: 'mitosis testnet explorer',
|
|
33500
|
+
url: 'https://testnet.mitosiscan.xyz',
|
|
33501
|
+
standard: 'EIP3091'
|
|
33502
|
+
}
|
|
33503
|
+
]
|
|
33504
|
+
},
|
|
33328
33505
|
{
|
|
33329
33506
|
name: 'Etherlink Testnet',
|
|
33330
33507
|
chain: 'Etherlink',
|
|
@@ -37097,14 +37274,21 @@ const chainArray = [
|
|
|
37097
37274
|
{
|
|
37098
37275
|
name: 'Unite Testnet',
|
|
37099
37276
|
chain: 'UNITE',
|
|
37100
|
-
rpc: [],
|
|
37277
|
+
rpc: [ 'https://unite-testnet.g.alchemy.com/public' ],
|
|
37101
37278
|
faucets: [],
|
|
37102
37279
|
nativeCurrency: { name: 'Testnet Unite', symbol: 'UNITE', decimals: 18 },
|
|
37103
37280
|
infoURL: 'https://unite.io',
|
|
37104
37281
|
shortName: 'unitetestnet',
|
|
37105
37282
|
chainId: 888991,
|
|
37106
37283
|
networkId: 888991,
|
|
37107
|
-
status: '
|
|
37284
|
+
status: 'active',
|
|
37285
|
+
explorers: [
|
|
37286
|
+
{
|
|
37287
|
+
name: 'Unite Testnet Explorer',
|
|
37288
|
+
url: 'https://unite-testnet.explorer.alchemy.com',
|
|
37289
|
+
standard: 'EIP3091'
|
|
37290
|
+
}
|
|
37291
|
+
]
|
|
37108
37292
|
},
|
|
37109
37293
|
{
|
|
37110
37294
|
name: 'Posichain Mainnet Shard 0',
|
|
@@ -39558,6 +39742,27 @@ const chainArray = [
|
|
|
39558
39742
|
}
|
|
39559
39743
|
]
|
|
39560
39744
|
},
|
|
39745
|
+
{
|
|
39746
|
+
name: 'Xone Testnet',
|
|
39747
|
+
chain: 'XOC',
|
|
39748
|
+
icon: 'xone-test',
|
|
39749
|
+
rpc: [ 'https://rpc-testnet.xone.plus' ],
|
|
39750
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
39751
|
+
faucets: [],
|
|
39752
|
+
nativeCurrency: { name: 'Xone Coin', symbol: 'XOC', decimals: 18 },
|
|
39753
|
+
infoURL: 'https://xone.plus',
|
|
39754
|
+
shortName: 'txoc',
|
|
39755
|
+
chainId: 33772211,
|
|
39756
|
+
networkId: 33772211,
|
|
39757
|
+
explorers: [
|
|
39758
|
+
{
|
|
39759
|
+
name: 'testnet-xscscan',
|
|
39760
|
+
url: 'https://testnet.xscscan.com',
|
|
39761
|
+
icon: 'testnet-xscscan',
|
|
39762
|
+
standard: 'EIP3091'
|
|
39763
|
+
}
|
|
39764
|
+
]
|
|
39765
|
+
},
|
|
39561
39766
|
{
|
|
39562
39767
|
name: 'citronus-citro',
|
|
39563
39768
|
title: 'Citronus-Citro',
|