eth-chainlist 0.0.198 → 0.0.200
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 +220 -53
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.200 (2023-08-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.199 ([d0dd263](https://github.com/poowf/eth-chainlist/commit/d0dd263ecd7e660a255e1a9a920aafc73f4a7ba7))
|
9
|
+
* update chain data ([0946343](https://github.com/poowf/eth-chainlist/commit/0946343cfe35ef2bdb9f3efbdde0ce0bf9aac2e5))
|
10
|
+
|
11
|
+
### 0.0.199 (2023-08-01)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.198 ([7dba711](https://github.com/poowf/eth-chainlist/commit/7dba711b6a8a4ef690d7cbf71766ac7d8d6f3058))
|
17
|
+
* update chain data ([13a2334](https://github.com/poowf/eth-chainlist/commit/13a23344ff31fe588600f8a4f16d78aee9c6a772))
|
18
|
+
|
3
19
|
### 0.0.198 (2023-07-29)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1057,7 +1057,8 @@ const chainArray = [
|
|
1057
1057
|
'https://rpc.syscoin.org',
|
1058
1058
|
'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
|
1059
1059
|
'https://syscoin.public-rpc.com',
|
1060
|
-
'wss://rpc.syscoin.org/wss'
|
1060
|
+
'wss://rpc.syscoin.org/wss',
|
1061
|
+
'https://syscoin-evm.publicnode.com'
|
1061
1062
|
],
|
1062
1063
|
faucets: [ 'https://faucet.syscoin.org' ],
|
1063
1064
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
@@ -4495,39 +4496,71 @@ const chainArray = [
|
|
4495
4496
|
]
|
4496
4497
|
},
|
4497
4498
|
{
|
4498
|
-
name: 'Acala Mandala Testnet',
|
4499
|
+
name: 'Acala Mandala Testnet TC9',
|
4499
4500
|
chain: 'mACA',
|
4500
|
-
rpc: [
|
4501
|
+
rpc: [
|
4502
|
+
'https://eth-rpc-tc9.aca-staging.network',
|
4503
|
+
'wss://eth-rpc-tc9.aca-staging.network'
|
4504
|
+
],
|
4505
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4501
4506
|
faucets: [],
|
4502
4507
|
nativeCurrency: { name: 'Acala Mandala Token', symbol: 'mACA', decimals: 18 },
|
4503
4508
|
infoURL: 'https://acala.network',
|
4504
4509
|
shortName: 'maca',
|
4505
4510
|
chainId: 595,
|
4506
|
-
networkId: 595
|
4511
|
+
networkId: 595,
|
4512
|
+
slip44: 595,
|
4513
|
+
explorers: [
|
4514
|
+
{
|
4515
|
+
name: 'blockscout',
|
4516
|
+
url: 'https://blockscout.mandala.aca-staging.network',
|
4517
|
+
standard: 'EIP3091'
|
4518
|
+
}
|
4519
|
+
]
|
4507
4520
|
},
|
4508
4521
|
{
|
4509
4522
|
name: 'Karura Network Testnet',
|
4510
4523
|
chain: 'KAR',
|
4511
|
-
rpc: [
|
4524
|
+
rpc: [
|
4525
|
+
'https://eth-rpc-karura-testnet.aca-staging.network',
|
4526
|
+
'wss://eth-rpc-karura-testnet.aca-staging.network'
|
4527
|
+
],
|
4512
4528
|
faucets: [],
|
4513
4529
|
nativeCurrency: { name: 'Karura Token', symbol: 'KAR', decimals: 18 },
|
4514
4530
|
infoURL: 'https://karura.network',
|
4515
4531
|
shortName: 'tkar',
|
4516
4532
|
chainId: 596,
|
4517
4533
|
networkId: 596,
|
4518
|
-
slip44: 596
|
4534
|
+
slip44: 596,
|
4535
|
+
explorers: [
|
4536
|
+
{
|
4537
|
+
name: 'blockscout',
|
4538
|
+
url: 'https://blockscout.karura-testnet.aca-staging.network',
|
4539
|
+
standard: 'EIP3091'
|
4540
|
+
}
|
4541
|
+
]
|
4519
4542
|
},
|
4520
4543
|
{
|
4521
4544
|
name: 'Acala Network Testnet',
|
4522
4545
|
chain: 'ACA',
|
4523
|
-
rpc: [
|
4546
|
+
rpc: [
|
4547
|
+
'https://eth-rpc-acala-testnet.aca-staging.network',
|
4548
|
+
'wss://eth-rpc-acala-testnet.aca-staging.network'
|
4549
|
+
],
|
4524
4550
|
faucets: [],
|
4525
4551
|
nativeCurrency: { name: 'Acala Token', symbol: 'ACA', decimals: 18 },
|
4526
4552
|
infoURL: 'https://acala.network',
|
4527
4553
|
shortName: 'taca',
|
4528
4554
|
chainId: 597,
|
4529
4555
|
networkId: 597,
|
4530
|
-
slip44: 597
|
4556
|
+
slip44: 597,
|
4557
|
+
explorers: [
|
4558
|
+
{
|
4559
|
+
name: 'blockscout',
|
4560
|
+
url: 'https://blockscout.acala-dev.aca-dev.network',
|
4561
|
+
standard: 'EIP3091'
|
4562
|
+
}
|
4563
|
+
]
|
4531
4564
|
},
|
4532
4565
|
{
|
4533
4566
|
name: 'Metis Goerli Testnet',
|
@@ -4689,14 +4722,25 @@ const chainArray = [
|
|
4689
4722
|
{
|
4690
4723
|
name: 'Karura Network',
|
4691
4724
|
chain: 'KAR',
|
4692
|
-
rpc: [
|
4725
|
+
rpc: [
|
4726
|
+
'https://eth-rpc-karura.aca-api.network',
|
4727
|
+
'wss://eth-rpc-karura.aca-api.network'
|
4728
|
+
],
|
4729
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4693
4730
|
faucets: [],
|
4694
4731
|
nativeCurrency: { name: 'Karura Token', symbol: 'KAR', decimals: 18 },
|
4695
|
-
infoURL: 'https://
|
4732
|
+
infoURL: 'https://acala.network/karura',
|
4696
4733
|
shortName: 'kar',
|
4697
4734
|
chainId: 686,
|
4698
4735
|
networkId: 686,
|
4699
|
-
slip44: 686
|
4736
|
+
slip44: 686,
|
4737
|
+
explorers: [
|
4738
|
+
{
|
4739
|
+
name: 'blockscout',
|
4740
|
+
url: 'https://blockscout.karura.network',
|
4741
|
+
standard: 'EIP3091'
|
4742
|
+
}
|
4743
|
+
]
|
4700
4744
|
},
|
4701
4745
|
{
|
4702
4746
|
name: 'Star Social Testnet',
|
@@ -4928,14 +4972,25 @@ const chainArray = [
|
|
4928
4972
|
{
|
4929
4973
|
name: 'Acala Network',
|
4930
4974
|
chain: 'ACA',
|
4931
|
-
rpc: [
|
4975
|
+
rpc: [
|
4976
|
+
'https://eth-rpc-acala.aca-api.network',
|
4977
|
+
'wss://eth-rpc-acala.aca-api.network'
|
4978
|
+
],
|
4979
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4932
4980
|
faucets: [],
|
4933
4981
|
nativeCurrency: { name: 'Acala Token', symbol: 'ACA', decimals: 18 },
|
4934
4982
|
infoURL: 'https://acala.network',
|
4935
4983
|
shortName: 'aca',
|
4936
4984
|
chainId: 787,
|
4937
4985
|
networkId: 787,
|
4938
|
-
slip44: 787
|
4986
|
+
slip44: 787,
|
4987
|
+
explorers: [
|
4988
|
+
{
|
4989
|
+
name: 'blockscout',
|
4990
|
+
url: 'https://blockscout.acala.network',
|
4991
|
+
standard: 'EIP3091'
|
4992
|
+
}
|
4993
|
+
]
|
4939
4994
|
},
|
4940
4995
|
{
|
4941
4996
|
name: 'Aerochain Testnet',
|
@@ -6856,6 +6911,26 @@ const chainArray = [
|
|
6856
6911
|
}
|
6857
6912
|
]
|
6858
6913
|
},
|
6914
|
+
{
|
6915
|
+
name: 'Kalar Chain',
|
6916
|
+
chain: 'KLC',
|
6917
|
+
icon: 'kalarchain',
|
6918
|
+
rpc: [ 'https://rpc-api.kalarchain.tech' ],
|
6919
|
+
faucets: [],
|
6920
|
+
nativeCurrency: { name: 'Kalar', symbol: 'KLC', decimals: 18 },
|
6921
|
+
infoURL: 'https://kalarchain.tech',
|
6922
|
+
shortName: 'KLC',
|
6923
|
+
chainId: 1379,
|
6924
|
+
networkId: 1379,
|
6925
|
+
explorers: [
|
6926
|
+
{
|
6927
|
+
name: 'kalarscan',
|
6928
|
+
url: 'https://explorer.kalarchain.tech',
|
6929
|
+
icon: 'kalarscan',
|
6930
|
+
standard: 'EIP3091'
|
6931
|
+
}
|
6932
|
+
]
|
6933
|
+
},
|
6859
6934
|
{
|
6860
6935
|
name: 'AmStar Mainnet',
|
6861
6936
|
chain: 'AmStar',
|
@@ -10212,7 +10287,11 @@ const chainArray = [
|
|
10212
10287
|
{
|
10213
10288
|
name: 'Syscoin Tanenbaum Testnet',
|
10214
10289
|
chain: 'SYS',
|
10215
|
-
rpc: [
|
10290
|
+
rpc: [
|
10291
|
+
'https://rpc.tanenbaum.io',
|
10292
|
+
'wss://rpc.tanenbaum.io/wss',
|
10293
|
+
'https://syscoin-tanenbaum-evm.publicnode.com'
|
10294
|
+
],
|
10216
10295
|
faucets: [ 'https://faucet.tanenbaum.io' ],
|
10217
10296
|
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
|
10218
10297
|
infoURL: 'https://syscoin.org',
|
@@ -10610,10 +10689,10 @@ const chainArray = [
|
|
10610
10689
|
]
|
10611
10690
|
},
|
10612
10691
|
{
|
10613
|
-
name: 'ZetaChain Athens Testnet',
|
10692
|
+
name: 'ZetaChain Athens 3 Testnet',
|
10614
10693
|
chain: 'ZetaChain',
|
10615
10694
|
icon: 'zetachain',
|
10616
|
-
rpc: [ 'https://
|
10695
|
+
rpc: [ 'https://rpc.ankr.com/zetachain_evm_athens_testnet' ],
|
10617
10696
|
faucets: [ 'https://labs.zetachain.com/get-zeta' ],
|
10618
10697
|
nativeCurrency: { name: 'Zeta', symbol: 'aZETA', decimals: 18 },
|
10619
10698
|
infoURL: 'https://zetachain.com/docs',
|
@@ -10624,7 +10703,7 @@ const chainArray = [
|
|
10624
10703
|
explorers: [
|
10625
10704
|
{
|
10626
10705
|
name: 'ZetaChain Athens Testnet Explorer',
|
10627
|
-
url: 'https://explorer.
|
10706
|
+
url: 'https://athens3.explorer.zetachain.com',
|
10628
10707
|
standard: 'none'
|
10629
10708
|
},
|
10630
10709
|
{
|
@@ -11979,6 +12058,50 @@ const chainArray = [
|
|
11979
12058
|
networkId: 9792,
|
11980
12059
|
explorers: []
|
11981
12060
|
},
|
12061
|
+
{
|
12062
|
+
name: 'IMPERIUM TESTNET',
|
12063
|
+
chain: 'tIMP',
|
12064
|
+
rpc: [
|
12065
|
+
'https://data-aws-testnet.imperiumchain.com, https://data-aws2-testnet.imperiumchain.com'
|
12066
|
+
],
|
12067
|
+
faucets: [ 'https://faucet.imperiumchain.com/' ],
|
12068
|
+
nativeCurrency: { name: 'tIMP', symbol: 'tIMP', decimals: 18 },
|
12069
|
+
infoURL: 'https://imperiumchain.com',
|
12070
|
+
shortName: 'tIMP',
|
12071
|
+
chainId: 9818,
|
12072
|
+
networkId: 9818,
|
12073
|
+
icon: 'timp',
|
12074
|
+
explorers: [
|
12075
|
+
{
|
12076
|
+
name: 'IMPERIUM TESTNET Explorer',
|
12077
|
+
icon: 'timp',
|
12078
|
+
url: 'https://network.impscan.com',
|
12079
|
+
standard: 'none'
|
12080
|
+
}
|
12081
|
+
]
|
12082
|
+
},
|
12083
|
+
{
|
12084
|
+
name: 'IMPERIUM MAINNET',
|
12085
|
+
chain: 'IMP',
|
12086
|
+
rpc: [
|
12087
|
+
'https://data-aws-mainnet.imperiumchain.com, https://data-aws2-mainnet.imperiumchain.com'
|
12088
|
+
],
|
12089
|
+
faucets: [ 'https://faucet.imperiumchain.com/' ],
|
12090
|
+
nativeCurrency: { name: 'IMP', symbol: 'IMP', decimals: 18 },
|
12091
|
+
infoURL: 'https://imperiumchain.com',
|
12092
|
+
shortName: 'IMP',
|
12093
|
+
chainId: 9819,
|
12094
|
+
networkId: 9819,
|
12095
|
+
icon: 'imp',
|
12096
|
+
explorers: [
|
12097
|
+
{
|
12098
|
+
name: 'IMPERIUM Explorer',
|
12099
|
+
icon: 'imp',
|
12100
|
+
url: 'https://impscan.com',
|
12101
|
+
standard: 'none'
|
12102
|
+
}
|
12103
|
+
]
|
12104
|
+
},
|
11982
12105
|
{
|
11983
12106
|
name: 'Mind Smart Chain Testnet',
|
11984
12107
|
chain: 'tMIND',
|
@@ -17604,6 +17727,26 @@ const chainArray = [
|
|
17604
17727
|
slip44: 1,
|
17605
17728
|
explorers: []
|
17606
17729
|
},
|
17730
|
+
{
|
17731
|
+
name: 'Manta Pacific Testnet',
|
17732
|
+
chain: 'Manta Pacific',
|
17733
|
+
rpc: [ 'https://manta-testnet.calderachain.xyz/http' ],
|
17734
|
+
faucets: [],
|
17735
|
+
nativeCurrency: { name: 'Manta', symbol: 'MANTA', decimals: 18 },
|
17736
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
17737
|
+
infoURL: 'https://manta-testnet.caldera.dev/',
|
17738
|
+
shortName: 'manta',
|
17739
|
+
chainId: 3441005,
|
17740
|
+
networkId: 3441005,
|
17741
|
+
icon: 'manta',
|
17742
|
+
explorers: [
|
17743
|
+
{
|
17744
|
+
name: 'manta-testnet Explorer',
|
17745
|
+
url: 'https://manta-testnet.calderaexplorer.xyz',
|
17746
|
+
standard: 'EIP3091'
|
17747
|
+
}
|
17748
|
+
]
|
17749
|
+
},
|
17607
17750
|
{
|
17608
17751
|
name: 'AltLayer Zero Gas Network',
|
17609
17752
|
chain: 'ETH',
|
@@ -18733,10 +18876,19 @@ const chainArray = [
|
|
18733
18876
|
{
|
18734
18877
|
name: 'Harmony Mainnet Shard 0',
|
18735
18878
|
chain: 'Harmony',
|
18736
|
-
rpc: [
|
18737
|
-
|
18879
|
+
rpc: [
|
18880
|
+
'https://api.harmony.one',
|
18881
|
+
'https://a.api.s0.t.hmny.io',
|
18882
|
+
'https://api.s0.t.hmny.io',
|
18883
|
+
'https://rpc.ankr.com/harmony',
|
18884
|
+
'https://harmony.api.onfinality.io/public',
|
18885
|
+
'https://1rpc.io/one'
|
18886
|
+
],
|
18887
|
+
faucets: [],
|
18738
18888
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18739
18889
|
infoURL: 'https://www.harmony.one/',
|
18890
|
+
slip44: 1023,
|
18891
|
+
ens: { registry: '0x4cd2563118e57b19179d8dc033f2b0c5b5d69ff5' },
|
18740
18892
|
shortName: 'hmy-s0',
|
18741
18893
|
chainId: 1666600000,
|
18742
18894
|
networkId: 1666600000,
|
@@ -18755,9 +18907,17 @@ const chainArray = [
|
|
18755
18907
|
faucets: [],
|
18756
18908
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18757
18909
|
infoURL: 'https://www.harmony.one/',
|
18910
|
+
slip44: 1023,
|
18758
18911
|
shortName: 'hmy-s1',
|
18759
18912
|
chainId: 1666600001,
|
18760
|
-
networkId: 1666600001
|
18913
|
+
networkId: 1666600001,
|
18914
|
+
explorers: [
|
18915
|
+
{
|
18916
|
+
name: 'Harmony Block Explorer',
|
18917
|
+
url: 'https://explorer.harmony.one/blocks/shard/1',
|
18918
|
+
standard: 'none'
|
18919
|
+
}
|
18920
|
+
]
|
18761
18921
|
},
|
18762
18922
|
{
|
18763
18923
|
name: 'Harmony Mainnet Shard 2',
|
@@ -18766,9 +18926,17 @@ const chainArray = [
|
|
18766
18926
|
faucets: [],
|
18767
18927
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18768
18928
|
infoURL: 'https://www.harmony.one/',
|
18929
|
+
slip44: 1023,
|
18769
18930
|
shortName: 'hmy-s2',
|
18770
18931
|
chainId: 1666600002,
|
18771
|
-
networkId: 1666600002
|
18932
|
+
networkId: 1666600002,
|
18933
|
+
explorers: [
|
18934
|
+
{
|
18935
|
+
name: 'Harmony Block Explorer',
|
18936
|
+
url: 'https://explorer.harmony.one/blocks/shard/2',
|
18937
|
+
standard: 'none'
|
18938
|
+
}
|
18939
|
+
]
|
18772
18940
|
},
|
18773
18941
|
{
|
18774
18942
|
name: 'Harmony Mainnet Shard 3',
|
@@ -18777,9 +18945,17 @@ const chainArray = [
|
|
18777
18945
|
faucets: [],
|
18778
18946
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18779
18947
|
infoURL: 'https://www.harmony.one/',
|
18948
|
+
slip44: 1023,
|
18780
18949
|
shortName: 'hmy-s3',
|
18781
18950
|
chainId: 1666600003,
|
18782
|
-
networkId: 1666600003
|
18951
|
+
networkId: 1666600003,
|
18952
|
+
explorers: [
|
18953
|
+
{
|
18954
|
+
name: 'Harmony Block Explorer',
|
18955
|
+
url: 'https://explorer.harmony.one/blocks/shard/3',
|
18956
|
+
standard: 'none'
|
18957
|
+
}
|
18958
|
+
]
|
18783
18959
|
},
|
18784
18960
|
{
|
18785
18961
|
name: 'Harmony Testnet Shard 0',
|
@@ -18794,7 +18970,7 @@ const chainArray = [
|
|
18794
18970
|
explorers: [
|
18795
18971
|
{
|
18796
18972
|
name: 'Harmony Testnet Block Explorer',
|
18797
|
-
url: 'https://explorer.
|
18973
|
+
url: 'https://explorer.testnet.harmony.one',
|
18798
18974
|
standard: 'EIP3091'
|
18799
18975
|
}
|
18800
18976
|
]
|
@@ -18803,52 +18979,43 @@ const chainArray = [
|
|
18803
18979
|
name: 'Harmony Testnet Shard 1',
|
18804
18980
|
chain: 'Harmony',
|
18805
18981
|
rpc: [ 'https://api.s1.b.hmny.io' ],
|
18806
|
-
faucets: [],
|
18982
|
+
faucets: [ 'https://faucet.pops.one' ],
|
18807
18983
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18808
18984
|
infoURL: 'https://www.harmony.one/',
|
18809
18985
|
shortName: 'hmy-b-s1',
|
18810
18986
|
chainId: 1666700001,
|
18811
|
-
networkId: 1666700001
|
18987
|
+
networkId: 1666700001,
|
18988
|
+
explorers: [
|
18989
|
+
{
|
18990
|
+
name: 'Harmony Block Explorer',
|
18991
|
+
url: 'https://explorer.testnet.harmony.one',
|
18992
|
+
standard: 'none'
|
18993
|
+
}
|
18994
|
+
]
|
18812
18995
|
},
|
18813
18996
|
{
|
18814
|
-
name: 'Harmony
|
18997
|
+
name: 'Harmony Devnet Shard 0',
|
18815
18998
|
chain: 'Harmony',
|
18816
|
-
rpc: [ 'https://api.
|
18999
|
+
rpc: [ 'https://api.s0.ps.hmny.io' ],
|
18817
19000
|
faucets: [],
|
18818
19001
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18819
19002
|
infoURL: 'https://www.harmony.one/',
|
18820
|
-
shortName: 'hmy-
|
18821
|
-
chainId:
|
18822
|
-
networkId:
|
19003
|
+
shortName: 'hmy-ps-s0',
|
19004
|
+
chainId: 1666900000,
|
19005
|
+
networkId: 1666900000,
|
19006
|
+
explorers: []
|
18823
19007
|
},
|
18824
19008
|
{
|
18825
|
-
name: 'Harmony
|
19009
|
+
name: 'Harmony Devnet Shard 1',
|
18826
19010
|
chain: 'Harmony',
|
18827
|
-
rpc: [ 'https://api.
|
19011
|
+
rpc: [ 'https://api.s1.ps.hmny.io' ],
|
18828
19012
|
faucets: [],
|
18829
19013
|
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18830
19014
|
infoURL: 'https://www.harmony.one/',
|
18831
|
-
shortName: 'hmy-
|
18832
|
-
chainId:
|
18833
|
-
networkId:
|
18834
|
-
|
18835
|
-
{
|
18836
|
-
name: 'Harmony Devnet Shard 0',
|
18837
|
-
chain: 'Harmony',
|
18838
|
-
rpc: [ 'https://api.s1.ps.hmny.io', 'https://api.s1.ps.hmny.io' ],
|
18839
|
-
faucets: [ 'http://dev.faucet.easynode.one/' ],
|
18840
|
-
nativeCurrency: { name: 'ONE', symbol: 'ONE', decimals: 18 },
|
18841
|
-
infoURL: 'https://www.harmony.one/',
|
18842
|
-
shortName: 'hmy-ps-s0',
|
18843
|
-
chainId: 1666900000,
|
18844
|
-
networkId: 1666900000,
|
18845
|
-
explorers: [
|
18846
|
-
{
|
18847
|
-
name: 'Harmony Block Explorer',
|
18848
|
-
url: 'https://explorer.ps.hmny.io',
|
18849
|
-
standard: 'EIP3091'
|
18850
|
-
}
|
18851
|
-
]
|
19015
|
+
shortName: 'hmy-ps-s1',
|
19016
|
+
chainId: 1666900001,
|
19017
|
+
networkId: 1666900001,
|
19018
|
+
explorers: []
|
18852
19019
|
},
|
18853
19020
|
{
|
18854
19021
|
name: 'DataHopper',
|