eth-chainlist 0.0.97 → 0.0.99
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 +119 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.99 (2023-03-14)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.98 ([679d873](https://github.com/poowf/eth-chainlist/commit/679d8733f80b0346e177a592923e8f74337ace21))
|
9
|
+
* update chain data ([e69cb68](https://github.com/poowf/eth-chainlist/commit/e69cb689b94d077663c25f71b96bb6b38f02d463))
|
10
|
+
|
11
|
+
### 0.0.98 (2023-03-11)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.97 ([053fa54](https://github.com/poowf/eth-chainlist/commit/053fa54154e616140cc53e66f008e741afbc9efa))
|
17
|
+
* update chain data ([402496b](https://github.com/poowf/eth-chainlist/commit/402496b13e5b816df187445a1cf81fe9bce5f3fc))
|
18
|
+
|
3
19
|
### 0.0.97 (2023-03-10)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -832,7 +832,6 @@ const chainArray = [
|
|
832
832
|
{
|
833
833
|
name: 'etmp',
|
834
834
|
url: 'https://pioneer.etmscan.network',
|
835
|
-
icon: 'etmpscan',
|
836
835
|
standard: 'EIP3091'
|
837
836
|
}
|
838
837
|
]
|
@@ -1332,7 +1331,6 @@ const chainArray = [
|
|
1332
1331
|
{
|
1333
1332
|
name: 'explorer',
|
1334
1333
|
url: 'https://explorer.idchain.one',
|
1335
|
-
icon: 'etherscan',
|
1336
1334
|
standard: 'EIP3091'
|
1337
1335
|
}
|
1338
1336
|
]
|
@@ -1781,7 +1779,6 @@ const chainArray = [
|
|
1781
1779
|
{
|
1782
1780
|
name: 'gnosisscan',
|
1783
1781
|
url: 'https://gnosisscan.io',
|
1784
|
-
icon: 'gnosisscan',
|
1785
1782
|
standard: 'EIP3091'
|
1786
1783
|
},
|
1787
1784
|
{
|
@@ -2212,6 +2209,26 @@ const chainArray = [
|
|
2212
2209
|
}
|
2213
2210
|
]
|
2214
2211
|
},
|
2212
|
+
{
|
2213
|
+
name: 'iExec Sidechain',
|
2214
|
+
chain: 'Bellecour',
|
2215
|
+
icon: 'rlc',
|
2216
|
+
rpc: [ 'https://bellecour.iex.ec' ],
|
2217
|
+
faucets: [],
|
2218
|
+
nativeCurrency: { name: 'xRLC', symbol: 'xRLC', decimals: 18 },
|
2219
|
+
infoURL: 'https://iex.ec',
|
2220
|
+
shortName: 'rlc',
|
2221
|
+
chainId: 134,
|
2222
|
+
networkId: 134,
|
2223
|
+
explorers: [
|
2224
|
+
{
|
2225
|
+
name: 'blockscout',
|
2226
|
+
url: 'https://blockscout.bellecour.iex.ec',
|
2227
|
+
icon: 'blockscout',
|
2228
|
+
standard: 'EIP3091'
|
2229
|
+
}
|
2230
|
+
]
|
2231
|
+
},
|
2215
2232
|
{
|
2216
2233
|
name: 'Alyx Chain Testnet',
|
2217
2234
|
chain: 'Alyx Chain Testnet',
|
@@ -2527,6 +2544,42 @@ const chainArray = [
|
|
2527
2544
|
}
|
2528
2545
|
]
|
2529
2546
|
},
|
2547
|
+
{
|
2548
|
+
name: 'OKBChain Testnet',
|
2549
|
+
chain: 'okbchain',
|
2550
|
+
rpc: [],
|
2551
|
+
faucets: [],
|
2552
|
+
nativeCurrency: {
|
2553
|
+
name: 'OKBChain Global Utility Token in testnet',
|
2554
|
+
symbol: 'OKB',
|
2555
|
+
decimals: 18
|
2556
|
+
},
|
2557
|
+
features: [],
|
2558
|
+
infoURL: 'https://www.okex.com/okc',
|
2559
|
+
shortName: 'tokb',
|
2560
|
+
chainId: 195,
|
2561
|
+
networkId: 195,
|
2562
|
+
explorers: [],
|
2563
|
+
status: 'incubating'
|
2564
|
+
},
|
2565
|
+
{
|
2566
|
+
name: 'OKBChain Mainnet',
|
2567
|
+
chain: 'okbchain',
|
2568
|
+
rpc: [],
|
2569
|
+
faucets: [],
|
2570
|
+
nativeCurrency: {
|
2571
|
+
name: 'OKBChain Global Utility Token',
|
2572
|
+
symbol: 'OKB',
|
2573
|
+
decimals: 18
|
2574
|
+
},
|
2575
|
+
features: [],
|
2576
|
+
infoURL: 'https://www.okex.com/okc',
|
2577
|
+
shortName: 'okb',
|
2578
|
+
chainId: 196,
|
2579
|
+
networkId: 196,
|
2580
|
+
explorers: [],
|
2581
|
+
status: 'incubating'
|
2582
|
+
},
|
2530
2583
|
{
|
2531
2584
|
name: 'BitTorrent Chain Mainnet',
|
2532
2585
|
chain: 'BTTC',
|
@@ -4593,7 +4646,7 @@ const chainArray = [
|
|
4593
4646
|
{
|
4594
4647
|
name: 'Memo Mainnet Explorer',
|
4595
4648
|
url: 'https://scan.metamemo.one:8080',
|
4596
|
-
icon: '
|
4649
|
+
icon: 'memo',
|
4597
4650
|
standard: 'EIP3091'
|
4598
4651
|
}
|
4599
4652
|
]
|
@@ -5604,7 +5657,7 @@ const chainArray = [
|
|
5604
5657
|
name: 'Elysium Mainnet',
|
5605
5658
|
title: 'An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged',
|
5606
5659
|
chain: 'Elysium',
|
5607
|
-
rpc: [ 'https://
|
5660
|
+
rpc: [ 'https://rpc.elysiumchain.tech/' ],
|
5608
5661
|
faucets: [],
|
5609
5662
|
nativeCurrency: { name: 'LAVA', symbol: 'LAVA', decimals: 18 },
|
5610
5663
|
infoURL: 'https://elysiumscan.vulcanforged.com',
|
@@ -7301,7 +7354,6 @@ const chainArray = [
|
|
7301
7354
|
{
|
7302
7355
|
name: 'Paribu Net Explorer',
|
7303
7356
|
url: 'https://explorer.paribu.network',
|
7304
|
-
icon: 'explorer',
|
7305
7357
|
standard: 'EIP3091'
|
7306
7358
|
}
|
7307
7359
|
]
|
@@ -7321,7 +7373,6 @@ const chainArray = [
|
|
7321
7373
|
{
|
7322
7374
|
name: 'Paribu Net Testnet Explorer',
|
7323
7375
|
url: 'https://testnet.paribuscan.com',
|
7324
|
-
icon: 'explorer',
|
7325
7376
|
standard: 'EIP3091'
|
7326
7377
|
}
|
7327
7378
|
]
|
@@ -7410,12 +7461,10 @@ const chainArray = [
|
|
7410
7461
|
shortName: 'btx',
|
7411
7462
|
chainId: 3690,
|
7412
7463
|
networkId: 3690,
|
7413
|
-
icon: 'ethereum',
|
7414
7464
|
explorers: [
|
7415
7465
|
{
|
7416
7466
|
name: 'bittexscan',
|
7417
7467
|
url: 'https://bittexscan.com',
|
7418
|
-
icon: 'etherscan',
|
7419
7468
|
standard: 'EIP3091'
|
7420
7469
|
}
|
7421
7470
|
]
|
@@ -7473,7 +7522,6 @@ const chainArray = [
|
|
7473
7522
|
{
|
7474
7523
|
name: 'DRAC_Network Scan',
|
7475
7524
|
url: 'https://www.dracscan.io',
|
7476
|
-
icon: 'DRAC',
|
7477
7525
|
standard: 'EIP3091'
|
7478
7526
|
}
|
7479
7527
|
]
|
@@ -8781,7 +8829,6 @@ const chainArray = [
|
|
8781
8829
|
{
|
8782
8830
|
name: 'alphscan',
|
8783
8831
|
url: 'https://explorer.alph.network',
|
8784
|
-
icon: 'alphscan',
|
8785
8832
|
standard: 'EIP3091'
|
8786
8833
|
}
|
8787
8834
|
]
|
@@ -9176,7 +9223,6 @@ const chainArray = [
|
|
9176
9223
|
{
|
9177
9224
|
name: 'QEasyWeb3 Explorer',
|
9178
9225
|
url: 'https://www.qeasyweb3.com',
|
9179
|
-
icon: 'qetscan',
|
9180
9226
|
standard: 'EIP3091'
|
9181
9227
|
}
|
9182
9228
|
]
|
@@ -9786,7 +9832,6 @@ const chainArray = [
|
|
9786
9832
|
{
|
9787
9833
|
name: 'phoenixplorer',
|
9788
9834
|
url: 'https://phoenixplorer.com',
|
9789
|
-
icon: 'phoenixplorer',
|
9790
9835
|
standard: 'EIP3091'
|
9791
9836
|
}
|
9792
9837
|
]
|
@@ -12529,7 +12574,6 @@ const chainArray = [
|
|
12529
12574
|
{
|
12530
12575
|
name: 'explorer masnet',
|
12531
12576
|
url: 'https://explorer.masnet.ai',
|
12532
|
-
icon: 'explorer',
|
12533
12577
|
standard: 'EIP3091'
|
12534
12578
|
}
|
12535
12579
|
]
|
@@ -12704,6 +12748,26 @@ const chainArray = [
|
|
12704
12748
|
chainId: 333999,
|
12705
12749
|
networkId: 333999
|
12706
12750
|
},
|
12751
|
+
{
|
12752
|
+
name: 'HAPchain Testnet',
|
12753
|
+
chain: 'HAPchain',
|
12754
|
+
rpc: [ 'https://jsonrpc-test.hap.land' ],
|
12755
|
+
faucets: [],
|
12756
|
+
nativeCurrency: { name: 'HAP', symbol: 'HAP', decimals: 18 },
|
12757
|
+
infoURL: 'https://hap.land',
|
12758
|
+
shortName: 'hap-testnet',
|
12759
|
+
chainId: 373737,
|
12760
|
+
networkId: 373737,
|
12761
|
+
icon: 'hap',
|
12762
|
+
explorers: [
|
12763
|
+
{
|
12764
|
+
name: 'HAP EVM Explorer (Blockscout)',
|
12765
|
+
url: 'https://blockscout-test.hap.land',
|
12766
|
+
standard: 'none',
|
12767
|
+
icon: 'hap'
|
12768
|
+
}
|
12769
|
+
]
|
12770
|
+
},
|
12707
12771
|
{
|
12708
12772
|
name: 'Metal C-Chain',
|
12709
12773
|
chain: 'Metal',
|
@@ -13619,6 +13683,26 @@ const chainArray = [
|
|
13619
13683
|
],
|
13620
13684
|
parent: { chain: 'eip155-2099156', type: 'L2' }
|
13621
13685
|
},
|
13686
|
+
{
|
13687
|
+
name: 'HAPchain',
|
13688
|
+
chain: 'HAPchain',
|
13689
|
+
rpc: [ 'https://jsonrpc.hap.land' ],
|
13690
|
+
faucets: [],
|
13691
|
+
nativeCurrency: { name: 'HAP', symbol: 'HAP', decimals: 18 },
|
13692
|
+
infoURL: 'https://hap.land',
|
13693
|
+
shortName: 'hap',
|
13694
|
+
chainId: 8794598,
|
13695
|
+
networkId: 8794598,
|
13696
|
+
icon: 'hap',
|
13697
|
+
explorers: [
|
13698
|
+
{
|
13699
|
+
name: 'HAP EVM Explorer (Blockscout)',
|
13700
|
+
url: 'https://blockscout.hap.land',
|
13701
|
+
standard: 'none',
|
13702
|
+
icon: 'hap'
|
13703
|
+
}
|
13704
|
+
]
|
13705
|
+
},
|
13622
13706
|
{
|
13623
13707
|
name: 'Plian Testnet Subchain 1',
|
13624
13708
|
chain: 'Plian',
|
@@ -14183,6 +14267,27 @@ const chainArray = [
|
|
14183
14267
|
chainId: 1122334455,
|
14184
14268
|
networkId: 1122334455
|
14185
14269
|
},
|
14270
|
+
{
|
14271
|
+
name: 'CyberdeckNet',
|
14272
|
+
chain: 'cyberdeck',
|
14273
|
+
rpc: [ 'http://cybeth1.cyberdeck.eu:8545' ],
|
14274
|
+
faucets: [],
|
14275
|
+
nativeCurrency: { name: 'Cyb', symbol: 'CYB', decimals: 18 },
|
14276
|
+
infoURL: 'https://cyberdeck.eu',
|
14277
|
+
shortName: 'cyb',
|
14278
|
+
chainId: 1146703430,
|
14279
|
+
networkId: 1146703430,
|
14280
|
+
icon: 'cyberdeck',
|
14281
|
+
status: 'active',
|
14282
|
+
explorers: [
|
14283
|
+
{
|
14284
|
+
name: 'CybEthExplorer',
|
14285
|
+
url: 'http://cybeth1.cyberdeck.eu:8000',
|
14286
|
+
icon: 'cyberdeck',
|
14287
|
+
standard: 'none'
|
14288
|
+
}
|
14289
|
+
]
|
14290
|
+
},
|
14186
14291
|
{
|
14187
14292
|
name: 'Aurora Mainnet',
|
14188
14293
|
chain: 'NEAR',
|