eth-chainlist 0.0.498 → 0.0.500
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +113 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.500 (2024-09-23)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.499 ([dfb8a70](https://github.com/poowf/eth-chainlist/commit/dfb8a70b81399c684821e17722799092382c8e07))
|
9
|
+
* update chain data ([c1d7dfb](https://github.com/poowf/eth-chainlist/commit/c1d7dfbfd68a8f9c77be5a048a4425c114465ad7))
|
10
|
+
|
11
|
+
### 0.0.499 (2024-09-21)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.498 ([b189a44](https://github.com/poowf/eth-chainlist/commit/b189a44ddb803d92a18c0eb666b26f62466ab218))
|
17
|
+
* update chain data ([3ebbd85](https://github.com/poowf/eth-chainlist/commit/3ebbd8542a84e7a3817e9973e33be3ef280b34cc))
|
18
|
+
|
3
19
|
### 0.0.498 (2024-09-20)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -8777,6 +8777,33 @@ const chainArray = [
|
|
8777
8777
|
}
|
8778
8778
|
]
|
8779
8779
|
},
|
8780
|
+
{
|
8781
|
+
name: 'LemonChainTestnet',
|
8782
|
+
chain: 'tLEMX',
|
8783
|
+
rpc: [
|
8784
|
+
'https://rpc.testnet.lemonchain.io',
|
8785
|
+
'https://rpc.testnet.allthingslemon.io'
|
8786
|
+
],
|
8787
|
+
faucets: [],
|
8788
|
+
nativeCurrency: { name: 'testnet LEMX', symbol: 'tLEMX', decimals: 18 },
|
8789
|
+
infoURL: 'https://dapp.allthingslemon.io/home',
|
8790
|
+
shortName: 'tlemx',
|
8791
|
+
chainId: 1005,
|
8792
|
+
networkId: 1005,
|
8793
|
+
explorers: []
|
8794
|
+
},
|
8795
|
+
{
|
8796
|
+
name: 'LemonChain',
|
8797
|
+
chain: 'LEMX',
|
8798
|
+
rpc: [ 'https://rpc.lemonchain.io', 'https://rpc.allthingslemon.io' ],
|
8799
|
+
faucets: [],
|
8800
|
+
nativeCurrency: { name: 'LEMX', symbol: 'LEMX', decimals: 18 },
|
8801
|
+
infoURL: 'https://dapp.allthingslemon.io/home',
|
8802
|
+
shortName: 'lemx',
|
8803
|
+
chainId: 1006,
|
8804
|
+
networkId: 1006,
|
8805
|
+
explorers: []
|
8806
|
+
},
|
8780
8807
|
{
|
8781
8808
|
name: 'Newton Testnet',
|
8782
8809
|
chain: 'NEW',
|
@@ -11182,7 +11209,7 @@ const chainArray = [
|
|
11182
11209
|
{
|
11183
11210
|
name: 'Gravity Alpha Mainnet',
|
11184
11211
|
chain: 'Gravity',
|
11185
|
-
rpc: [ 'https://rpc.gravity.xyz' ],
|
11212
|
+
rpc: [ 'https://rpc.gravity.xyz', 'https://rpc.ankr.com/gravity' ],
|
11186
11213
|
faucets: [],
|
11187
11214
|
nativeCurrency: { name: 'Gravity', symbol: 'G', decimals: 18 },
|
11188
11215
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP1108' } ],
|
@@ -27349,7 +27376,9 @@ const chainArray = [
|
|
27349
27376
|
'https://rpc.sepolia.linea.build',
|
27350
27377
|
'wss://rpc.sepolia.linea.build',
|
27351
27378
|
'https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}',
|
27352
|
-
'wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}'
|
27379
|
+
'wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}',
|
27380
|
+
'https://linea-sepolia-rpc.publicnode.com',
|
27381
|
+
'wss://linea-sepolia-rpc.publicnode.com'
|
27353
27382
|
],
|
27354
27383
|
faucets: [],
|
27355
27384
|
nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
|
@@ -27388,7 +27417,9 @@ const chainArray = [
|
|
27388
27417
|
'https://rpc.linea.build',
|
27389
27418
|
'wss://rpc.linea.build',
|
27390
27419
|
'https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}',
|
27391
|
-
'wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}'
|
27420
|
+
'wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}',
|
27421
|
+
'https://linea-rpc.publicnode.com',
|
27422
|
+
'wss://linea-rpc.publicnode.com'
|
27392
27423
|
],
|
27393
27424
|
faucets: [],
|
27394
27425
|
nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
|
@@ -28986,7 +29017,8 @@ const chainArray = [
|
|
28986
29017
|
'https://blast.din.dev/rpc',
|
28987
29018
|
'https://blastl2-mainnet.public.blastapi.io',
|
28988
29019
|
'https://blast.blockpi.network/v1/rpc/public',
|
28989
|
-
'https://blast-rpc.publicnode.com'
|
29020
|
+
'https://blast-rpc.publicnode.com',
|
29021
|
+
'wss://blast-rpc.publicnode.com'
|
28990
29022
|
],
|
28991
29023
|
faucets: [],
|
28992
29024
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -30489,8 +30521,9 @@ const chainArray = [
|
|
30489
30521
|
title: 're.al Real-World Assets network',
|
30490
30522
|
chain: 're.al',
|
30491
30523
|
rpc: [
|
30524
|
+
'https://rpc.realforreal.gelato.digital',
|
30525
|
+
'wss://ws.realforreal.gelato.digital',
|
30492
30526
|
'https://tangible-real.gateway.tenderly.co',
|
30493
|
-
'wss://tangible-real.gateway.tenderly.co',
|
30494
30527
|
'https://real.drpc.org',
|
30495
30528
|
'wss://real.drpc.org'
|
30496
30529
|
],
|
@@ -30722,6 +30755,25 @@ const chainArray = [
|
|
30722
30755
|
}
|
30723
30756
|
]
|
30724
30757
|
},
|
30758
|
+
{
|
30759
|
+
name: 'CryptoX',
|
30760
|
+
chain: 'XCOIN',
|
30761
|
+
rpc: [ 'https://rpc-xcoin.cryptoxnetwork.io' ],
|
30762
|
+
faucets: [],
|
30763
|
+
nativeCurrency: { name: 'XCOIN', symbol: 'XCOIN', decimals: 18 },
|
30764
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
30765
|
+
infoURL: 'https://cryptoxnetwork.io',
|
30766
|
+
shortName: 'cryptox',
|
30767
|
+
chainId: 158245,
|
30768
|
+
networkId: 158245,
|
30769
|
+
explorers: [
|
30770
|
+
{
|
30771
|
+
name: 'CryptoX explorer',
|
30772
|
+
url: 'https://cryptoxscan.io',
|
30773
|
+
standard: 'EIP3091'
|
30774
|
+
}
|
30775
|
+
]
|
30776
|
+
},
|
30725
30777
|
{
|
30726
30778
|
name: 'PlayFi Mainnet',
|
30727
30779
|
chain: 'PLAY',
|
@@ -30759,7 +30811,11 @@ const chainArray = [
|
|
30759
30811
|
chain: 'ETH',
|
30760
30812
|
status: 'active',
|
30761
30813
|
icon: 'taiko',
|
30762
|
-
rpc: [
|
30814
|
+
rpc: [
|
30815
|
+
'https://rpc.mainnet.taiko.xyz',
|
30816
|
+
'https://taiko-rpc.publicnode.com',
|
30817
|
+
'wss://taiko-rpc.publicnode.com'
|
30818
|
+
],
|
30763
30819
|
faucets: [],
|
30764
30820
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
30765
30821
|
infoURL: 'https://taiko.xyz',
|
@@ -30885,7 +30941,12 @@ const chainArray = [
|
|
30885
30941
|
chain: 'ETH',
|
30886
30942
|
status: 'active',
|
30887
30943
|
icon: 'taiko',
|
30888
|
-
rpc: [
|
30944
|
+
rpc: [
|
30945
|
+
'https://rpc.hekla.taiko.xyz',
|
30946
|
+
'wss://ws.hekla.taiko.xyz',
|
30947
|
+
'https://taiko-hekla-rpc.publicnode.com',
|
30948
|
+
'wss://taiko-hekla-rpc.publicnode.com'
|
30949
|
+
],
|
30889
30950
|
faucets: [],
|
30890
30951
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
30891
30952
|
infoURL: 'https://taiko.xyz',
|
@@ -32901,7 +32962,9 @@ const chainArray = [
|
|
32901
32962
|
'https://sepolia-rpc.scroll.io',
|
32902
32963
|
'https://rpc.ankr.com/scroll_sepolia_testnet',
|
32903
32964
|
'https://scroll-sepolia.chainstacklabs.com',
|
32904
|
-
'https://scroll-testnet-public.unifra.io'
|
32965
|
+
'https://scroll-testnet-public.unifra.io',
|
32966
|
+
'https://scroll-sepolia-rpc.publicnode.com',
|
32967
|
+
'wss://scroll-sepolia-rpc.publicnode.com'
|
32905
32968
|
],
|
32906
32969
|
faucets: [],
|
32907
32970
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -32930,7 +32993,9 @@ const chainArray = [
|
|
32930
32993
|
rpc: [
|
32931
32994
|
'https://rpc.scroll.io',
|
32932
32995
|
'https://rpc.ankr.com/scroll',
|
32933
|
-
'https://scroll-mainnet.chainstacklabs.com'
|
32996
|
+
'https://scroll-mainnet.chainstacklabs.com',
|
32997
|
+
'https://scroll-rpc.publicnode.com',
|
32998
|
+
'wss://scroll-rpc.publicnode.com'
|
32934
32999
|
],
|
32935
33000
|
faucets: [],
|
32936
33001
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -33701,6 +33766,26 @@ const chainArray = [
|
|
33701
33766
|
bridges: [ { url: 'https://goerli.portal.zklink.io' } ]
|
33702
33767
|
}
|
33703
33768
|
},
|
33769
|
+
{
|
33770
|
+
name: 'SG Verse Mainnet',
|
33771
|
+
chain: 'SG Verse',
|
33772
|
+
icon: 'sg_verse',
|
33773
|
+
rpc: [ 'https://rpc.sgverse.net/' ],
|
33774
|
+
faucets: [],
|
33775
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
33776
|
+
infoURL: '',
|
33777
|
+
shortName: 'SGV',
|
33778
|
+
chainId: 812397,
|
33779
|
+
networkId: 812397,
|
33780
|
+
explorers: [
|
33781
|
+
{
|
33782
|
+
name: 'SG Verse Explorer',
|
33783
|
+
url: 'https://explorer.sgverse.net',
|
33784
|
+
standard: 'EIP3091'
|
33785
|
+
}
|
33786
|
+
],
|
33787
|
+
parent: { type: 'L2', chain: 'eip155-248' }
|
33788
|
+
},
|
33704
33789
|
{
|
33705
33790
|
name: 'TSC Testnet',
|
33706
33791
|
chain: 'Trust Smart Chain Testnet',
|
@@ -34381,6 +34466,25 @@ const chainArray = [
|
|
34381
34466
|
}
|
34382
34467
|
]
|
34383
34468
|
},
|
34469
|
+
{
|
34470
|
+
name: 'Automata Orbit Testnet',
|
34471
|
+
chain: 'Automata Orbit Testnet',
|
34472
|
+
rpc: [ 'https://rpc-orbit-testnet.ata.network' ],
|
34473
|
+
faucets: [],
|
34474
|
+
nativeCurrency: { name: 'ATA', symbol: 'ATA', decimals: 18 },
|
34475
|
+
infoURL: 'https://ata.network',
|
34476
|
+
shortName: 'automataorbittestnet',
|
34477
|
+
chainId: 1398244,
|
34478
|
+
networkId: 1398244,
|
34479
|
+
icon: 'automata',
|
34480
|
+
explorers: [
|
34481
|
+
{
|
34482
|
+
name: 'Automata Orbit Testnet Explorer',
|
34483
|
+
url: 'https://automata-orbit-testnet-explorer.alt.technology',
|
34484
|
+
standard: 'EIP3091'
|
34485
|
+
}
|
34486
|
+
]
|
34487
|
+
},
|
34384
34488
|
{
|
34385
34489
|
name: 'PlayFi Albireo Testnet',
|
34386
34490
|
chain: 'ETH',
|