eth-chainlist 0.0.747 → 0.0.748
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 +88 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.748 (2026-04-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.747 ([dd789ae](https://github.com/poowf/eth-chainlist/commit/dd789ae4eff5781d83be23a0d765b585d3673e3e))
|
|
9
|
+
* update chain data ([e69169f](https://github.com/poowf/eth-chainlist/commit/e69169f61b38438df91e41451c948b6273599e1e))
|
|
10
|
+
|
|
3
11
|
### 0.0.747 (2026-04-01)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -26896,6 +26896,22 @@ const chainArray = [
|
|
|
26896
26896
|
}
|
|
26897
26897
|
]
|
|
26898
26898
|
},
|
|
26899
|
+
{
|
|
26900
|
+
name: 'Nepachain',
|
|
26901
|
+
chain: 'Nepachain',
|
|
26902
|
+
faucets: [],
|
|
26903
|
+
rpc: [
|
|
26904
|
+
'https://network.nepachain.org',
|
|
26905
|
+
'https://network.nepachain.com'
|
|
26906
|
+
],
|
|
26907
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP2930' } ],
|
|
26908
|
+
nativeCurrency: { name: 'Nepacoin', symbol: 'NPC', decimals: 18 },
|
|
26909
|
+
infoURL: 'https://docs.nepachain.org/',
|
|
26910
|
+
shortName: 'Nepachain',
|
|
26911
|
+
chainId: 9770,
|
|
26912
|
+
networkId: 9770,
|
|
26913
|
+
explorers: []
|
|
26914
|
+
},
|
|
26899
26915
|
{
|
|
26900
26916
|
name: 'PepeNetwork Mainnet',
|
|
26901
26917
|
chain: 'PepeNetwork',
|
|
@@ -30760,6 +30776,66 @@ const chainArray = [
|
|
|
30760
30776
|
],
|
|
30761
30777
|
infoURL: 'https://www.camelark.com'
|
|
30762
30778
|
},
|
|
30779
|
+
{
|
|
30780
|
+
name: 'Mandala Chain',
|
|
30781
|
+
chain: 'MANDALA',
|
|
30782
|
+
icon: 'mandala',
|
|
30783
|
+
rpc: [ 'https://rpc1-mainnet.mandalachain.io' ],
|
|
30784
|
+
faucets: [],
|
|
30785
|
+
nativeCurrency: { name: 'Kepeng', symbol: 'KPG', decimals: 18 },
|
|
30786
|
+
infoURL: 'https://mandalachain.io',
|
|
30787
|
+
shortName: 'mandala',
|
|
30788
|
+
chainId: 20010,
|
|
30789
|
+
networkId: 20010,
|
|
30790
|
+
explorers: [
|
|
30791
|
+
{
|
|
30792
|
+
name: 'Blockscout',
|
|
30793
|
+
url: 'https://explorer.mandalachain.io',
|
|
30794
|
+
icon: 'blockscout',
|
|
30795
|
+
standard: 'EIP3091'
|
|
30796
|
+
}
|
|
30797
|
+
],
|
|
30798
|
+
parent: {
|
|
30799
|
+
type: 'L2',
|
|
30800
|
+
chain: 'eip155-1',
|
|
30801
|
+
bridges: [
|
|
30802
|
+
{
|
|
30803
|
+
url: 'https://portal.arbitrum.io/bridge?destinationChain=mandala-chain&sanitized=true&sourceChain=ethereum'
|
|
30804
|
+
}
|
|
30805
|
+
]
|
|
30806
|
+
},
|
|
30807
|
+
status: 'active'
|
|
30808
|
+
},
|
|
30809
|
+
{
|
|
30810
|
+
name: 'Mandala Chain Testnet',
|
|
30811
|
+
chain: 'MANDALA',
|
|
30812
|
+
icon: 'mandala',
|
|
30813
|
+
rpc: [ 'https://rpc1-testnet.mandalachain.io' ],
|
|
30814
|
+
faucets: [ 'https://dripper.mandalachain.io' ],
|
|
30815
|
+
nativeCurrency: { name: 'Kepeng Test', symbol: 'KPGT', decimals: 18 },
|
|
30816
|
+
infoURL: 'https://mandalachain.io',
|
|
30817
|
+
shortName: 'mandala-testnet',
|
|
30818
|
+
chainId: 20011,
|
|
30819
|
+
networkId: 20011,
|
|
30820
|
+
explorers: [
|
|
30821
|
+
{
|
|
30822
|
+
name: 'Blockscout',
|
|
30823
|
+
url: 'https://explorer.testnet.mandalachain.io',
|
|
30824
|
+
icon: 'blockscout',
|
|
30825
|
+
standard: 'EIP3091'
|
|
30826
|
+
}
|
|
30827
|
+
],
|
|
30828
|
+
parent: {
|
|
30829
|
+
type: 'L2',
|
|
30830
|
+
chain: 'eip155-11155111',
|
|
30831
|
+
bridges: [
|
|
30832
|
+
{
|
|
30833
|
+
url: 'https://portal.arbitrum.io/bridge?destinationChain=mandala-chain-testnet&sanitized=true&sourceChain=sepolia'
|
|
30834
|
+
}
|
|
30835
|
+
]
|
|
30836
|
+
},
|
|
30837
|
+
status: 'active'
|
|
30838
|
+
},
|
|
30763
30839
|
{
|
|
30764
30840
|
name: 'Niza Chain Mainnet',
|
|
30765
30841
|
chain: 'NIZA',
|
|
@@ -38820,6 +38896,18 @@ const chainArray = [
|
|
|
38820
38896
|
}
|
|
38821
38897
|
]
|
|
38822
38898
|
},
|
|
38899
|
+
{
|
|
38900
|
+
name: 'JAMIROQU.AI',
|
|
38901
|
+
chain: 'INSAN',
|
|
38902
|
+
rpc: [],
|
|
38903
|
+
faucets: [],
|
|
38904
|
+
nativeCurrency: { name: 'INSAN', symbol: 'INSAN', decimals: 18 },
|
|
38905
|
+
infoURL: 'https://www.jamiroqu.ai',
|
|
38906
|
+
shortName: 'insan',
|
|
38907
|
+
chainId: 89001,
|
|
38908
|
+
networkId: 89001,
|
|
38909
|
+
status: 'incubating'
|
|
38910
|
+
},
|
|
38823
38911
|
{
|
|
38824
38912
|
name: 'Pundi AIFX Omnilayer Testnet',
|
|
38825
38913
|
chain: 'PUNDIAI',
|