eth-chainlist 0.0.77 → 0.0.79
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 +96 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.79 (2023-02-17)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.78 ([2f6d8e3](https://github.com/poowf/eth-chainlist/commit/2f6d8e3b0bd8bcf2f4990bb554c94b73d836b800))
|
9
|
+
* update chain data ([d8e1695](https://github.com/poowf/eth-chainlist/commit/d8e1695903461d35ac63a5bbf01e1aa95e969d8b))
|
10
|
+
|
11
|
+
### 0.0.78 (2023-02-16)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.77 ([f9c1f1d](https://github.com/poowf/eth-chainlist/commit/f9c1f1db644f6c72cbacd697f40ad360d7e7d90c))
|
17
|
+
* update chain data ([0a0a65e](https://github.com/poowf/eth-chainlist/commit/0a0a65e73672a5293642334de1c18d27e0159dac))
|
18
|
+
|
3
19
|
### 0.0.77 (2023-02-15)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2033,6 +2033,34 @@ const chainArray = [
|
|
2033
2033
|
}
|
2034
2034
|
]
|
2035
2035
|
},
|
2036
|
+
{
|
2037
|
+
name: 'Realchain Mainnet',
|
2038
|
+
chain: 'REAL',
|
2039
|
+
rpc: [
|
2040
|
+
'https://rcl-dataseed1.rclsidechain.com',
|
2041
|
+
'https://rcl-dataseed2.rclsidechain.com',
|
2042
|
+
'https://rcl-dataseed3.rclsidechain.com',
|
2043
|
+
'https://rcl-dataseed4.rclsidechain.com',
|
2044
|
+
'wss://rcl-dataseed1.rclsidechain.com/v1/',
|
2045
|
+
'wss://rcl-dataseed2.rclsidechain.com/v1/',
|
2046
|
+
'wss://rcl-dataseed3.rclsidechain.com/v1/',
|
2047
|
+
'wss://rcl-dataseed4.rclsidechain.com/v1/'
|
2048
|
+
],
|
2049
|
+
faucets: [ 'https://faucet.rclsidechain.com' ],
|
2050
|
+
nativeCurrency: { name: 'Realchain', symbol: 'REAL', decimals: 18 },
|
2051
|
+
infoURL: 'https://www.rclsidechain.com/',
|
2052
|
+
shortName: 'REAL',
|
2053
|
+
chainId: 121,
|
2054
|
+
networkId: 121,
|
2055
|
+
slip44: 714,
|
2056
|
+
explorers: [
|
2057
|
+
{
|
2058
|
+
name: 'realscan',
|
2059
|
+
url: 'https://rclscan.com',
|
2060
|
+
standard: 'EIP3091'
|
2061
|
+
}
|
2062
|
+
]
|
2063
|
+
},
|
2036
2064
|
{
|
2037
2065
|
name: 'Fuse Mainnet',
|
2038
2066
|
chain: 'FUSE',
|
@@ -2758,24 +2786,29 @@ const chainArray = [
|
|
2758
2786
|
]
|
2759
2787
|
},
|
2760
2788
|
{
|
2761
|
-
name: 'zkSync
|
2789
|
+
name: 'zkSync Era Testnet',
|
2762
2790
|
chain: 'ETH',
|
2763
2791
|
rpc: [ 'https://zksync2-testnet.zksync.dev' ],
|
2764
|
-
faucets: [ 'https://portal.zksync.io/faucet' ],
|
2792
|
+
faucets: [ 'https://goerli.portal.zksync.io/faucet' ],
|
2765
2793
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
2766
|
-
infoURL: 'https://
|
2794
|
+
infoURL: 'https://era.zksync.io/docs/',
|
2767
2795
|
shortName: 'zksync-goerli',
|
2768
2796
|
chainId: 280,
|
2769
2797
|
networkId: 280,
|
2770
|
-
icon: '
|
2798
|
+
icon: 'zksync-era',
|
2771
2799
|
explorers: [
|
2772
2800
|
{
|
2773
|
-
name: '
|
2774
|
-
url: 'https://
|
2775
|
-
icon: '
|
2801
|
+
name: 'zkSync Era Block Explorer',
|
2802
|
+
url: 'https://goerli.explorer.zksync.io',
|
2803
|
+
icon: 'zksync-era',
|
2776
2804
|
standard: 'EIP3091'
|
2777
2805
|
}
|
2778
|
-
]
|
2806
|
+
],
|
2807
|
+
parent: {
|
2808
|
+
type: 'L2',
|
2809
|
+
chain: 'eip155-1',
|
2810
|
+
bridges: [ { url: 'https://goerli.portal.zksync.io/bridge' } ]
|
2811
|
+
}
|
2779
2812
|
},
|
2780
2813
|
{
|
2781
2814
|
name: 'Boba Network',
|
@@ -2941,25 +2974,29 @@ const chainArray = [
|
|
2941
2974
|
]
|
2942
2975
|
},
|
2943
2976
|
{
|
2944
|
-
name: 'zkSync
|
2977
|
+
name: 'zkSync Era Mainnet',
|
2945
2978
|
chain: 'ETH',
|
2946
|
-
rpc: [],
|
2979
|
+
rpc: [ 'https://zksync2-mainnet.zksync.io' ],
|
2947
2980
|
faucets: [],
|
2948
2981
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
2949
2982
|
infoURL: 'https://zksync.io/',
|
2950
2983
|
shortName: 'zksync',
|
2951
2984
|
chainId: 324,
|
2952
2985
|
networkId: 324,
|
2953
|
-
icon: '
|
2986
|
+
icon: 'zksync-era',
|
2954
2987
|
explorers: [
|
2955
2988
|
{
|
2956
|
-
name: 'zkSync
|
2989
|
+
name: 'zkSync Era Block Explorer',
|
2957
2990
|
url: 'https://explorer.zksync.io',
|
2991
|
+
icon: 'zksync-era',
|
2958
2992
|
standard: 'EIP3091'
|
2959
2993
|
}
|
2960
2994
|
],
|
2961
|
-
parent: {
|
2962
|
-
|
2995
|
+
parent: {
|
2996
|
+
type: 'L2',
|
2997
|
+
chain: 'eip155-1',
|
2998
|
+
bridges: [ { url: 'https://portal.zksync.io/bridge' } ]
|
2999
|
+
}
|
2963
3000
|
},
|
2964
3001
|
{
|
2965
3002
|
name: 'Web3Q Mainnet',
|
@@ -4834,6 +4871,25 @@ const chainArray = [
|
|
4834
4871
|
icon: 'defichain-network',
|
4835
4872
|
explorers: []
|
4836
4873
|
},
|
4874
|
+
{
|
4875
|
+
name: 'AmStar Testnet',
|
4876
|
+
chain: 'AmStar',
|
4877
|
+
icon: 'amstar',
|
4878
|
+
rpc: [ 'https://testnet-rpc.amstarscan.com' ],
|
4879
|
+
faucets: [],
|
4880
|
+
nativeCurrency: { name: 'SINSO', symbol: 'SINSO', decimals: 18 },
|
4881
|
+
infoURL: 'https://sinso.io',
|
4882
|
+
shortName: 'ASARt',
|
4883
|
+
chainId: 1138,
|
4884
|
+
networkId: 1138,
|
4885
|
+
explorers: [
|
4886
|
+
{
|
4887
|
+
name: 'amstarscan-testnet',
|
4888
|
+
url: 'https://testnet.amstarscan.com',
|
4889
|
+
standard: 'EIP3091'
|
4890
|
+
}
|
4891
|
+
]
|
4892
|
+
},
|
4837
4893
|
{
|
4838
4894
|
name: 'MathChain',
|
4839
4895
|
chain: 'MATH',
|
@@ -5411,7 +5467,7 @@ const chainArray = [
|
|
5411
5467
|
]
|
5412
5468
|
},
|
5413
5469
|
{
|
5414
|
-
name: 'Polygon zkEVM Testnet',
|
5470
|
+
name: 'Polygon zkEVM Testnet old',
|
5415
5471
|
title: 'Polygon zkEVM Testnet',
|
5416
5472
|
chain: 'Polygon',
|
5417
5473
|
rpc: [],
|
@@ -5427,6 +5483,26 @@ const chainArray = [
|
|
5427
5483
|
url: 'https://explorer.public.zkevm-test.net',
|
5428
5484
|
standard: 'EIP3091'
|
5429
5485
|
}
|
5486
|
+
],
|
5487
|
+
status: 'deprecated'
|
5488
|
+
},
|
5489
|
+
{
|
5490
|
+
name: 'Polygon zkEVM Testnet',
|
5491
|
+
title: 'Polygon zkEVM Testnet',
|
5492
|
+
chain: 'Polygon',
|
5493
|
+
rpc: [ 'https://rpc.public.zkevm-test.net' ],
|
5494
|
+
faucets: [],
|
5495
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5496
|
+
infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
|
5497
|
+
shortName: 'testnet-zkEVM-mango',
|
5498
|
+
chainId: 1422,
|
5499
|
+
networkId: 1422,
|
5500
|
+
explorers: [
|
5501
|
+
{
|
5502
|
+
name: 'Polygon zkEVM explorer',
|
5503
|
+
url: 'https://explorer.public.zkevm-test.net',
|
5504
|
+
standard: 'EIP3091'
|
5505
|
+
}
|
5430
5506
|
]
|
5431
5507
|
},
|
5432
5508
|
{
|
@@ -7908,7 +7984,11 @@ const chainArray = [
|
|
7908
7984
|
{
|
7909
7985
|
name: 'Canto',
|
7910
7986
|
chain: 'Canto',
|
7911
|
-
rpc: [
|
7987
|
+
rpc: [
|
7988
|
+
'https://canto.slingshot.finance',
|
7989
|
+
'https://canto.neobase.one',
|
7990
|
+
'https://mainnode.plexnode.org:8545'
|
7991
|
+
],
|
7912
7992
|
faucets: [],
|
7913
7993
|
nativeCurrency: { name: 'Canto', symbol: 'CANTO', decimals: 18 },
|
7914
7994
|
infoURL: 'https://canto.io',
|