eth-chainlist 0.0.69 → 0.0.71
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 +282 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.71 (2023-02-05)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.70 ([858008d](https://github.com/poowf/eth-chainlist/commit/858008da0a331779d6db10a335c969b6dff97d51))
|
9
|
+
* update chain data ([5f789fb](https://github.com/poowf/eth-chainlist/commit/5f789fbf32158e713be0a1ac5611afe950cec12a))
|
10
|
+
|
11
|
+
### 0.0.70 (2023-02-04)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.69 ([503a5c0](https://github.com/poowf/eth-chainlist/commit/503a5c0c9ff962d52e85962a673c6e9baf241c30))
|
17
|
+
* update chain data ([4e90f5f](https://github.com/poowf/eth-chainlist/commit/4e90f5fd438ded414019a13ed62f873c069ecf39))
|
18
|
+
|
3
19
|
### 0.0.69 (2023-02-02)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2011,6 +2011,46 @@ const chainArray = [
|
|
2011
2011
|
networkId: 116,
|
2012
2012
|
explorers: []
|
2013
2013
|
},
|
2014
|
+
{
|
2015
|
+
name: 'ENULS Mainnet',
|
2016
|
+
chain: 'ENULS',
|
2017
|
+
rpc: [ 'https://evmapi.nuls.io', 'https://evmapi2.nuls.io' ],
|
2018
|
+
faucets: [],
|
2019
|
+
nativeCurrency: { name: 'NULS', symbol: 'NULS', decimals: 18 },
|
2020
|
+
infoURL: 'https://nuls.io',
|
2021
|
+
shortName: 'enuls',
|
2022
|
+
chainId: 119,
|
2023
|
+
networkId: 119,
|
2024
|
+
icon: 'enuls',
|
2025
|
+
explorers: [
|
2026
|
+
{
|
2027
|
+
name: 'enulsscan',
|
2028
|
+
url: 'https://evmscan.nuls.io',
|
2029
|
+
icon: 'enuls',
|
2030
|
+
standard: 'EIP3091'
|
2031
|
+
}
|
2032
|
+
]
|
2033
|
+
},
|
2034
|
+
{
|
2035
|
+
name: 'ENULS Testnet',
|
2036
|
+
chain: 'ENULS',
|
2037
|
+
rpc: [ 'https://beta.evmapi.nuls.io', 'https://beta.evmapi2.nuls.io' ],
|
2038
|
+
faucets: [ 'http://faucet.nuls.io' ],
|
2039
|
+
nativeCurrency: { name: 'NULS', symbol: 'NULS', decimals: 18 },
|
2040
|
+
infoURL: 'https://nuls.io',
|
2041
|
+
shortName: 'enulst',
|
2042
|
+
chainId: 120,
|
2043
|
+
networkId: 120,
|
2044
|
+
icon: 'enuls',
|
2045
|
+
explorers: [
|
2046
|
+
{
|
2047
|
+
name: 'enulsscan',
|
2048
|
+
url: 'https://beta.evmscan.nuls.io',
|
2049
|
+
icon: 'enuls',
|
2050
|
+
standard: 'EIP3091'
|
2051
|
+
}
|
2052
|
+
]
|
2053
|
+
},
|
2014
2054
|
{
|
2015
2055
|
name: 'Fuse Mainnet',
|
2016
2056
|
chain: 'FUSE',
|
@@ -3110,6 +3150,25 @@ const chainArray = [
|
|
3110
3150
|
faucets: [],
|
3111
3151
|
nativeCurrency: { name: 'Pulse', symbol: 'PLS', decimals: 18 }
|
3112
3152
|
},
|
3153
|
+
{
|
3154
|
+
name: 'Consta Testnet',
|
3155
|
+
chain: 'tCNT',
|
3156
|
+
rpc: [ 'https://rpc-testnet.theconsta.com' ],
|
3157
|
+
faucets: [],
|
3158
|
+
nativeCurrency: { name: 'tCNT', symbol: 'tCNT', decimals: 18 },
|
3159
|
+
infoURL: 'http://theconsta.com',
|
3160
|
+
shortName: 'tCNT',
|
3161
|
+
chainId: 371,
|
3162
|
+
networkId: 371,
|
3163
|
+
icon: 'constachain',
|
3164
|
+
explorers: [
|
3165
|
+
{
|
3166
|
+
name: 'blockscout',
|
3167
|
+
url: 'https://explorer-testnet.theconsta.com',
|
3168
|
+
standard: 'EIP3091'
|
3169
|
+
}
|
3170
|
+
]
|
3171
|
+
},
|
3113
3172
|
{
|
3114
3173
|
name: 'Lisinski',
|
3115
3174
|
chain: 'CRO',
|
@@ -3559,6 +3618,28 @@ const chainArray = [
|
|
3559
3618
|
}
|
3560
3619
|
]
|
3561
3620
|
},
|
3621
|
+
{
|
3622
|
+
name: 'Endurance Smart Chain Mainnet',
|
3623
|
+
chain: 'ACE',
|
3624
|
+
rpc: [ 'https://rpc-endurance.fusionist.io/' ],
|
3625
|
+
faucets: [],
|
3626
|
+
nativeCurrency: {
|
3627
|
+
name: 'Endurance Chain Native Token',
|
3628
|
+
symbol: 'ACE',
|
3629
|
+
decimals: 18
|
3630
|
+
},
|
3631
|
+
infoURL: 'https://ace.fusionist.io/',
|
3632
|
+
shortName: 'ace',
|
3633
|
+
chainId: 648,
|
3634
|
+
networkId: 648,
|
3635
|
+
explorers: [
|
3636
|
+
{
|
3637
|
+
name: 'Endurance Scan',
|
3638
|
+
url: 'https://explorer.endurance.fusionist.io',
|
3639
|
+
standard: 'EIP3091'
|
3640
|
+
}
|
3641
|
+
]
|
3642
|
+
},
|
3562
3643
|
{
|
3563
3644
|
name: 'Pixie Chain Testnet',
|
3564
3645
|
chain: 'PixieChain',
|
@@ -4665,6 +4746,25 @@ const chainArray = [
|
|
4665
4746
|
}
|
4666
4747
|
]
|
4667
4748
|
},
|
4749
|
+
{
|
4750
|
+
name: 'Dogcoin Mainnet',
|
4751
|
+
chain: 'DOGS',
|
4752
|
+
icon: 'dogs',
|
4753
|
+
rpc: [ 'https://mainnet-rpc.dogcoin.network' ],
|
4754
|
+
faucets: [ 'https://faucet.dogcoin.network' ],
|
4755
|
+
nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
|
4756
|
+
infoURL: 'https://dogcoin.network',
|
4757
|
+
shortName: 'DOGSm',
|
4758
|
+
chainId: 1117,
|
4759
|
+
networkId: 1117,
|
4760
|
+
explorers: [
|
4761
|
+
{
|
4762
|
+
name: 'Dogcoin',
|
4763
|
+
url: 'https://explorer.dogcoin.network',
|
4764
|
+
standard: 'EIP3091'
|
4765
|
+
}
|
4766
|
+
]
|
4767
|
+
},
|
4668
4768
|
{
|
4669
4769
|
name: 'DeFiChain EVM Network Mainnet',
|
4670
4770
|
chain: 'defichain-evm',
|
@@ -6933,6 +7033,44 @@ const chainArray = [
|
|
6933
7033
|
}
|
6934
7034
|
]
|
6935
7035
|
},
|
7036
|
+
{
|
7037
|
+
name: 'Bitindi Testnet',
|
7038
|
+
chain: 'BNI',
|
7039
|
+
icon: 'bitindiTestnet',
|
7040
|
+
rpc: [ 'https://testnet-rpc.bitindi.org' ],
|
7041
|
+
faucets: [ 'https://faucet.bitindi.org' ],
|
7042
|
+
nativeCurrency: { name: 'BNI', symbol: '$BNI', decimals: 18 },
|
7043
|
+
infoURL: 'https://bitindi.org',
|
7044
|
+
shortName: 'BNIt',
|
7045
|
+
chainId: 4096,
|
7046
|
+
networkId: 4096,
|
7047
|
+
explorers: [
|
7048
|
+
{
|
7049
|
+
name: 'Bitindi',
|
7050
|
+
url: 'https://testnet.bitindiscan.com',
|
7051
|
+
standard: 'EIP3091'
|
7052
|
+
}
|
7053
|
+
]
|
7054
|
+
},
|
7055
|
+
{
|
7056
|
+
name: 'Bitindi Mainnet',
|
7057
|
+
chain: 'BNI',
|
7058
|
+
icon: 'bitindi',
|
7059
|
+
rpc: [ 'https://mainnet-rpc.bitindi.org' ],
|
7060
|
+
faucets: [ 'https://faucet.bitindi.org' ],
|
7061
|
+
nativeCurrency: { name: 'BNI', symbol: '$BNI', decimals: 18 },
|
7062
|
+
infoURL: 'https://bitindi.org',
|
7063
|
+
shortName: 'BNIm',
|
7064
|
+
chainId: 4099,
|
7065
|
+
networkId: 4099,
|
7066
|
+
explorers: [
|
7067
|
+
{
|
7068
|
+
name: 'Bitindi',
|
7069
|
+
url: 'https://bitindiscan.com',
|
7070
|
+
standard: 'EIP3091'
|
7071
|
+
}
|
7072
|
+
]
|
7073
|
+
},
|
6936
7074
|
{
|
6937
7075
|
name: 'AIOZ Network Testnet',
|
6938
7076
|
chain: 'AIOZ',
|
@@ -7699,6 +7837,7 @@ const chainArray = [
|
|
7699
7837
|
{
|
7700
7838
|
name: 'Shardeum Liberty 1.X',
|
7701
7839
|
chain: 'Shardeum',
|
7840
|
+
icon: 'shardeum',
|
7702
7841
|
rpc: [ 'https://liberty10.shardeum.org/' ],
|
7703
7842
|
faucets: [ 'https://faucet.liberty10.shardeum.org' ],
|
7704
7843
|
nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 },
|
@@ -7708,9 +7847,9 @@ const chainArray = [
|
|
7708
7847
|
networkId: 8080,
|
7709
7848
|
explorers: [
|
7710
7849
|
{
|
7711
|
-
name: '
|
7850
|
+
name: 'Shardeum Scan',
|
7712
7851
|
url: 'https://explorer-liberty10.shardeum.org',
|
7713
|
-
standard: '
|
7852
|
+
standard: 'none'
|
7714
7853
|
}
|
7715
7854
|
],
|
7716
7855
|
redFlags: [ 'reusedChainId' ]
|
@@ -7718,6 +7857,7 @@ const chainArray = [
|
|
7718
7857
|
{
|
7719
7858
|
name: 'Shardeum Liberty 2.X',
|
7720
7859
|
chain: 'Shardeum',
|
7860
|
+
icon: 'shardeum',
|
7721
7861
|
rpc: [ 'https://liberty20.shardeum.org/' ],
|
7722
7862
|
faucets: [ 'https://faucet.liberty20.shardeum.org' ],
|
7723
7863
|
nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 },
|
@@ -7727,9 +7867,29 @@ const chainArray = [
|
|
7727
7867
|
networkId: 8081,
|
7728
7868
|
explorers: [
|
7729
7869
|
{
|
7730
|
-
name: '
|
7870
|
+
name: 'Shardeum Scan',
|
7731
7871
|
url: 'https://explorer-liberty20.shardeum.org',
|
7732
|
-
standard: '
|
7872
|
+
standard: 'none'
|
7873
|
+
}
|
7874
|
+
],
|
7875
|
+
redFlags: [ 'reusedChainId' ]
|
7876
|
+
},
|
7877
|
+
{
|
7878
|
+
name: 'Shardeum Sphinx 1.X',
|
7879
|
+
chain: 'Shardeum',
|
7880
|
+
icon: 'shardeum',
|
7881
|
+
rpc: [ 'https://sphinx.shardeum.org/' ],
|
7882
|
+
faucets: [ 'https://faucet-sphinx.shardeum.org/' ],
|
7883
|
+
nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 },
|
7884
|
+
infoURL: 'https://docs.shardeum.org/',
|
7885
|
+
shortName: 'Sphinx10',
|
7886
|
+
chainId: 8082,
|
7887
|
+
networkId: 8082,
|
7888
|
+
explorers: [
|
7889
|
+
{
|
7890
|
+
name: 'Shardeum Scan',
|
7891
|
+
url: 'https://explorer-sphinx.shardeum.org',
|
7892
|
+
standard: 'none'
|
7733
7893
|
}
|
7734
7894
|
],
|
7735
7895
|
redFlags: [ 'reusedChainId' ]
|
@@ -8234,6 +8394,25 @@ const chainArray = [
|
|
8234
8394
|
explorers: [],
|
8235
8395
|
status: 'deprecated'
|
8236
8396
|
},
|
8397
|
+
{
|
8398
|
+
name: 'Dogcoin Testnet',
|
8399
|
+
chain: 'DOGS',
|
8400
|
+
icon: 'dogs',
|
8401
|
+
rpc: [ 'https://testnet-rpc.dogcoin.network' ],
|
8402
|
+
faucets: [ 'https://faucet.dogcoin.network' ],
|
8403
|
+
nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
|
8404
|
+
infoURL: 'https://dogcoin.network',
|
8405
|
+
shortName: 'DOGSt',
|
8406
|
+
chainId: 9339,
|
8407
|
+
networkId: 9339,
|
8408
|
+
explorers: [
|
8409
|
+
{
|
8410
|
+
name: 'Dogcoin',
|
8411
|
+
url: 'https://testnet.dogcoin.network',
|
8412
|
+
standard: 'EIP3091'
|
8413
|
+
}
|
8414
|
+
]
|
8415
|
+
},
|
8237
8416
|
{
|
8238
8417
|
name: 'Rangers Protocol Testnet Robin',
|
8239
8418
|
chain: 'Rangers',
|
@@ -10591,6 +10770,25 @@ const chainArray = [
|
|
10591
10770
|
}
|
10592
10771
|
]
|
10593
10772
|
},
|
10773
|
+
{
|
10774
|
+
name: 'Chiliz Scoville Testnet',
|
10775
|
+
chain: 'CHZ',
|
10776
|
+
rpc: [ 'https://scoville-rpc.chiliz.com' ],
|
10777
|
+
faucets: [ 'https://scoville-faucet.chiliz.com' ],
|
10778
|
+
nativeCurrency: { name: 'Chiliz', symbol: 'CHZ', decimals: 18 },
|
10779
|
+
icon: 'chiliz',
|
10780
|
+
infoURL: 'https://www.chiliz.com/en/chain',
|
10781
|
+
shortName: 'chz',
|
10782
|
+
chainId: 88880,
|
10783
|
+
networkId: 88880,
|
10784
|
+
explorers: [
|
10785
|
+
{
|
10786
|
+
name: 'scoville-explorer',
|
10787
|
+
url: 'https://scoville-explorer.chiliz.com',
|
10788
|
+
standard: 'none'
|
10789
|
+
}
|
10790
|
+
]
|
10791
|
+
},
|
10594
10792
|
{
|
10595
10793
|
name: 'IVAR Chain Mainnet',
|
10596
10794
|
chain: 'IVAR',
|
@@ -11436,6 +11634,25 @@ const chainArray = [
|
|
11436
11634
|
chainId: 246785,
|
11437
11635
|
networkId: 246785
|
11438
11636
|
},
|
11637
|
+
{
|
11638
|
+
name: 'Saakuru Testnet',
|
11639
|
+
chain: 'Saakuru',
|
11640
|
+
icon: 'saakuru',
|
11641
|
+
rpc: [ 'https://rpc-testnet.saakuru.network' ],
|
11642
|
+
faucets: [],
|
11643
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
11644
|
+
infoURL: 'https://saakuru.network',
|
11645
|
+
shortName: 'saakuru-testnet',
|
11646
|
+
chainId: 247253,
|
11647
|
+
networkId: 247253,
|
11648
|
+
explorers: [
|
11649
|
+
{
|
11650
|
+
name: 'saakuru-explorer-testnet',
|
11651
|
+
url: 'https://explorer-testnet.saakuru.network',
|
11652
|
+
standard: 'EIP3091'
|
11653
|
+
}
|
11654
|
+
]
|
11655
|
+
},
|
11439
11656
|
{
|
11440
11657
|
name: 'CMP-Mainnet',
|
11441
11658
|
chain: 'CMP',
|
@@ -12272,6 +12489,25 @@ const chainArray = [
|
|
12272
12489
|
}
|
12273
12490
|
]
|
12274
12491
|
},
|
12492
|
+
{
|
12493
|
+
name: 'Saakuru Mainnet',
|
12494
|
+
chain: 'Saakuru',
|
12495
|
+
icon: 'saakuru',
|
12496
|
+
rpc: [ 'https://rpc.saakuru.network' ],
|
12497
|
+
faucets: [],
|
12498
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
12499
|
+
infoURL: 'https://saakuru.network',
|
12500
|
+
shortName: 'saakuru',
|
12501
|
+
chainId: 7225878,
|
12502
|
+
networkId: 7225878,
|
12503
|
+
explorers: [
|
12504
|
+
{
|
12505
|
+
name: 'saakuru-explorer',
|
12506
|
+
url: 'https://explorer.saakuru.network',
|
12507
|
+
standard: 'EIP3091'
|
12508
|
+
}
|
12509
|
+
]
|
12510
|
+
},
|
12275
12511
|
{
|
12276
12512
|
name: 'OpenVessel',
|
12277
12513
|
chain: 'VSL',
|
@@ -12648,6 +12884,48 @@ const chainArray = [
|
|
12648
12884
|
networkId: 61717561,
|
12649
12885
|
slip44: 61717561
|
12650
12886
|
},
|
12887
|
+
{
|
12888
|
+
name: 'Autonity Bakerloo (Thames) Testnet',
|
12889
|
+
chain: 'AUT',
|
12890
|
+
rpc: [
|
12891
|
+
'https://rpc1.bakerloo.autonity.org/',
|
12892
|
+
'wss://rpc1.bakerloo.autonity.org/ws/'
|
12893
|
+
],
|
12894
|
+
faucets: [ 'https://faucet.autonity.org/' ],
|
12895
|
+
nativeCurrency: { name: 'Bakerloo Auton', symbol: 'ATN', decimals: 18 },
|
12896
|
+
infoURL: 'https://autonity.org/',
|
12897
|
+
shortName: 'bakerloo-0',
|
12898
|
+
chainId: 65010000,
|
12899
|
+
networkId: 65010000,
|
12900
|
+
explorers: [
|
12901
|
+
{
|
12902
|
+
name: 'autonity-blockscout',
|
12903
|
+
url: 'https://bakerloo.autonity.org',
|
12904
|
+
standard: 'EIP3091'
|
12905
|
+
}
|
12906
|
+
]
|
12907
|
+
},
|
12908
|
+
{
|
12909
|
+
name: 'Autonity Piccadilly (Thames) Testnet',
|
12910
|
+
chain: 'AUT',
|
12911
|
+
rpc: [
|
12912
|
+
'https://rpc1.piccadilly.autonity.org/',
|
12913
|
+
'wss://rpc1.piccadilly.autonity.org/ws/'
|
12914
|
+
],
|
12915
|
+
faucets: [ 'https://faucet.autonity.org/' ],
|
12916
|
+
nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
|
12917
|
+
infoURL: 'https://autonity.org/',
|
12918
|
+
shortName: 'piccadilly-0',
|
12919
|
+
chainId: 65100000,
|
12920
|
+
networkId: 65100000,
|
12921
|
+
explorers: [
|
12922
|
+
{
|
12923
|
+
name: 'autonity-blockscout',
|
12924
|
+
url: 'https://piccadilly.autonity.org',
|
12925
|
+
standard: 'EIP3091'
|
12926
|
+
}
|
12927
|
+
]
|
12928
|
+
},
|
12651
12929
|
{
|
12652
12930
|
name: 'Joys Digital TestNet',
|
12653
12931
|
chain: 'TOYS',
|