eth-chainlist 0.0.415 → 0.0.417
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 +236 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.417 (2024-05-31)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.416 ([369dfe5](https://github.com/poowf/eth-chainlist/commit/369dfe512acc2230718893b82d157e0f2885e0bd))
|
9
|
+
* update chain data ([97f181c](https://github.com/poowf/eth-chainlist/commit/97f181cc03bb58fe95bfc25fc2b12ee8e2e1860f))
|
10
|
+
|
11
|
+
### 0.0.416 (2024-05-30)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.415 ([5eef2e1](https://github.com/poowf/eth-chainlist/commit/5eef2e1fc56dc35e60be1a744b2301ffad3fb3a6))
|
17
|
+
* update chain data ([21881da](https://github.com/poowf/eth-chainlist/commit/21881da46e29ee42e15eb2cf00a9c4137a44b720))
|
18
|
+
|
3
19
|
### 0.0.415 (2024-05-29)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2983,6 +2983,25 @@ const chainArray = [
|
|
2983
2983
|
bridges: [ { url: 'https://bridge.soraai.bot' } ]
|
2984
2984
|
}
|
2985
2985
|
},
|
2986
|
+
{
|
2987
|
+
name: 'Flag Mainnet',
|
2988
|
+
chain: 'Flag',
|
2989
|
+
icon: 'flag',
|
2990
|
+
rpc: [ 'https://mainnet-rpc.flagscan.xyz' ],
|
2991
|
+
faucets: [],
|
2992
|
+
nativeCurrency: { name: 'Flag', symbol: 'FLAG', decimals: 18 },
|
2993
|
+
infoURL: 'https://flagscan.xyz',
|
2994
|
+
shortName: 'FLAG',
|
2995
|
+
chainId: 147,
|
2996
|
+
networkId: 147,
|
2997
|
+
explorers: [
|
2998
|
+
{
|
2999
|
+
name: 'Flag Mainnet Explorer',
|
3000
|
+
url: 'https://flagscan.xyz',
|
3001
|
+
standard: 'EIP3091'
|
3002
|
+
}
|
3003
|
+
]
|
3004
|
+
},
|
2986
3005
|
{
|
2987
3006
|
name: 'ShimmerEVM',
|
2988
3007
|
title: 'ShimmerEVM',
|
@@ -3030,6 +3049,7 @@ const chainArray = [
|
|
3030
3049
|
chain: 'RBN',
|
3031
3050
|
chainId: 151,
|
3032
3051
|
networkId: 151,
|
3052
|
+
slip44: 824,
|
3033
3053
|
rpc: [],
|
3034
3054
|
faucets: [],
|
3035
3055
|
infoURL: 'https://redbelly.network',
|
@@ -3055,11 +3075,18 @@ const chainArray = [
|
|
3055
3075
|
chainId: 153,
|
3056
3076
|
networkId: 153,
|
3057
3077
|
slip44: 1,
|
3058
|
-
rpc: [],
|
3078
|
+
rpc: [ 'https://governors.testnet.redbelly.network' ],
|
3059
3079
|
faucets: [],
|
3060
3080
|
infoURL: 'https://redbelly.network',
|
3061
3081
|
nativeCurrency: { name: 'Redbelly Network Coin', symbol: 'RBNT', decimals: 18 },
|
3062
|
-
|
3082
|
+
explorers: [
|
3083
|
+
{
|
3084
|
+
name: 'Redbelly Network Testnet Explorer',
|
3085
|
+
url: 'https://explorer.testnet.redbelly.network',
|
3086
|
+
standard: 'none'
|
3087
|
+
}
|
3088
|
+
],
|
3089
|
+
status: 'active'
|
3063
3090
|
},
|
3064
3091
|
{
|
3065
3092
|
name: 'Redbelly Network TGE',
|
@@ -8953,6 +8980,25 @@ const chainArray = [
|
|
8953
8980
|
networkId: 1140,
|
8954
8981
|
slip44: 1
|
8955
8982
|
},
|
8983
|
+
{
|
8984
|
+
name: 'Flag Testnet',
|
8985
|
+
chain: 'Flag',
|
8986
|
+
icon: 'flag',
|
8987
|
+
rpc: [ 'https://testnet-rpc.flagscan.xyz' ],
|
8988
|
+
faucets: [ 'https://faucet.flagscan.xyz' ],
|
8989
|
+
nativeCurrency: { name: 'Flag Testnet', symbol: 'FLAG', decimals: 18 },
|
8990
|
+
infoURL: 'https://testnet-explorer.flagscan.xyz',
|
8991
|
+
shortName: 'tFLAG',
|
8992
|
+
chainId: 1147,
|
8993
|
+
networkId: 1147,
|
8994
|
+
explorers: [
|
8995
|
+
{
|
8996
|
+
name: 'Flag Testnet Explorer',
|
8997
|
+
url: 'https://testnet-explorer.flagscan.xyz',
|
8998
|
+
standard: 'EIP3091'
|
8999
|
+
}
|
9000
|
+
]
|
9001
|
+
},
|
8956
9002
|
{
|
8957
9003
|
name: 'Symplexia Smart Chain',
|
8958
9004
|
chain: 'Plexchain',
|
@@ -9768,6 +9814,49 @@ const chainArray = [
|
|
9768
9814
|
}
|
9769
9815
|
]
|
9770
9816
|
},
|
9817
|
+
{
|
9818
|
+
name: 'Ramestta Mainnet',
|
9819
|
+
chain: 'Ramestta',
|
9820
|
+
icon: 'ramestta',
|
9821
|
+
rpc: [
|
9822
|
+
'https://blockchain.ramestta.com',
|
9823
|
+
'https://blockchain2.ramestta.com'
|
9824
|
+
],
|
9825
|
+
faucets: [],
|
9826
|
+
nativeCurrency: { name: 'Rama', symbol: 'RAMA', decimals: 18 },
|
9827
|
+
infoURL: 'https://www.ramestta.com',
|
9828
|
+
shortName: 'RAMA',
|
9829
|
+
chainId: 1370,
|
9830
|
+
networkId: 1370,
|
9831
|
+
explorers: [
|
9832
|
+
{
|
9833
|
+
name: 'ramascan',
|
9834
|
+
url: 'https://ramascan.com',
|
9835
|
+
icon: 'ramestta',
|
9836
|
+
standard: 'EIP3091'
|
9837
|
+
}
|
9838
|
+
]
|
9839
|
+
},
|
9840
|
+
{
|
9841
|
+
name: 'Pingaksha testnet',
|
9842
|
+
chain: 'Pingaksha',
|
9843
|
+
icon: 'ramestta',
|
9844
|
+
rpc: [ 'https://testnet.ramestta.com' ],
|
9845
|
+
faucets: [],
|
9846
|
+
nativeCurrency: { name: 'Rama', symbol: 'tRAMA', decimals: 18 },
|
9847
|
+
infoURL: 'https://www.ramestta.com',
|
9848
|
+
shortName: 'tRAMA',
|
9849
|
+
chainId: 1377,
|
9850
|
+
networkId: 1377,
|
9851
|
+
explorers: [
|
9852
|
+
{
|
9853
|
+
name: 'Pingaksha',
|
9854
|
+
url: 'https://pingaksha.ramascan.com',
|
9855
|
+
icon: 'ramestta',
|
9856
|
+
standard: 'EIP3091'
|
9857
|
+
}
|
9858
|
+
]
|
9859
|
+
},
|
9771
9860
|
{
|
9772
9861
|
name: 'Kalar Chain',
|
9773
9862
|
chain: 'KLC',
|
@@ -10530,6 +10619,33 @@ const chainArray = [
|
|
10530
10619
|
}
|
10531
10620
|
]
|
10532
10621
|
},
|
10622
|
+
{
|
10623
|
+
name: 'ZKBase Sepolia Testnet',
|
10624
|
+
chain: 'ETH',
|
10625
|
+
rpc: [ 'https://sepolia-rpc.zkbase.app' ],
|
10626
|
+
faucets: [],
|
10627
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
10628
|
+
infoURL: 'https://zkbase.org/',
|
10629
|
+
shortName: 'zkbase-sepolia',
|
10630
|
+
chainId: 1789,
|
10631
|
+
networkId: 1789,
|
10632
|
+
slip44: 1,
|
10633
|
+
icon: 'zkbase',
|
10634
|
+
explorers: [
|
10635
|
+
{
|
10636
|
+
name: 'ZKbase Block Explorer',
|
10637
|
+
url: 'https://sepolia-explorer.zkbase.app',
|
10638
|
+
icon: 'zkbase',
|
10639
|
+
standard: 'EIP3091'
|
10640
|
+
}
|
10641
|
+
],
|
10642
|
+
parent: {
|
10643
|
+
type: 'L2',
|
10644
|
+
chain: 'eip155-1',
|
10645
|
+
bridges: [ { url: 'https://portral.zkbase.app/' } ]
|
10646
|
+
},
|
10647
|
+
redFlags: [ 'reusedChainId' ]
|
10648
|
+
},
|
10533
10649
|
{
|
10534
10650
|
name: 'Kerleano',
|
10535
10651
|
title: 'Proof of Climate awaReness testnet',
|
@@ -15639,6 +15755,24 @@ const chainArray = [
|
|
15639
15755
|
}
|
15640
15756
|
]
|
15641
15757
|
},
|
15758
|
+
{
|
15759
|
+
name: 'Settlus Testnet',
|
15760
|
+
chain: 'Settlus',
|
15761
|
+
rpc: [ 'https://settlus-test-eth.settlus.io' ],
|
15762
|
+
faucets: [ 'https://faucet.settlus.io' ],
|
15763
|
+
nativeCurrency: { name: 'Setl', symbol: 'SETL', decimals: 18 },
|
15764
|
+
infoURL: 'https://settlus.org',
|
15765
|
+
shortName: 'settlus-testnet',
|
15766
|
+
chainId: 5372,
|
15767
|
+
networkId: 5372,
|
15768
|
+
explorers: [
|
15769
|
+
{
|
15770
|
+
name: 'Settlus Scan',
|
15771
|
+
url: 'https://testnet.settlus.network',
|
15772
|
+
standard: 'EIP3091'
|
15773
|
+
}
|
15774
|
+
]
|
15775
|
+
},
|
15642
15776
|
{
|
15643
15777
|
name: 'edeXa Mainnet',
|
15644
15778
|
chain: 'edeXa Network',
|
@@ -16700,6 +16834,26 @@ const chainArray = [
|
|
16700
16834
|
}
|
16701
16835
|
]
|
16702
16836
|
},
|
16837
|
+
{
|
16838
|
+
name: 'XPLA Verse',
|
16839
|
+
chain: 'XPLA Verse',
|
16840
|
+
icon: 'xpla_verse',
|
16841
|
+
rpc: [ 'https://rpc-xpla-verse.xpla.dev' ],
|
16842
|
+
faucets: [],
|
16843
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
16844
|
+
infoURL: 'https://www.xpla.io',
|
16845
|
+
shortName: 'XPLAVERSE',
|
16846
|
+
chainId: 7300,
|
16847
|
+
networkId: 7300,
|
16848
|
+
explorers: [
|
16849
|
+
{
|
16850
|
+
name: 'XPLA Verse Explorer',
|
16851
|
+
url: 'https://explorer-xpla-verse.xpla.dev',
|
16852
|
+
standard: 'EIP3091'
|
16853
|
+
}
|
16854
|
+
],
|
16855
|
+
parent: { type: 'L2', chain: 'eip155-248' }
|
16856
|
+
},
|
16703
16857
|
{
|
16704
16858
|
name: 'KLYNTAR',
|
16705
16859
|
chain: 'KLY',
|
@@ -17619,6 +17773,27 @@ const chainArray = [
|
|
17619
17773
|
networkId: 8285,
|
17620
17774
|
slip44: 1
|
17621
17775
|
},
|
17776
|
+
{
|
17777
|
+
name: 'Lorenzo',
|
17778
|
+
chain: 'Lorenzo',
|
17779
|
+
rpc: [ 'https://rpc.lorenzo-protocol.xyz' ],
|
17780
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
17781
|
+
faucets: [],
|
17782
|
+
nativeCurrency: { name: 'Lorenzo stBTC', symbol: 'stBTC', decimals: 18 },
|
17783
|
+
infoURL: 'https://www.lorenzo-protocol.xyz/',
|
17784
|
+
shortName: 'lrz',
|
17785
|
+
chainId: 8329,
|
17786
|
+
networkId: 8329,
|
17787
|
+
icon: 'lorenzo',
|
17788
|
+
explorers: [
|
17789
|
+
{
|
17790
|
+
name: 'Lorenzo Explorer',
|
17791
|
+
url: 'https://scan.lorenzo-protocol.xyz',
|
17792
|
+
standard: 'none',
|
17793
|
+
icon: 'lorenzo'
|
17794
|
+
}
|
17795
|
+
]
|
17796
|
+
},
|
17622
17797
|
{
|
17623
17798
|
name: 'Dracones Financial Services',
|
17624
17799
|
title: 'The Dracones Mainnet',
|
@@ -19411,6 +19586,25 @@ const chainArray = [
|
|
19411
19586
|
}
|
19412
19587
|
]
|
19413
19588
|
},
|
19589
|
+
{
|
19590
|
+
name: 'Jiritsu Testnet Subnet',
|
19591
|
+
chain: 'JIRITSUTES',
|
19592
|
+
rpc: [ 'https://subnets.avax.network/jiritsutes/testnet/rpc' ],
|
19593
|
+
features: [ { name: 'EIP1559' } ],
|
19594
|
+
faucets: [],
|
19595
|
+
nativeCurrency: { name: 'JIRI', symbol: 'TZW', decimals: 18 },
|
19596
|
+
infoURL: 'https://jiritsu.network',
|
19597
|
+
shortName: 'jiritsutes',
|
19598
|
+
chainId: 11227,
|
19599
|
+
networkId: 11227,
|
19600
|
+
explorers: [
|
19601
|
+
{
|
19602
|
+
name: 'JIRITSUTES Explorer',
|
19603
|
+
url: 'https://subnets-test.avax.network/jiritsutes',
|
19604
|
+
standard: 'EIP3091'
|
19605
|
+
}
|
19606
|
+
]
|
19607
|
+
},
|
19414
19608
|
{
|
19415
19609
|
name: 'Haqq Network',
|
19416
19610
|
chain: 'Haqq',
|
@@ -24548,6 +24742,24 @@ const chainArray = [
|
|
24548
24742
|
}
|
24549
24743
|
]
|
24550
24744
|
},
|
24745
|
+
{
|
24746
|
+
name: 'GEEK Verse Mainnet',
|
24747
|
+
chain: 'GEEK',
|
24748
|
+
rpc: [ 'https://rpc.geekout-pte.com' ],
|
24749
|
+
faucets: [],
|
24750
|
+
nativeCurrency: { name: 'Geek', symbol: 'GEEK', decimals: 18 },
|
24751
|
+
infoURL: 'https://www.geekout-pte.com',
|
24752
|
+
shortName: 'GEEK',
|
24753
|
+
chainId: 75512,
|
24754
|
+
networkId: 75512,
|
24755
|
+
explorers: [
|
24756
|
+
{
|
24757
|
+
name: 'Geek Explorer',
|
24758
|
+
url: 'https://explorer.geekout-pte.com',
|
24759
|
+
standard: 'EIP3091'
|
24760
|
+
}
|
24761
|
+
]
|
24762
|
+
},
|
24551
24763
|
{
|
24552
24764
|
name: 'BORAchain mainnet',
|
24553
24765
|
chain: 'BORA',
|
@@ -26478,16 +26690,22 @@ const chainArray = [
|
|
26478
26690
|
{
|
26479
26691
|
name: 'Taiko Mainnet',
|
26480
26692
|
chain: 'ETH',
|
26481
|
-
status: '
|
26693
|
+
status: 'active',
|
26482
26694
|
icon: 'taiko',
|
26483
|
-
rpc: [ 'https://rpc.taiko.xyz', 'wss://ws.taiko.xyz' ],
|
26695
|
+
rpc: [ 'https://rpc.mainnet.taiko.xyz', 'wss://ws.mainnet.taiko.xyz' ],
|
26484
26696
|
faucets: [],
|
26485
26697
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
26486
26698
|
infoURL: 'https://taiko.xyz',
|
26487
26699
|
shortName: 'tko-mainnet',
|
26488
26700
|
chainId: 167000,
|
26489
26701
|
networkId: 167000,
|
26490
|
-
explorers: [
|
26702
|
+
explorers: [
|
26703
|
+
{
|
26704
|
+
name: 'etherscan',
|
26705
|
+
url: 'https://taikoscan.io',
|
26706
|
+
standard: 'EIP3091'
|
26707
|
+
}
|
26708
|
+
]
|
26491
26709
|
},
|
26492
26710
|
{
|
26493
26711
|
name: 'Taiko (Alpha-2 Testnet)',
|
@@ -30939,6 +31157,19 @@ const chainArray = [
|
|
30939
31157
|
networkId: 99415706,
|
30940
31158
|
slip44: 1
|
30941
31159
|
},
|
31160
|
+
{
|
31161
|
+
name: 'Oraichain Mainnet',
|
31162
|
+
title: 'Oraichain Mainnet',
|
31163
|
+
chain: 'Oraichain',
|
31164
|
+
rpc: [ 'https://evm.orai.io' ],
|
31165
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
31166
|
+
faucets: [],
|
31167
|
+
nativeCurrency: { name: 'Oraichain Token', symbol: 'ORAI', decimals: 18 },
|
31168
|
+
infoURL: 'https://orai.io',
|
31169
|
+
shortName: 'Oraichain',
|
31170
|
+
chainId: 108160679,
|
31171
|
+
networkId: 108160679
|
31172
|
+
},
|
30942
31173
|
{
|
30943
31174
|
name: 'Cyber Testnet',
|
30944
31175
|
chain: 'Cyber',
|