eth-chainlist 0.0.79 → 0.0.80
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 +125 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.80 (2023-02-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.79 ([b3d27f4](https://github.com/poowf/eth-chainlist/commit/b3d27f4cf935e53d321772805eaa0d4491654b12))
|
9
|
+
* update chain data ([b8e9b25](https://github.com/poowf/eth-chainlist/commit/b8e9b25b55d517fa2ff2fc8891c4310d2b01fdb6))
|
10
|
+
|
3
11
|
### 0.0.79 (2023-02-17)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -323,7 +323,6 @@ const chainArray = [
|
|
323
323
|
icon: 'songbird',
|
324
324
|
rpc: [
|
325
325
|
'https://songbird-api.flare.network/ext/C/rpc',
|
326
|
-
'https://songbird.towolabs.com/ext/C/rpc',
|
327
326
|
'https://sgb.ftso.com.au/ext/bc/C/rpc',
|
328
327
|
'https://sgb.lightft.so/rpc',
|
329
328
|
'https://sgb-rpc.ftso.eu'
|
@@ -2838,6 +2837,124 @@ const chainArray = [
|
|
2838
2837
|
bridges: [ { url: 'https://gateway.boba.network' } ]
|
2839
2838
|
}
|
2840
2839
|
},
|
2840
|
+
{
|
2841
|
+
name: 'Hedera Mainnet',
|
2842
|
+
chain: 'Hedera',
|
2843
|
+
icon: 'hedera',
|
2844
|
+
rpc: [ 'https://mainnet.hashio.io/api' ],
|
2845
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
2846
|
+
faucets: [],
|
2847
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 },
|
2848
|
+
infoURL: 'https://hedera.com',
|
2849
|
+
shortName: 'hedera-mainnet',
|
2850
|
+
chainId: 295,
|
2851
|
+
networkId: 295,
|
2852
|
+
slip44: 3030,
|
2853
|
+
explorers: [
|
2854
|
+
{
|
2855
|
+
name: 'HashScan',
|
2856
|
+
url: 'https://hashscan.io/mainnet/dashboard',
|
2857
|
+
standard: 'none'
|
2858
|
+
},
|
2859
|
+
{
|
2860
|
+
name: 'Arkhia Explorer',
|
2861
|
+
url: 'https://explorer.arkhia.io',
|
2862
|
+
standard: 'none'
|
2863
|
+
},
|
2864
|
+
{
|
2865
|
+
name: 'DragonGlass',
|
2866
|
+
url: 'https://app.dragonglass.me',
|
2867
|
+
standard: 'none'
|
2868
|
+
},
|
2869
|
+
{
|
2870
|
+
name: 'Hedera Explorer',
|
2871
|
+
url: 'https://hederaexplorer.io',
|
2872
|
+
standard: 'none'
|
2873
|
+
},
|
2874
|
+
{
|
2875
|
+
name: 'Ledger Works Explore',
|
2876
|
+
url: 'https://explore.lworks.io',
|
2877
|
+
standard: 'none'
|
2878
|
+
}
|
2879
|
+
]
|
2880
|
+
},
|
2881
|
+
{
|
2882
|
+
name: 'Hedera Testnet',
|
2883
|
+
chain: 'Hedera',
|
2884
|
+
icon: 'hedera',
|
2885
|
+
rpc: [ 'https://testnet.hashio.io/api' ],
|
2886
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
2887
|
+
faucets: [ 'https://portal.hedera.com' ],
|
2888
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 },
|
2889
|
+
infoURL: 'https://hedera.com',
|
2890
|
+
shortName: 'hedera-testnet',
|
2891
|
+
chainId: 296,
|
2892
|
+
networkId: 296,
|
2893
|
+
slip44: 3030,
|
2894
|
+
explorers: [
|
2895
|
+
{
|
2896
|
+
name: 'HashScan',
|
2897
|
+
url: 'https://hashscan.io/testnet/dashboard',
|
2898
|
+
standard: 'none'
|
2899
|
+
},
|
2900
|
+
{
|
2901
|
+
name: 'Arkhia Explorer',
|
2902
|
+
url: 'https://explorer.arkhia.io',
|
2903
|
+
standard: 'none'
|
2904
|
+
},
|
2905
|
+
{
|
2906
|
+
name: 'DragonGlass',
|
2907
|
+
url: 'https://app.dragonglass.me',
|
2908
|
+
standard: 'none'
|
2909
|
+
},
|
2910
|
+
{
|
2911
|
+
name: 'Hedera Explorer',
|
2912
|
+
url: 'https://hederaexplorer.io',
|
2913
|
+
standard: 'none'
|
2914
|
+
},
|
2915
|
+
{
|
2916
|
+
name: 'Ledger Works Explore',
|
2917
|
+
url: 'https://explore.lworks.io',
|
2918
|
+
standard: 'none'
|
2919
|
+
}
|
2920
|
+
]
|
2921
|
+
},
|
2922
|
+
{
|
2923
|
+
name: 'Hedera Previewnet',
|
2924
|
+
chain: 'Hedera',
|
2925
|
+
icon: 'hedera',
|
2926
|
+
rpc: [ 'https://previewnet.hashio.io/api' ],
|
2927
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
2928
|
+
faucets: [ 'https://portal.hedera.com' ],
|
2929
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 },
|
2930
|
+
infoURL: 'https://hedera.com',
|
2931
|
+
shortName: 'hedera-previewnet',
|
2932
|
+
chainId: 297,
|
2933
|
+
networkId: 297,
|
2934
|
+
slip44: 3030,
|
2935
|
+
explorers: [
|
2936
|
+
{
|
2937
|
+
name: 'HashScan',
|
2938
|
+
url: 'https://hashscan.io/previewnet/dashboard',
|
2939
|
+
standard: 'none'
|
2940
|
+
}
|
2941
|
+
]
|
2942
|
+
},
|
2943
|
+
{
|
2944
|
+
name: 'Hedera Localnet',
|
2945
|
+
chain: 'Hedera',
|
2946
|
+
icon: 'hedera',
|
2947
|
+
rpc: [],
|
2948
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
2949
|
+
faucets: [],
|
2950
|
+
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 8 },
|
2951
|
+
infoURL: 'https://hedera.com',
|
2952
|
+
shortName: 'hedera-localnet',
|
2953
|
+
chainId: 298,
|
2954
|
+
networkId: 298,
|
2955
|
+
slip44: 3030,
|
2956
|
+
explorers: []
|
2957
|
+
},
|
2841
2958
|
{
|
2842
2959
|
name: 'Optimism on Gnosis',
|
2843
2960
|
chain: 'OGC',
|
@@ -8002,8 +8119,13 @@ const chainArray = [
|
|
8002
8119
|
standard: 'none'
|
8003
8120
|
},
|
8004
8121
|
{
|
8005
|
-
name: 'Canto Cosmos Explorer
|
8006
|
-
url: 'https://cosmos.
|
8122
|
+
name: 'Canto Cosmos Explorer',
|
8123
|
+
url: 'https://cosmos-explorers.neobase.one',
|
8124
|
+
standard: 'none'
|
8125
|
+
},
|
8126
|
+
{
|
8127
|
+
name: 'Canto EVM Explorer (Blockscout)',
|
8128
|
+
url: 'https://tuber.build',
|
8007
8129
|
standard: 'none'
|
8008
8130
|
}
|
8009
8131
|
]
|