eth-chainlist 0.0.403 → 0.0.404
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 +166 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.404 (2024-05-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.403 ([0177885](https://github.com/poowf/eth-chainlist/commit/01778854922daae703667ea192adb67d9ae1a1a4))
|
9
|
+
* update chain data ([ecd1445](https://github.com/poowf/eth-chainlist/commit/ecd1445a6cbb9523190296dd6fd6c3bbfa1cceac))
|
10
|
+
|
3
11
|
### 0.0.403 (2024-05-13)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -3368,6 +3368,25 @@ const chainArray = [
|
|
3368
3368
|
networkId: 172,
|
3369
3369
|
slip44: 1
|
3370
3370
|
},
|
3371
|
+
{
|
3372
|
+
name: 'DC Mainnet',
|
3373
|
+
chain: 'dcchain',
|
3374
|
+
icon: 'dcchain',
|
3375
|
+
rpc: [ 'https://rpc.dcnetio.cloud', 'wss://ws.dcnetio.cloud' ],
|
3376
|
+
faucets: [],
|
3377
|
+
nativeCurrency: { name: 'DC Native Token', symbol: 'DCT', decimals: 18 },
|
3378
|
+
infoURL: 'https://www.dcnetio.cloud',
|
3379
|
+
shortName: 'dcchain',
|
3380
|
+
chainId: 176,
|
3381
|
+
networkId: 176,
|
3382
|
+
explorers: [
|
3383
|
+
{
|
3384
|
+
name: 'dcscan',
|
3385
|
+
url: 'https://exp.dcnetio.cloud',
|
3386
|
+
standard: 'none'
|
3387
|
+
}
|
3388
|
+
]
|
3389
|
+
},
|
3371
3390
|
{
|
3372
3391
|
name: 'AME Chain Mainnet',
|
3373
3392
|
chain: 'AME',
|
@@ -3386,6 +3405,26 @@ const chainArray = [
|
|
3386
3405
|
}
|
3387
3406
|
]
|
3388
3407
|
},
|
3408
|
+
{
|
3409
|
+
name: 'Mint Mainnet',
|
3410
|
+
chain: 'ETH',
|
3411
|
+
rpc: [ 'https://rpc.mintchain.io' ],
|
3412
|
+
faucets: [],
|
3413
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
3414
|
+
infoURL: 'https://www.mintchain.io',
|
3415
|
+
shortName: 'mint',
|
3416
|
+
chainId: 185,
|
3417
|
+
networkId: 185,
|
3418
|
+
icon: 'mint',
|
3419
|
+
explorers: [
|
3420
|
+
{
|
3421
|
+
name: 'blockscout',
|
3422
|
+
url: 'https://explorer.mintchain.io',
|
3423
|
+
icon: 'mint',
|
3424
|
+
standard: 'EIP3091'
|
3425
|
+
}
|
3426
|
+
]
|
3427
|
+
},
|
3389
3428
|
{
|
3390
3429
|
name: 'Seele Mainnet',
|
3391
3430
|
chain: 'Seele',
|
@@ -21370,6 +21409,44 @@ const chainArray = [
|
|
21370
21409
|
slip44: 1,
|
21371
21410
|
explorers: []
|
21372
21411
|
},
|
21412
|
+
{
|
21413
|
+
name: 'Xchain Mainnet',
|
21414
|
+
chain: 'Xchain',
|
21415
|
+
icon: 'intd',
|
21416
|
+
rpc: [ 'https://rpc.xchainscan.com' ],
|
21417
|
+
faucets: [],
|
21418
|
+
nativeCurrency: { name: 'Intdestcoin', symbol: 'INTD', decimals: 18 },
|
21419
|
+
infoURL: 'https://xchainscan.com',
|
21420
|
+
shortName: 'INTD',
|
21421
|
+
chainId: 31753,
|
21422
|
+
networkId: 31753,
|
21423
|
+
explorers: [
|
21424
|
+
{
|
21425
|
+
name: 'Xchain Mainnet Explorer',
|
21426
|
+
url: 'https://xchainscan.com',
|
21427
|
+
standard: 'EIP3091'
|
21428
|
+
}
|
21429
|
+
]
|
21430
|
+
},
|
21431
|
+
{
|
21432
|
+
name: 'Xchain Testnet',
|
21433
|
+
chain: 'Xchain',
|
21434
|
+
icon: 'intd',
|
21435
|
+
rpc: [ 'https://rpc.xchaintest.net' ],
|
21436
|
+
faucets: [ 'https://xchainfaucet.net' ],
|
21437
|
+
nativeCurrency: { name: 'Intdestcoin Testnet', symbol: 'INTD', decimals: 18 },
|
21438
|
+
infoURL: 'https://xchaintest.net',
|
21439
|
+
shortName: 'tINTD',
|
21440
|
+
chainId: 31754,
|
21441
|
+
networkId: 31754,
|
21442
|
+
explorers: [
|
21443
|
+
{
|
21444
|
+
name: 'Xchain Testnet Explorer',
|
21445
|
+
url: 'https://xchaintest.net',
|
21446
|
+
standard: 'EIP3091'
|
21447
|
+
}
|
21448
|
+
]
|
21449
|
+
},
|
21373
21450
|
{
|
21374
21451
|
name: 'W3Gamez Holesky Testnet',
|
21375
21452
|
chain: 'ETH',
|
@@ -23350,6 +23427,26 @@ const chainArray = [
|
|
23350
23427
|
}
|
23351
23428
|
]
|
23352
23429
|
},
|
23430
|
+
{
|
23431
|
+
name: 'PLYR TAU Testnet',
|
23432
|
+
chain: 'PLYR',
|
23433
|
+
icon: 'plyr',
|
23434
|
+
rpc: [ 'https://subnets.avax.network/plyr/testnet/rpc' ],
|
23435
|
+
faucets: [ 'https://faucet.avax.network/?subnet=plyr' ],
|
23436
|
+
nativeCurrency: { name: 'PLYR', symbol: 'PLYR', decimals: 18 },
|
23437
|
+
infoURL: 'https://plyr.network',
|
23438
|
+
shortName: 'plyr-tau-testnet',
|
23439
|
+
chainId: 62831,
|
23440
|
+
networkId: 62831,
|
23441
|
+
slip44: 1,
|
23442
|
+
explorers: [
|
23443
|
+
{
|
23444
|
+
name: 'Avalanche Subnet Testnet Explorer',
|
23445
|
+
url: 'https://subnets-test.avax.network/plyr',
|
23446
|
+
standard: 'EIP3091'
|
23447
|
+
}
|
23448
|
+
]
|
23449
|
+
},
|
23353
23450
|
{
|
23354
23451
|
name: 'eCredits Mainnet',
|
23355
23452
|
chain: 'ECS',
|
@@ -24480,6 +24577,24 @@ const chainArray = [
|
|
24480
24577
|
}
|
24481
24578
|
]
|
24482
24579
|
},
|
24580
|
+
{
|
24581
|
+
name: 'Inoai Network',
|
24582
|
+
chain: 'INOAI',
|
24583
|
+
faucets: [],
|
24584
|
+
rpc: [ 'https://inoai-network.com' ],
|
24585
|
+
nativeCurrency: { name: 'Inoai', symbol: 'INO', decimals: 18 },
|
24586
|
+
infoURL: 'https://inoai.info',
|
24587
|
+
shortName: 'INOAI',
|
24588
|
+
chainId: 88559,
|
24589
|
+
networkId: 88559,
|
24590
|
+
explorers: [
|
24591
|
+
{
|
24592
|
+
name: 'inoai live',
|
24593
|
+
url: 'https://inoai.live',
|
24594
|
+
standard: 'none'
|
24595
|
+
}
|
24596
|
+
]
|
24597
|
+
},
|
24483
24598
|
{
|
24484
24599
|
name: 'Unit Zero Testnet',
|
24485
24600
|
chain: 'Unit Zero',
|
@@ -25642,6 +25757,25 @@ const chainArray = [
|
|
25642
25757
|
explorers: [],
|
25643
25758
|
status: 'incubating'
|
25644
25759
|
},
|
25760
|
+
{
|
25761
|
+
name: 'Eclat Mainnet',
|
25762
|
+
chain: 'Eclat',
|
25763
|
+
icon: 'eclat',
|
25764
|
+
rpc: [ 'https://mainnet-rpc.eclatscan.com' ],
|
25765
|
+
faucets: [],
|
25766
|
+
nativeCurrency: { name: 'Eclat', symbol: 'ECLAT', decimals: 18 },
|
25767
|
+
infoURL: 'https://eclatscan.com',
|
25768
|
+
shortName: 'ECLAT',
|
25769
|
+
chainId: 165279,
|
25770
|
+
networkId: 165279,
|
25771
|
+
explorers: [
|
25772
|
+
{
|
25773
|
+
name: 'Eclat Mainnet Explorer',
|
25774
|
+
url: 'https://eclatscan.com',
|
25775
|
+
standard: 'EIP3091'
|
25776
|
+
}
|
25777
|
+
]
|
25778
|
+
},
|
25645
25779
|
{
|
25646
25780
|
name: 'Taiko Mainnet',
|
25647
25781
|
chain: 'ETH',
|
@@ -26466,6 +26600,25 @@ const chainArray = [
|
|
26466
26600
|
}
|
26467
26601
|
]
|
26468
26602
|
},
|
26603
|
+
{
|
26604
|
+
name: 'Eclat Testnet',
|
26605
|
+
chain: 'Eclat',
|
26606
|
+
icon: 'eclat',
|
26607
|
+
rpc: [ 'https://testnet-rpc.eclatscan.com' ],
|
26608
|
+
faucets: [ 'https://faucet.eclatscan.com' ],
|
26609
|
+
nativeCurrency: { name: 'Eclat Testnet', symbol: 'ECLAT', decimals: 18 },
|
26610
|
+
infoURL: 'https://testnet-explorer.eclatscan.com',
|
26611
|
+
shortName: 'tECLAT',
|
26612
|
+
chainId: 262371,
|
26613
|
+
networkId: 262371,
|
26614
|
+
explorers: [
|
26615
|
+
{
|
26616
|
+
name: 'Eclat Testnet Explorer',
|
26617
|
+
url: 'https://testnet-explorer.eclatscan.com',
|
26618
|
+
standard: 'EIP3091'
|
26619
|
+
}
|
26620
|
+
]
|
26621
|
+
},
|
26469
26622
|
{
|
26470
26623
|
name: 'Gear Zero Network Testnet',
|
26471
26624
|
chain: 'GearZero',
|
@@ -28477,6 +28630,19 @@ const chainArray = [
|
|
28477
28630
|
}
|
28478
28631
|
]
|
28479
28632
|
},
|
28633
|
+
{
|
28634
|
+
name: 'Automata Testnet',
|
28635
|
+
chain: 'Automata Testnet',
|
28636
|
+
rpc: [],
|
28637
|
+
faucets: [],
|
28638
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
28639
|
+
infoURL: 'https://ata.network',
|
28640
|
+
shortName: 'automatatest',
|
28641
|
+
chainId: 1398243,
|
28642
|
+
networkId: 1398243,
|
28643
|
+
icon: 'automata',
|
28644
|
+
explorers: []
|
28645
|
+
},
|
28480
28646
|
{
|
28481
28647
|
name: 'PlayFi Albireo Testnet',
|
28482
28648
|
chain: 'ETH',
|