eth-chainlist 0.0.319 → 0.0.321
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 +126 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.321 (2024-01-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.320 ([385238c](https://github.com/poowf/eth-chainlist/commit/385238ca6a053c09e3156e21e4a18b4ae84cb26d))
|
9
|
+
* update chain data ([5c0e7ac](https://github.com/poowf/eth-chainlist/commit/5c0e7ac0d1fa33a86a4c33f8aeb146c3683c7632))
|
10
|
+
|
11
|
+
### 0.0.320 (2024-01-12)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.319 ([1f2aee4](https://github.com/poowf/eth-chainlist/commit/1f2aee4884b6e7883f6b2248667170659ce0a9b8))
|
17
|
+
* update chain data ([9061c62](https://github.com/poowf/eth-chainlist/commit/9061c6265f17c1e7d2e0fae70ffa0bd146540272))
|
18
|
+
|
3
19
|
### 0.0.319 (2024-01-10)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2612,6 +2612,26 @@ const chainArray = [
|
|
2612
2612
|
}
|
2613
2613
|
]
|
2614
2614
|
},
|
2615
|
+
{
|
2616
|
+
name: 'ProtoJumbo Testnet',
|
2617
|
+
chain: 'Jumbo',
|
2618
|
+
rpc: [ 'https://testnode.jumbochain.org' ],
|
2619
|
+
faucets: [ 'https://protojumbo.jumbochain.org/faucet-smart' ],
|
2620
|
+
nativeCurrency: { name: 'JNFTC', symbol: 'JNFTC', decimals: 18 },
|
2621
|
+
features: [ { name: 'EIP155' } ],
|
2622
|
+
infoURL: 'https://jumbochain.org',
|
2623
|
+
shortName: 'ProtoJumbo',
|
2624
|
+
chainId: 129,
|
2625
|
+
networkId: 129,
|
2626
|
+
slip44: 1,
|
2627
|
+
explorers: [
|
2628
|
+
{
|
2629
|
+
name: 'ProtoJumbo',
|
2630
|
+
url: 'https://protojumbo.jumbochain.org',
|
2631
|
+
standard: 'EIP3091'
|
2632
|
+
}
|
2633
|
+
]
|
2634
|
+
},
|
2615
2635
|
{
|
2616
2636
|
name: 'Engram Testnet',
|
2617
2637
|
chain: 'tGRAM',
|
@@ -3304,10 +3324,10 @@ const chainArray = [
|
|
3304
3324
|
{
|
3305
3325
|
name: 'BitTorrent Chain Mainnet',
|
3306
3326
|
chain: 'BTTC',
|
3307
|
-
rpc: [ 'https://rpc.
|
3327
|
+
rpc: [ 'https://rpc.bt.io' ],
|
3308
3328
|
faucets: [],
|
3309
3329
|
nativeCurrency: { name: 'BitTorrent', symbol: 'BTT', decimals: 18 },
|
3310
|
-
infoURL: 'https
|
3330
|
+
infoURL: 'https://bt.io',
|
3311
3331
|
shortName: 'BTT',
|
3312
3332
|
chainId: 199,
|
3313
3333
|
networkId: 199,
|
@@ -4932,7 +4952,13 @@ const chainArray = [
|
|
4932
4952
|
name: 'Areon Network Mainnet',
|
4933
4953
|
chain: 'Areon',
|
4934
4954
|
icon: 'areon',
|
4935
|
-
rpc: [
|
4955
|
+
rpc: [
|
4956
|
+
'https://mainnet-rpc.areon.network',
|
4957
|
+
'https://mainnet-rpc2.areon.network',
|
4958
|
+
'https://mainnet-rpc3.areon.network',
|
4959
|
+
'https://mainnet-rpc4.areon.network',
|
4960
|
+
'https://mainnet-rpc5.areon.network'
|
4961
|
+
],
|
4936
4962
|
faucets: [],
|
4937
4963
|
nativeCurrency: { name: 'Areon', symbol: 'AREA', decimals: 18 },
|
4938
4964
|
infoURL: 'https://areon.network',
|
@@ -5501,7 +5527,7 @@ const chainArray = [
|
|
5501
5527
|
]
|
5502
5528
|
},
|
5503
5529
|
{
|
5504
|
-
name: 'Kalichain
|
5530
|
+
name: 'Kalichain Testnet',
|
5505
5531
|
chain: 'Kalichain',
|
5506
5532
|
rpc: [ 'https://rpc.kalichain.com' ],
|
5507
5533
|
faucets: [],
|
@@ -5510,6 +5536,7 @@ const chainArray = [
|
|
5510
5536
|
shortName: 'kalichain',
|
5511
5537
|
chainId: 653,
|
5512
5538
|
networkId: 653,
|
5539
|
+
icon: 'kalichain',
|
5513
5540
|
explorers: [
|
5514
5541
|
{
|
5515
5542
|
name: 'kalichain explorer',
|
@@ -6019,6 +6046,27 @@ const chainArray = [
|
|
6019
6046
|
slip44: 1,
|
6020
6047
|
explorers: []
|
6021
6048
|
},
|
6049
|
+
{
|
6050
|
+
name: 'Haven1 Testnet',
|
6051
|
+
chain: 'haven1',
|
6052
|
+
rpc: [ 'https://testnet-rpc.haven1.org' ],
|
6053
|
+
faucets: [ 'https://www.haven1.org/faucet' ],
|
6054
|
+
nativeCurrency: { name: 'Haven1', symbol: 'H1', decimals: 18 },
|
6055
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
6056
|
+
infoURL: 'https://www.haven1.org',
|
6057
|
+
shortName: 'h1',
|
6058
|
+
chainId: 810,
|
6059
|
+
networkId: 810,
|
6060
|
+
icon: 'haven1',
|
6061
|
+
explorers: [
|
6062
|
+
{
|
6063
|
+
name: 'Haven1 Explorer',
|
6064
|
+
url: 'https://testnet-explorer.haven1.org',
|
6065
|
+
icon: 'haven1',
|
6066
|
+
standard: 'EIP3091'
|
6067
|
+
}
|
6068
|
+
]
|
6069
|
+
},
|
6022
6070
|
{
|
6023
6071
|
name: 'Qitmeer',
|
6024
6072
|
chain: 'MEER',
|
@@ -11442,6 +11490,35 @@ const chainArray = [
|
|
11442
11490
|
}
|
11443
11491
|
]
|
11444
11492
|
},
|
11493
|
+
{
|
11494
|
+
name: 'Tangle Testnet',
|
11495
|
+
chain: 'Tangle Testnet',
|
11496
|
+
icon: 'tangle',
|
11497
|
+
rpc: [
|
11498
|
+
'https://testnet-rpc.tangle.tools',
|
11499
|
+
'https://testnet-rpc-archive.tangle.tools',
|
11500
|
+
'wss://testnet-rpc.tangle.tools',
|
11501
|
+
'wss://testnet-rpc-archive.tangle.tools'
|
11502
|
+
],
|
11503
|
+
faucets: [ 'https://faucet.tangle.tools' ],
|
11504
|
+
nativeCurrency: {
|
11505
|
+
name: 'Testnet Tangle Network Token',
|
11506
|
+
symbol: 'tTNT',
|
11507
|
+
decimals: 18
|
11508
|
+
},
|
11509
|
+
infoURL: 'https://docs.tangle.tools',
|
11510
|
+
shortName: 'tTangle',
|
11511
|
+
chainId: 3799,
|
11512
|
+
networkId: 3799,
|
11513
|
+
explorers: [
|
11514
|
+
{
|
11515
|
+
name: 'ttntscan',
|
11516
|
+
url: 'https://testnet-explorer.tangle.tools',
|
11517
|
+
icon: 'blockscout',
|
11518
|
+
standard: 'EIP3091'
|
11519
|
+
}
|
11520
|
+
]
|
11521
|
+
},
|
11445
11522
|
{
|
11446
11523
|
name: 'Firechain zkEVM Ghostrider',
|
11447
11524
|
title: 'Firechain zkEVM Ghostrider',
|
@@ -17748,6 +17825,26 @@ const chainArray = [
|
|
17748
17825
|
}
|
17749
17826
|
]
|
17750
17827
|
},
|
17828
|
+
{
|
17829
|
+
name: 'Deelance Mainnet',
|
17830
|
+
title: 'Deelance Network Mainnet',
|
17831
|
+
chain: 'DEE',
|
17832
|
+
rpc: [ 'https://rpc.deelance.com' ],
|
17833
|
+
faucets: [ 'https://faucet.deelance.com' ],
|
17834
|
+
nativeCurrency: { name: 'Deelance', symbol: 'DEE', decimals: 18 },
|
17835
|
+
infoURL: 'https://deelance.com',
|
17836
|
+
shortName: 'dee',
|
17837
|
+
chainId: 45510,
|
17838
|
+
networkId: 45510,
|
17839
|
+
icon: 'deelance',
|
17840
|
+
explorers: [
|
17841
|
+
{
|
17842
|
+
name: 'Deelance Mainnet Explorer',
|
17843
|
+
url: 'https://deescan.com',
|
17844
|
+
standard: 'EIP3091'
|
17845
|
+
}
|
17846
|
+
]
|
17847
|
+
},
|
17751
17848
|
{
|
17752
17849
|
name: 'Fusion Testnet',
|
17753
17850
|
chain: 'FSN',
|
@@ -22226,7 +22323,7 @@ const chainArray = [
|
|
22226
22323
|
{
|
22227
22324
|
name: 'Turkey Demo Dev',
|
22228
22325
|
chain: 'ETH',
|
22229
|
-
rpc: [ 'https://
|
22326
|
+
rpc: [ 'https://devchain-poa.huabeizhenxuan.com' ],
|
22230
22327
|
faucets: [],
|
22231
22328
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
22232
22329
|
infoURL: '',
|
@@ -24042,19 +24139,27 @@ const chainArray = [
|
|
24042
24139
|
name: 'Palm Testnet',
|
24043
24140
|
chain: 'Palm',
|
24044
24141
|
icon: 'palm',
|
24045
|
-
rpc: [
|
24142
|
+
rpc: [
|
24143
|
+
'https://palm-testnet.infura.io/v3/${INFURA_API_KEY}',
|
24144
|
+
'https://palm-testnet.public.blastapi.io'
|
24145
|
+
],
|
24046
24146
|
faucets: [],
|
24047
24147
|
nativeCurrency: { name: 'PALM', symbol: 'PALM', decimals: 18 },
|
24048
|
-
infoURL: 'https://palm.
|
24148
|
+
infoURL: 'https://palm.network',
|
24049
24149
|
shortName: 'tpalm',
|
24050
24150
|
chainId: 11297108099,
|
24051
24151
|
networkId: 11297108099,
|
24052
24152
|
slip44: 1,
|
24053
24153
|
explorers: [
|
24054
24154
|
{
|
24055
|
-
name: '
|
24056
|
-
url: 'https://
|
24155
|
+
name: 'Chainlens',
|
24156
|
+
url: 'https://testnet.palm.chainlens.com',
|
24057
24157
|
standard: 'EIP3091'
|
24158
|
+
},
|
24159
|
+
{
|
24160
|
+
name: 'Dora',
|
24161
|
+
url: 'https://www.ondora.xyz/network/palm-testnet',
|
24162
|
+
standard: 'none'
|
24058
24163
|
}
|
24059
24164
|
]
|
24060
24165
|
},
|
@@ -24062,18 +24167,26 @@ const chainArray = [
|
|
24062
24167
|
name: 'Palm',
|
24063
24168
|
chain: 'Palm',
|
24064
24169
|
icon: 'palm',
|
24065
|
-
rpc: [
|
24170
|
+
rpc: [
|
24171
|
+
'https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}',
|
24172
|
+
'https://palm-mainnet.public.blastapi.io'
|
24173
|
+
],
|
24066
24174
|
faucets: [],
|
24067
24175
|
nativeCurrency: { name: 'PALM', symbol: 'PALM', decimals: 18 },
|
24068
|
-
infoURL: 'https://palm.
|
24176
|
+
infoURL: 'https://palm.network',
|
24069
24177
|
shortName: 'palm',
|
24070
24178
|
chainId: 11297108109,
|
24071
24179
|
networkId: 11297108109,
|
24072
24180
|
explorers: [
|
24073
24181
|
{
|
24074
|
-
name: '
|
24075
|
-
url: 'https://
|
24182
|
+
name: 'Chainlens',
|
24183
|
+
url: 'https://palm.chainlens.com',
|
24076
24184
|
standard: 'EIP3091'
|
24185
|
+
},
|
24186
|
+
{
|
24187
|
+
name: 'Dora',
|
24188
|
+
url: 'https://www.ondora.xyz/network/palm',
|
24189
|
+
standard: 'none'
|
24077
24190
|
}
|
24078
24191
|
]
|
24079
24192
|
},
|