eth-chainlist 0.0.418 → 0.0.420
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 +87 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.420 (2024-06-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.419 ([99fe382](https://github.com/poowf/eth-chainlist/commit/99fe38223ea091490d8a52bc21db7b204f1ca35c))
|
9
|
+
* update chain data ([fce0ceb](https://github.com/poowf/eth-chainlist/commit/fce0cebefe7450bf0248272cfd88eb4725c7ad85))
|
10
|
+
|
11
|
+
### 0.0.419 (2024-06-02)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.418 ([4f09a33](https://github.com/poowf/eth-chainlist/commit/4f09a338fd029c02fc8e9414809050fa9fd77c9a))
|
17
|
+
* update chain data ([27aff3f](https://github.com/poowf/eth-chainlist/commit/27aff3f201ca80d7680025b462db48646c1bfb77))
|
18
|
+
|
3
19
|
### 0.0.418 (2024-06-01)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -14641,8 +14641,8 @@ const chainArray = [
|
|
14641
14641
|
{
|
14642
14642
|
name: 'Nahmii 3 Mainnet',
|
14643
14643
|
chain: 'Nahmii',
|
14644
|
-
rpc: [],
|
14645
|
-
status: '
|
14644
|
+
rpc: [ 'https://rpc.n3.nahmii.io' ],
|
14645
|
+
status: 'active',
|
14646
14646
|
faucets: [],
|
14647
14647
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
14648
14648
|
infoURL: 'https://nahmii.io',
|
@@ -14650,18 +14650,27 @@ const chainArray = [
|
|
14650
14650
|
chainId: 4061,
|
14651
14651
|
networkId: 4061,
|
14652
14652
|
icon: 'nahmii',
|
14653
|
+
explorers: [
|
14654
|
+
{
|
14655
|
+
name: 'Nahmii 3 Mainnet Explorer',
|
14656
|
+
url: 'https://explorer.nahmii.io',
|
14657
|
+
icon: 'nahmii',
|
14658
|
+
standard: 'EIP3091'
|
14659
|
+
}
|
14660
|
+
],
|
14653
14661
|
parent: {
|
14654
14662
|
type: 'L2',
|
14655
14663
|
chain: 'eip155-1',
|
14656
|
-
bridges: [ { url: 'https://
|
14664
|
+
bridges: [ { url: 'https://accounts.nahmii.io' } ]
|
14657
14665
|
}
|
14658
14666
|
},
|
14659
14667
|
{
|
14660
14668
|
name: 'Nahmii 3 Testnet',
|
14661
14669
|
chain: 'Nahmii',
|
14662
|
-
rpc: [ 'https://
|
14670
|
+
rpc: [ 'https://rpc.testnet.nahmii.io' ],
|
14671
|
+
status: 'active',
|
14663
14672
|
faucets: [],
|
14664
|
-
nativeCurrency: { name: '
|
14673
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
14665
14674
|
infoURL: 'https://nahmii.io',
|
14666
14675
|
shortName: 'Nahmii3Testnet',
|
14667
14676
|
chainId: 4062,
|
@@ -14671,15 +14680,15 @@ const chainArray = [
|
|
14671
14680
|
explorers: [
|
14672
14681
|
{
|
14673
14682
|
name: 'Nahmii 3 Testnet Explorer',
|
14674
|
-
url: 'https://explorer.testnet.
|
14683
|
+
url: 'https://explorer.testnet.nahmii.io',
|
14675
14684
|
icon: 'nahmii',
|
14676
14685
|
standard: 'EIP3091'
|
14677
14686
|
}
|
14678
14687
|
],
|
14679
14688
|
parent: {
|
14680
14689
|
type: 'L2',
|
14681
|
-
chain: 'eip155-
|
14682
|
-
bridges: [ { url: 'https://
|
14690
|
+
chain: 'eip155-11155111',
|
14691
|
+
bridges: [ { url: 'https://accounts.testnet.nahmii.io' } ]
|
14683
14692
|
}
|
14684
14693
|
},
|
14685
14694
|
{
|
@@ -15856,9 +15865,10 @@ const chainArray = [
|
|
15856
15865
|
]
|
15857
15866
|
},
|
15858
15867
|
{
|
15859
|
-
name: 'Nahmii Mainnet',
|
15868
|
+
name: 'Nahmii 2 Mainnet',
|
15860
15869
|
chain: 'Nahmii',
|
15861
15870
|
rpc: [ 'https://l2.nahmii.io' ],
|
15871
|
+
status: 'active',
|
15862
15872
|
faucets: [],
|
15863
15873
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15864
15874
|
infoURL: 'https://nahmii.io',
|
@@ -15868,8 +15878,8 @@ const chainArray = [
|
|
15868
15878
|
icon: 'nahmii',
|
15869
15879
|
explorers: [
|
15870
15880
|
{
|
15871
|
-
name: 'Nahmii
|
15872
|
-
url: 'https://explorer.nahmii.io',
|
15881
|
+
name: 'Nahmii 2 Mainnet Explorer',
|
15882
|
+
url: 'https://explorer.n2.nahmii.io',
|
15873
15883
|
icon: 'nahmii',
|
15874
15884
|
standard: 'EIP3091'
|
15875
15885
|
}
|
@@ -15877,13 +15887,14 @@ const chainArray = [
|
|
15877
15887
|
parent: {
|
15878
15888
|
type: 'L2',
|
15879
15889
|
chain: 'eip155-1',
|
15880
|
-
bridges: [ { url: 'https://bridge.nahmii.io' } ]
|
15890
|
+
bridges: [ { url: 'https://n2.bridge.nahmii.io' } ]
|
15881
15891
|
}
|
15882
15892
|
},
|
15883
15893
|
{
|
15884
|
-
name: 'Nahmii Testnet',
|
15894
|
+
name: 'Nahmii 2 Testnet',
|
15885
15895
|
chain: 'Nahmii',
|
15886
15896
|
rpc: [ 'https://l2.testnet.nahmii.io' ],
|
15897
|
+
status: 'deprecated',
|
15887
15898
|
faucets: [],
|
15888
15899
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15889
15900
|
infoURL: 'https://nahmii.io',
|
@@ -16363,6 +16374,27 @@ const chainArray = [
|
|
16363
16374
|
}
|
16364
16375
|
]
|
16365
16376
|
},
|
16377
|
+
{
|
16378
|
+
name: 'Aura Mainnet',
|
16379
|
+
chain: 'Aura',
|
16380
|
+
rpc: [ 'https://jsonrpc.aura.network' ],
|
16381
|
+
faucets: [],
|
16382
|
+
nativeCurrency: { name: 'Aura', symbol: 'AURA', decimals: 18 },
|
16383
|
+
infoURL: 'https://aura.network',
|
16384
|
+
shortName: 'aura',
|
16385
|
+
chainId: 6322,
|
16386
|
+
networkId: 6322,
|
16387
|
+
slip44: 1,
|
16388
|
+
icon: 'aura',
|
16389
|
+
explorers: [
|
16390
|
+
{
|
16391
|
+
name: 'Aurascan Explorer',
|
16392
|
+
url: 'https://aurascan.io',
|
16393
|
+
standard: 'none',
|
16394
|
+
icon: 'aura'
|
16395
|
+
}
|
16396
|
+
]
|
16397
|
+
},
|
16366
16398
|
{
|
16367
16399
|
name: 'Digit Soul Smart Chain',
|
16368
16400
|
chain: 'DGS',
|
@@ -29400,6 +29432,48 @@ const chainArray = [
|
|
29400
29432
|
}
|
29401
29433
|
]
|
29402
29434
|
},
|
29435
|
+
{
|
29436
|
+
name: 'Forma',
|
29437
|
+
chain: 'Forma',
|
29438
|
+
rpc: [ 'https://rpc.forma.art' ],
|
29439
|
+
faucets: [],
|
29440
|
+
nativeCurrency: { name: 'TIA', symbol: 'TIA', decimals: 18 },
|
29441
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
29442
|
+
infoURL: 'https://forma.art',
|
29443
|
+
shortName: 'forma',
|
29444
|
+
chainId: 984122,
|
29445
|
+
networkId: 984122,
|
29446
|
+
icon: 'forma',
|
29447
|
+
explorers: [
|
29448
|
+
{
|
29449
|
+
name: 'blockscout',
|
29450
|
+
url: 'https://explorer.forma.art',
|
29451
|
+
icon: 'blockscout',
|
29452
|
+
standard: 'EIP3091'
|
29453
|
+
}
|
29454
|
+
]
|
29455
|
+
},
|
29456
|
+
{
|
29457
|
+
name: 'Forma Sketchpad',
|
29458
|
+
chain: 'Forma',
|
29459
|
+
rpc: [ 'https://rpc.sketchpad-1.forma.art' ],
|
29460
|
+
faucets: [],
|
29461
|
+
nativeCurrency: { name: 'TIA', symbol: 'TIA', decimals: 18 },
|
29462
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
29463
|
+
infoURL: 'https://forma.art',
|
29464
|
+
shortName: 'sketchpad',
|
29465
|
+
chainId: 984123,
|
29466
|
+
networkId: 984123,
|
29467
|
+
icon: 'forma',
|
29468
|
+
explorers: [
|
29469
|
+
{
|
29470
|
+
name: 'blockscout',
|
29471
|
+
url: 'https://explorer.sketchpad-1.forma.art',
|
29472
|
+
icon: 'blockscout',
|
29473
|
+
standard: 'EIP3091'
|
29474
|
+
}
|
29475
|
+
]
|
29476
|
+
},
|
29403
29477
|
{
|
29404
29478
|
name: 'Ecrox Chain Mainnet',
|
29405
29479
|
chain: 'Ecrox Chain',
|