eth-chainlist 0.0.183 → 0.0.185
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 +76 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.185 (2023-07-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.184 ([609a8ac](https://github.com/poowf/eth-chainlist/commit/609a8acbfda83ffda256275aefbb44dae630ab9b))
|
9
|
+
* update chain data ([3f09eba](https://github.com/poowf/eth-chainlist/commit/3f09eba3770b7f10d0e8b5ae13d3bca43e625722))
|
10
|
+
|
11
|
+
### 0.0.184 (2023-07-14)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.183 ([8296b7b](https://github.com/poowf/eth-chainlist/commit/8296b7b89d5cc412663ef3f38b6a84b4a05c02e9))
|
17
|
+
* update chain data ([b4950e7](https://github.com/poowf/eth-chainlist/commit/b4950e780d12b2a84b353fd10bc471f7b8bcd1aa))
|
18
|
+
|
3
19
|
### 0.0.183 (2023-07-13)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -10880,14 +10880,27 @@ const chainArray = [
|
|
10880
10880
|
{
|
10881
10881
|
name: 'Base',
|
10882
10882
|
chain: 'ETH',
|
10883
|
-
rpc: [],
|
10883
|
+
rpc: [ 'https://developer-access-mainnet.base.org/' ],
|
10884
10884
|
faucets: [],
|
10885
10885
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
10886
10886
|
infoURL: 'https://base.org',
|
10887
10887
|
shortName: 'base',
|
10888
10888
|
chainId: 8453,
|
10889
10889
|
networkId: 8453,
|
10890
|
-
|
10890
|
+
icon: 'base',
|
10891
|
+
explorers: [
|
10892
|
+
{
|
10893
|
+
name: 'basescan',
|
10894
|
+
url: 'https://basescan.org',
|
10895
|
+
standard: 'none'
|
10896
|
+
},
|
10897
|
+
{
|
10898
|
+
name: 'basescout',
|
10899
|
+
url: 'https://base.blockscout.com',
|
10900
|
+
standard: 'none'
|
10901
|
+
}
|
10902
|
+
],
|
10903
|
+
status: 'active'
|
10891
10904
|
},
|
10892
10905
|
{
|
10893
10906
|
name: 'Toki Network',
|
@@ -12621,6 +12634,25 @@ const chainArray = [
|
|
12621
12634
|
}
|
12622
12635
|
]
|
12623
12636
|
},
|
12637
|
+
{
|
12638
|
+
name: 'Antofy Testnet',
|
12639
|
+
chain: 'ABN',
|
12640
|
+
icon: 'antofy',
|
12641
|
+
rpc: [ 'https://testnet-rpc.antofy.io' ],
|
12642
|
+
faucets: [ 'https://faucet.antofy.io' ],
|
12643
|
+
nativeCurrency: { name: 'Antofy', symbol: 'ABN', decimals: 18 },
|
12644
|
+
infoURL: 'https://antofy.io',
|
12645
|
+
shortName: 'ABNt',
|
12646
|
+
chainId: 23006,
|
12647
|
+
networkId: 23006,
|
12648
|
+
explorers: [
|
12649
|
+
{
|
12650
|
+
name: 'Antofy Testnet',
|
12651
|
+
url: 'https://test.antofyscan.com',
|
12652
|
+
standard: 'EIP3091'
|
12653
|
+
}
|
12654
|
+
]
|
12655
|
+
},
|
12624
12656
|
{
|
12625
12657
|
name: 'Opside Testnet',
|
12626
12658
|
chain: 'Opside',
|
@@ -13639,6 +13671,26 @@ const chainArray = [
|
|
13639
13671
|
}
|
13640
13672
|
]
|
13641
13673
|
},
|
13674
|
+
{
|
13675
|
+
name: 'Toronet Testnet',
|
13676
|
+
chain: 'Toronet',
|
13677
|
+
icon: 'toronet',
|
13678
|
+
rpc: [ 'http://testnet.toronet.org/rpc' ],
|
13679
|
+
faucets: [],
|
13680
|
+
nativeCurrency: { name: 'Toro', symbol: 'TORO', decimals: 18 },
|
13681
|
+
infoURL: 'https://toronet.org',
|
13682
|
+
shortName: 'ToronetTestnet',
|
13683
|
+
chainId: 54321,
|
13684
|
+
networkId: 54321,
|
13685
|
+
ens: { registry: '0x059C474f26D65B0458F9da10A649a7322aB02C09' },
|
13686
|
+
explorers: [
|
13687
|
+
{
|
13688
|
+
name: 'toronet_explorer',
|
13689
|
+
url: 'https://testnet.toronet.org',
|
13690
|
+
standard: 'none'
|
13691
|
+
}
|
13692
|
+
]
|
13693
|
+
},
|
13642
13694
|
{
|
13643
13695
|
name: 'Titan',
|
13644
13696
|
chain: 'ETH',
|
@@ -14319,6 +14371,26 @@ const chainArray = [
|
|
14319
14371
|
}
|
14320
14372
|
]
|
14321
14373
|
},
|
14374
|
+
{
|
14375
|
+
name: 'Toronet Mainnet',
|
14376
|
+
chain: 'Toronet',
|
14377
|
+
icon: 'toronet',
|
14378
|
+
rpc: [ 'http://toronet.org/rpc' ],
|
14379
|
+
faucets: [],
|
14380
|
+
nativeCurrency: { name: 'Toro', symbol: 'TORO', decimals: 18 },
|
14381
|
+
infoURL: 'https://toronet.org',
|
14382
|
+
shortName: 'Toronet',
|
14383
|
+
chainId: 77777,
|
14384
|
+
networkId: 77777,
|
14385
|
+
ens: { registry: '0x1f45a71f4aAD769E27c969c4359E0e250C67165c' },
|
14386
|
+
explorers: [
|
14387
|
+
{
|
14388
|
+
name: 'toronet_explorer',
|
14389
|
+
url: 'https://toronet.org/explorer',
|
14390
|
+
standard: 'none'
|
14391
|
+
}
|
14392
|
+
]
|
14393
|
+
},
|
14322
14394
|
{
|
14323
14395
|
name: 'Firenze test network',
|
14324
14396
|
chain: 'ETH',
|
@@ -14526,6 +14598,7 @@ const chainArray = [
|
|
14526
14598
|
shortName: 'basegor',
|
14527
14599
|
chainId: 84531,
|
14528
14600
|
networkId: 84531,
|
14601
|
+
icon: 'baseTestnet',
|
14529
14602
|
explorers: [
|
14530
14603
|
{
|
14531
14604
|
name: 'basescan',
|
@@ -17534,7 +17607,7 @@ const chainArray = [
|
|
17534
17607
|
{
|
17535
17608
|
name: 'Neon EVM MainNet',
|
17536
17609
|
chain: 'Solana',
|
17537
|
-
rpc: [
|
17610
|
+
rpc: [],
|
17538
17611
|
faucets: [],
|
17539
17612
|
icon: 'neon',
|
17540
17613
|
nativeCurrency: { name: 'Neon', symbol: 'NEON', decimals: 18 },
|