eth-chainlist 0.0.434 → 0.0.436
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 +124 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.436 (2024-06-25)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.435 ([70d40b2](https://github.com/poowf/eth-chainlist/commit/70d40b23bfd7a706087be0fb35af78da1fc38b07))
|
9
|
+
* update chain data ([8dc0f16](https://github.com/poowf/eth-chainlist/commit/8dc0f16352282ba8b3e48ca3bc3039f7271a5dfb))
|
10
|
+
|
11
|
+
### 0.0.435 (2024-06-23)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.434 ([e2a1fbf](https://github.com/poowf/eth-chainlist/commit/e2a1fbf7ab264f63ce67f86fb8092a3fac9c7ace))
|
17
|
+
* update chain data ([a631de4](https://github.com/poowf/eth-chainlist/commit/a631de44e89aa9654cf81a0e4ed23f39ce4bee87))
|
18
|
+
|
3
19
|
### 0.0.434 (2024-06-18)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -5221,6 +5221,18 @@ const chainArray = [
|
|
5221
5221
|
}
|
5222
5222
|
]
|
5223
5223
|
},
|
5224
|
+
{
|
5225
|
+
name: 'Shape',
|
5226
|
+
chain: 'ETH',
|
5227
|
+
rpc: [],
|
5228
|
+
faucets: [],
|
5229
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5230
|
+
infoURL: 'https://shape.us',
|
5231
|
+
shortName: 'shape',
|
5232
|
+
chainId: 360,
|
5233
|
+
networkId: 360,
|
5234
|
+
status: 'incubating'
|
5235
|
+
},
|
5224
5236
|
{
|
5225
5237
|
name: 'Theta Mainnet',
|
5226
5238
|
chain: 'Theta',
|
@@ -5880,6 +5892,18 @@ const chainArray = [
|
|
5880
5892
|
}
|
5881
5893
|
]
|
5882
5894
|
},
|
5895
|
+
{
|
5896
|
+
name: 'World Chain',
|
5897
|
+
chain: 'ETH',
|
5898
|
+
rpc: [],
|
5899
|
+
faucets: [],
|
5900
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5901
|
+
infoURL: 'https://worldcoin.org',
|
5902
|
+
shortName: 'wc',
|
5903
|
+
chainId: 480,
|
5904
|
+
networkId: 480,
|
5905
|
+
status: 'incubating'
|
5906
|
+
},
|
5883
5907
|
{
|
5884
5908
|
name: 'Rupaya',
|
5885
5909
|
chain: 'RUPX',
|
@@ -8066,6 +8090,25 @@ const chainArray = [
|
|
8066
8090
|
}
|
8067
8091
|
]
|
8068
8092
|
},
|
8093
|
+
{
|
8094
|
+
name: 'BinaryChain Mainnet',
|
8095
|
+
chain: 'BinaryChain',
|
8096
|
+
icon: 'binary',
|
8097
|
+
rpc: [ 'https://rpc.binarychain.org' ],
|
8098
|
+
faucets: [],
|
8099
|
+
nativeCurrency: { name: 'BINARY', symbol: 'BNRY', decimals: 18 },
|
8100
|
+
infoURL: 'https://binarychain.org',
|
8101
|
+
shortName: 'binary',
|
8102
|
+
chainId: 987,
|
8103
|
+
networkId: 987,
|
8104
|
+
explorers: [
|
8105
|
+
{
|
8106
|
+
name: 'BinaryChain Explorer',
|
8107
|
+
url: 'https://explorer.binarychain.org',
|
8108
|
+
standard: 'EIP3091'
|
8109
|
+
}
|
8110
|
+
]
|
8111
|
+
},
|
8069
8112
|
{
|
8070
8113
|
name: 'TOP Mainnet',
|
8071
8114
|
chain: 'TOP',
|
@@ -19471,6 +19514,25 @@ const chainArray = [
|
|
19471
19514
|
}
|
19472
19515
|
]
|
19473
19516
|
},
|
19517
|
+
{
|
19518
|
+
name: 'BinaryChain Testnet',
|
19519
|
+
chain: 'BinaryChain',
|
19520
|
+
icon: 'binary',
|
19521
|
+
rpc: [ 'https://rpctestnet.binarychain.org' ],
|
19522
|
+
faucets: [ 'https://faucet.testnet.binarychain.org' ],
|
19523
|
+
nativeCurrency: { name: 'BINARY', symbol: 'BNRY', decimals: 18 },
|
19524
|
+
infoURL: 'https://binarychain.org',
|
19525
|
+
shortName: 'binarytestnet',
|
19526
|
+
chainId: 9876,
|
19527
|
+
networkId: 9876,
|
19528
|
+
explorers: [
|
19529
|
+
{
|
19530
|
+
name: 'BinaryChain Testnet Explorer',
|
19531
|
+
url: 'https://explorer.testnet.binarychain.org',
|
19532
|
+
standard: 'EIP3091'
|
19533
|
+
}
|
19534
|
+
]
|
19535
|
+
},
|
19474
19536
|
{
|
19475
19537
|
name: 'Dogelayer Mainnet',
|
19476
19538
|
chain: 'Dogelayer',
|
@@ -23162,6 +23224,25 @@ const chainArray = [
|
|
23162
23224
|
}
|
23163
23225
|
]
|
23164
23226
|
},
|
23227
|
+
{
|
23228
|
+
name: 'Zilliqa 2 EVM proto-testnet',
|
23229
|
+
chain: 'ZIL',
|
23230
|
+
rpc: [ 'https://api.zq2-prototestnet.zilliqa.com' ],
|
23231
|
+
faucets: [ 'https://faucet.zq2-prototestnet.zilliqa.com' ],
|
23232
|
+
nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
|
23233
|
+
infoURL: 'https://www.zilliqa.com/',
|
23234
|
+
shortName: 'zq2-proto-testnet',
|
23235
|
+
chainId: 33103,
|
23236
|
+
networkId: 33103,
|
23237
|
+
icon: 'zilliqa',
|
23238
|
+
explorers: [
|
23239
|
+
{
|
23240
|
+
name: 'Zilliqa 2 EVM proto-testnet explorer',
|
23241
|
+
url: 'https://explorer.zq2-prototestnet.zilliqa.com',
|
23242
|
+
standard: 'EIP3091'
|
23243
|
+
}
|
23244
|
+
]
|
23245
|
+
},
|
23165
23246
|
{
|
23166
23247
|
name: 'Entangle Testnet',
|
23167
23248
|
chain: 'NGL',
|
@@ -25933,7 +26014,8 @@ const chainArray = [
|
|
25933
26014
|
chain: 'Berachain bArtio',
|
25934
26015
|
rpc: [
|
25935
26016
|
'https://bartio.rpc.berachain.com',
|
25936
|
-
'https://bera-testnet.nodeinfra.com'
|
26017
|
+
'https://bera-testnet.nodeinfra.com',
|
26018
|
+
'https://bartio.rpc.b-harvest.io'
|
25937
26019
|
],
|
25938
26020
|
faucets: [ 'https://bartio.faucet.berachain.com' ],
|
25939
26021
|
nativeCurrency: { name: 'BERA Token', symbol: 'BERA', decimals: 18 },
|
@@ -29443,6 +29525,26 @@ const chainArray = [
|
|
29443
29525
|
}
|
29444
29526
|
]
|
29445
29527
|
},
|
29528
|
+
{
|
29529
|
+
name: 'Autonomys Testnet Nova Domain',
|
29530
|
+
chain: 'TATC',
|
29531
|
+
rpc: [ 'https://nova-0.gemini-3h.subspace.network/ws' ],
|
29532
|
+
faucets: [],
|
29533
|
+
nativeCurrency: { name: 'Test Auto Coin', symbol: 'TATC', decimals: 18 },
|
29534
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
29535
|
+
infoURL: 'https://www.autonomys.net',
|
29536
|
+
shortName: 'ATN',
|
29537
|
+
chainId: 490000,
|
29538
|
+
networkId: 490000,
|
29539
|
+
explorers: [
|
29540
|
+
{
|
29541
|
+
name: 'astral',
|
29542
|
+
url: 'https://nova.subspace.network',
|
29543
|
+
icon: 'blockscout',
|
29544
|
+
standard: 'EIP3091'
|
29545
|
+
}
|
29546
|
+
]
|
29547
|
+
},
|
29446
29548
|
{
|
29447
29549
|
name: 'Playdapp Network',
|
29448
29550
|
chain: 'PDA',
|
@@ -30706,6 +30808,27 @@ const chainArray = [
|
|
30706
30808
|
}
|
30707
30809
|
]
|
30708
30810
|
},
|
30811
|
+
{
|
30812
|
+
name: 'Sharecle Mainnet',
|
30813
|
+
chain: 'SHARECLE',
|
30814
|
+
icon: 'sharecle',
|
30815
|
+
rpc: [ 'https://mainnet.sharecle.com' ],
|
30816
|
+
faucets: [],
|
30817
|
+
nativeCurrency: { name: 'SHARECLE COIN', symbol: 'SHR', decimals: 18 },
|
30818
|
+
infoURL: 'https://sharecle.com/',
|
30819
|
+
shortName: 'shr',
|
30820
|
+
chainId: 1234567,
|
30821
|
+
networkId: 1234567,
|
30822
|
+
slip44: 1,
|
30823
|
+
explorers: [
|
30824
|
+
{
|
30825
|
+
name: 'Etherscan',
|
30826
|
+
url: 'https://etherscan.io',
|
30827
|
+
standard: 'none',
|
30828
|
+
icon: 'sharecle'
|
30829
|
+
}
|
30830
|
+
]
|
30831
|
+
},
|
30709
30832
|
{
|
30710
30833
|
name: 'zKatana',
|
30711
30834
|
shortName: 'azktn',
|