eth-chainlist 0.0.59 → 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 +8 -0
- package/data/chain.js +118 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
3
11
|
### 0.0.59 (2023-01-18)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -7651,6 +7651,103 @@ const chainArray = [
|
|
7651
7651
|
}
|
7652
7652
|
]
|
7653
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
|
+
},
|
7654
7751
|
{
|
7655
7752
|
name: 'XANAChain',
|
7656
7753
|
chain: 'XANAChain',
|
@@ -8419,6 +8516,27 @@ const chainArray = [
|
|
8419
8516
|
}
|
8420
8517
|
]
|
8421
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
|
+
},
|
8422
8540
|
{
|
8423
8541
|
name: 'Phoenix Mainnet',
|
8424
8542
|
chain: 'Phoenix',
|