eth-chainlist 0.0.58 → 0.0.60
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 +183 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.60 (2023-01-19)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.59 ([2036dc9](https://github.com/poowf/eth-chainlist/commit/2036dc96f01b86da7e03cbd1b616b479e3895679))
|
9
|
+
* update chain data ([e462f0d](https://github.com/poowf/eth-chainlist/commit/e462f0d6a819222734eaa1abce3f91194590557e))
|
10
|
+
|
11
|
+
### 0.0.59 (2023-01-18)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.58 ([49a6c9c](https://github.com/poowf/eth-chainlist/commit/49a6c9c322b59f9572954e1eead9795c31d63226))
|
17
|
+
* update chain data ([22929e3](https://github.com/poowf/eth-chainlist/commit/22929e32b37937b69122882f5b5305822db26095))
|
18
|
+
|
3
19
|
### 0.0.58 (2023-01-17)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -4382,6 +4382,24 @@ const chainArray = [
|
|
4382
4382
|
}
|
4383
4383
|
]
|
4384
4384
|
},
|
4385
|
+
{
|
4386
|
+
name: 'Proxy Network Testnet',
|
4387
|
+
chain: 'Proxy Network',
|
4388
|
+
rpc: [ 'http://128.199.94.183:8041' ],
|
4389
|
+
faucets: [],
|
4390
|
+
nativeCurrency: { name: 'PRX', symbol: 'PRX', decimals: 18 },
|
4391
|
+
infoURL: 'https://theproxy.network',
|
4392
|
+
shortName: 'prx',
|
4393
|
+
chainId: 1031,
|
4394
|
+
networkId: 1031,
|
4395
|
+
explorers: [
|
4396
|
+
{
|
4397
|
+
name: 'proxy network testnet',
|
4398
|
+
url: 'http://testnet-explorer.theproxy.network',
|
4399
|
+
standard: 'EIP3091'
|
4400
|
+
}
|
4401
|
+
]
|
4402
|
+
},
|
4385
4403
|
{
|
4386
4404
|
name: 'Bronos Testnet',
|
4387
4405
|
chain: 'Bronos',
|
@@ -5341,6 +5359,26 @@ const chainArray = [
|
|
5341
5359
|
chainId: 1856,
|
5342
5360
|
networkId: 1
|
5343
5361
|
},
|
5362
|
+
{
|
5363
|
+
name: 'Gitshock Cartenz Testnet',
|
5364
|
+
chain: 'Gitshock Cartenz',
|
5365
|
+
icon: 'gitshockchain',
|
5366
|
+
rpc: [ 'https://rpc.cartenz.works' ],
|
5367
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5368
|
+
faucets: [],
|
5369
|
+
nativeCurrency: { name: 'Gitshock Cartenz', symbol: 'tGTFX', decimals: 18 },
|
5370
|
+
infoURL: 'https://gitshock.com',
|
5371
|
+
shortName: 'gitshockchain',
|
5372
|
+
chainId: 1881,
|
5373
|
+
networkId: 1881,
|
5374
|
+
explorers: [
|
5375
|
+
{
|
5376
|
+
name: 'blockscout',
|
5377
|
+
url: 'https://scan.cartenz.works',
|
5378
|
+
standard: 'EIP3091'
|
5379
|
+
}
|
5380
|
+
]
|
5381
|
+
},
|
5344
5382
|
{
|
5345
5383
|
name: 'BON Network',
|
5346
5384
|
chain: 'BON',
|
@@ -7613,6 +7651,103 @@ const chainArray = [
|
|
7613
7651
|
}
|
7614
7652
|
]
|
7615
7653
|
},
|
7654
|
+
{
|
7655
|
+
name: 'Unique',
|
7656
|
+
icon: 'unique',
|
7657
|
+
chain: 'UNQ',
|
7658
|
+
rpc: [
|
7659
|
+
'https://rpc.unique.network',
|
7660
|
+
'https://eu-rpc.unique.network',
|
7661
|
+
'https://asia-rpc.unique.network',
|
7662
|
+
'https://us-rpc.unique.network'
|
7663
|
+
],
|
7664
|
+
faucets: [],
|
7665
|
+
nativeCurrency: { name: 'Unique', symbol: 'UNQ', decimals: 18 },
|
7666
|
+
infoURL: 'https://unique.network',
|
7667
|
+
shortName: 'unq',
|
7668
|
+
chainId: 8880,
|
7669
|
+
networkId: 8880,
|
7670
|
+
explorers: [
|
7671
|
+
{
|
7672
|
+
name: 'Unique Scan',
|
7673
|
+
url: 'https://uniquescan.io/unique',
|
7674
|
+
standard: 'none'
|
7675
|
+
}
|
7676
|
+
]
|
7677
|
+
},
|
7678
|
+
{
|
7679
|
+
name: 'Quartz by Unique',
|
7680
|
+
icon: 'quartz',
|
7681
|
+
chain: 'UNQ',
|
7682
|
+
rpc: [
|
7683
|
+
'https://rpc-quartz.unique.network',
|
7684
|
+
'https://quartz.api.onfinality.io/public-ws',
|
7685
|
+
'https://eu-rpc-quartz.unique.network',
|
7686
|
+
'https://asia-rpc-quartz.unique.network',
|
7687
|
+
'https://us-rpc-quartz.unique.network'
|
7688
|
+
],
|
7689
|
+
faucets: [],
|
7690
|
+
nativeCurrency: { name: 'Quartz', symbol: 'QTZ', decimals: 18 },
|
7691
|
+
infoURL: 'https://unique.network',
|
7692
|
+
shortName: 'qtz',
|
7693
|
+
chainId: 8881,
|
7694
|
+
networkId: 8881,
|
7695
|
+
explorers: [
|
7696
|
+
{
|
7697
|
+
name: 'Unique Scan / Quartz',
|
7698
|
+
url: 'https://uniquescan.io/quartz',
|
7699
|
+
standard: 'none'
|
7700
|
+
}
|
7701
|
+
]
|
7702
|
+
},
|
7703
|
+
{
|
7704
|
+
name: 'Opal testnet by Unique',
|
7705
|
+
icon: 'opal',
|
7706
|
+
chain: 'UNQ',
|
7707
|
+
rpc: [
|
7708
|
+
'https://rpc-opal.unique.network',
|
7709
|
+
'https://us-rpc-opal.unique.network',
|
7710
|
+
'https://eu-rpc-opal.unique.network',
|
7711
|
+
'https://asia-rpc-opal.unique.network'
|
7712
|
+
],
|
7713
|
+
faucets: [ 'https://t.me/unique2faucet_opal_bot' ],
|
7714
|
+
nativeCurrency: { name: 'Opal', symbol: 'UNQ', decimals: 18 },
|
7715
|
+
infoURL: 'https://unique.network',
|
7716
|
+
shortName: 'opl',
|
7717
|
+
chainId: 8882,
|
7718
|
+
networkId: 8882,
|
7719
|
+
explorers: [
|
7720
|
+
{
|
7721
|
+
name: 'Unique Scan / Opal',
|
7722
|
+
url: 'https://uniquescan.io/opal',
|
7723
|
+
standard: 'none'
|
7724
|
+
}
|
7725
|
+
]
|
7726
|
+
},
|
7727
|
+
{
|
7728
|
+
name: 'Sapphire by Unique',
|
7729
|
+
icon: 'sapphire',
|
7730
|
+
chain: 'UNQ',
|
7731
|
+
rpc: [
|
7732
|
+
'https://rpc-sapphire.unique.network',
|
7733
|
+
'https://us-rpc-sapphire.unique.network',
|
7734
|
+
'https://eu-rpc-sapphire.unique.network',
|
7735
|
+
'https://asia-rpc-sapphire.unique.network'
|
7736
|
+
],
|
7737
|
+
faucets: [],
|
7738
|
+
nativeCurrency: { name: 'Quartz', symbol: 'QTZ', decimals: 18 },
|
7739
|
+
infoURL: 'https://unique.network',
|
7740
|
+
shortName: 'sph',
|
7741
|
+
chainId: 8883,
|
7742
|
+
networkId: 8883,
|
7743
|
+
explorers: [
|
7744
|
+
{
|
7745
|
+
name: 'Unique Scan / Sapphire',
|
7746
|
+
url: 'https://uniquescan.io/sapphire',
|
7747
|
+
standard: 'none'
|
7748
|
+
}
|
7749
|
+
]
|
7750
|
+
},
|
7616
7751
|
{
|
7617
7752
|
name: 'XANAChain',
|
7618
7753
|
chain: 'XANAChain',
|
@@ -8381,6 +8516,27 @@ const chainArray = [
|
|
8381
8516
|
}
|
8382
8517
|
]
|
8383
8518
|
},
|
8519
|
+
{
|
8520
|
+
name: 'Credit Smartchain Mainnet',
|
8521
|
+
chain: 'CREDIT',
|
8522
|
+
rpc: [ 'https://mainnet-rpc.cscscan.io' ],
|
8523
|
+
faucets: [],
|
8524
|
+
nativeCurrency: { name: 'Credit', symbol: 'CREDIT', decimals: 18 },
|
8525
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
8526
|
+
infoURL: 'https://creditsmartchain.com',
|
8527
|
+
shortName: 'Credit',
|
8528
|
+
chainId: 13308,
|
8529
|
+
networkId: 1,
|
8530
|
+
icon: 'credit',
|
8531
|
+
explorers: [
|
8532
|
+
{
|
8533
|
+
name: 'CSC Scan',
|
8534
|
+
url: 'https://explorer.cscscan.io',
|
8535
|
+
icon: 'credit',
|
8536
|
+
standard: 'EIP3091'
|
8537
|
+
}
|
8538
|
+
]
|
8539
|
+
},
|
8384
8540
|
{
|
8385
8541
|
name: 'Phoenix Mainnet',
|
8386
8542
|
chain: 'Phoenix',
|
@@ -9683,6 +9839,33 @@ const chainArray = [
|
|
9683
9839
|
}
|
9684
9840
|
]
|
9685
9841
|
},
|
9842
|
+
{
|
9843
|
+
name: 'Etica Mainnet',
|
9844
|
+
chain: 'Etica Protocol (ETI/EGAZ)',
|
9845
|
+
icon: 'etica',
|
9846
|
+
rpc: [
|
9847
|
+
'https://eticamainnet.eticascan.org',
|
9848
|
+
'https://eticamainnet.eticaprotocol.org'
|
9849
|
+
],
|
9850
|
+
faucets: [ 'http://faucet.etica-stats.org/' ],
|
9851
|
+
nativeCurrency: { name: 'EGAZ', symbol: 'EGAZ', decimals: 18 },
|
9852
|
+
infoURL: 'https://eticaprotocol.org',
|
9853
|
+
shortName: 'Etica',
|
9854
|
+
chainId: 61803,
|
9855
|
+
networkId: 61803,
|
9856
|
+
explorers: [
|
9857
|
+
{
|
9858
|
+
name: 'eticascan',
|
9859
|
+
url: 'https://eticascan.org',
|
9860
|
+
standard: 'EIP3091'
|
9861
|
+
},
|
9862
|
+
{
|
9863
|
+
name: 'eticastats',
|
9864
|
+
url: 'http://explorer.etica-stats.org',
|
9865
|
+
standard: 'EIP3091'
|
9866
|
+
}
|
9867
|
+
]
|
9868
|
+
},
|
9686
9869
|
{
|
9687
9870
|
name: 'DoKEN Super Chain Mainnet',
|
9688
9871
|
chain: 'DoKEN Super Chain',
|