eth-chainlist 0.0.234 → 0.0.235
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 +80 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.235 (2023-09-14)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.234 ([ba0fe4d](https://github.com/poowf/eth-chainlist/commit/ba0fe4d43f626305c34b73a084c23b543d5eee51))
|
9
|
+
* update chain data ([6c89535](https://github.com/poowf/eth-chainlist/commit/6c89535d7ddd4562b75ca1b4cd621a46eb2bb2de))
|
10
|
+
|
3
11
|
### 0.0.234 (2023-09-13)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2877,6 +2877,26 @@ const chainArray = [
|
|
2877
2877
|
}
|
2878
2878
|
]
|
2879
2879
|
},
|
2880
|
+
{
|
2881
|
+
name: 'Manta Pacific Mainnet',
|
2882
|
+
chain: 'Manta Pacific',
|
2883
|
+
rpc: [ 'https://pacific-rpc.manta.network/http' ],
|
2884
|
+
faucets: [],
|
2885
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
2886
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
2887
|
+
infoURL: 'https://pacific-info.manta.network',
|
2888
|
+
shortName: 'manta',
|
2889
|
+
chainId: 169,
|
2890
|
+
networkId: 169,
|
2891
|
+
icon: 'manta',
|
2892
|
+
explorers: [
|
2893
|
+
{
|
2894
|
+
name: 'manta-pacific Explorer',
|
2895
|
+
url: 'https://pacific-explorer.manta.network',
|
2896
|
+
standard: 'EIP3091'
|
2897
|
+
}
|
2898
|
+
]
|
2899
|
+
},
|
2880
2900
|
{
|
2881
2901
|
name: 'HOO Smart Chain Testnet',
|
2882
2902
|
chain: 'ETH',
|
@@ -4420,25 +4440,33 @@ const chainArray = [
|
|
4420
4440
|
}
|
4421
4441
|
},
|
4422
4442
|
{
|
4423
|
-
name: '
|
4424
|
-
status: '
|
4425
|
-
chain: '
|
4426
|
-
rpc: [ 'https://
|
4443
|
+
name: 'Synapse Chain Testnet',
|
4444
|
+
status: 'active',
|
4445
|
+
chain: 'ETH',
|
4446
|
+
rpc: [ 'https://sepolia.synapseprotocol.com' ],
|
4427
4447
|
faucets: [],
|
4428
|
-
nativeCurrency: { name: '
|
4429
|
-
infoURL: 'https://
|
4430
|
-
shortName: '
|
4448
|
+
nativeCurrency: { name: 'Sepolia ETH', symbol: 'ETH', decimals: 18 },
|
4449
|
+
infoURL: 'https://synapseprotocol.com',
|
4450
|
+
shortName: 'synapse-sepolia',
|
4431
4451
|
chainId: 444,
|
4432
4452
|
networkId: 444,
|
4433
|
-
|
4453
|
+
redFlags: [ 'reusedChainId' ],
|
4434
4454
|
explorers: [
|
4435
4455
|
{
|
4436
|
-
name: '
|
4437
|
-
url: 'https://
|
4438
|
-
icon: 'fren',
|
4456
|
+
name: 'Synapse Chain Sepolia',
|
4457
|
+
url: 'https://sepolia.synapsescan.com',
|
4439
4458
|
standard: 'EIP3091'
|
4440
4459
|
}
|
4441
|
-
]
|
4460
|
+
],
|
4461
|
+
parent: {
|
4462
|
+
type: 'L2',
|
4463
|
+
chain: 'eip155-11155111',
|
4464
|
+
bridges: [
|
4465
|
+
{
|
4466
|
+
url: 'https://docs.synapseprotocol.com/synapse-chain/using-synapse-chain/bridging-to-synapse-chain'
|
4467
|
+
}
|
4468
|
+
]
|
4469
|
+
}
|
4442
4470
|
},
|
4443
4471
|
{
|
4444
4472
|
name: 'ARZIO Chain',
|
@@ -5824,6 +5852,25 @@ const chainArray = [
|
|
5824
5852
|
bridges: [ { url: 'https://bridge.mode.network/' } ]
|
5825
5853
|
}
|
5826
5854
|
},
|
5855
|
+
{
|
5856
|
+
name: 'Yidark Chain Mainnet',
|
5857
|
+
chain: 'Yidark',
|
5858
|
+
icon: 'ydk',
|
5859
|
+
rpc: [ 'https://rpc.yidark.io' ],
|
5860
|
+
faucets: [],
|
5861
|
+
nativeCurrency: { name: 'Yidark', symbol: 'YDK', decimals: 18 },
|
5862
|
+
infoURL: 'https://yidarkscan.com',
|
5863
|
+
shortName: 'ydk',
|
5864
|
+
chainId: 927,
|
5865
|
+
networkId: 927,
|
5866
|
+
explorers: [
|
5867
|
+
{
|
5868
|
+
name: 'Yidarkscan',
|
5869
|
+
url: 'https://yidarkscan.com',
|
5870
|
+
standard: 'EIP3091'
|
5871
|
+
}
|
5872
|
+
]
|
5873
|
+
},
|
5827
5874
|
{
|
5828
5875
|
name: 'PulseChain Testnet',
|
5829
5876
|
shortName: 'tpls',
|
@@ -13065,6 +13112,25 @@ const chainArray = [
|
|
13065
13112
|
}
|
13066
13113
|
]
|
13067
13114
|
},
|
13115
|
+
{
|
13116
|
+
name: 'Agung Network',
|
13117
|
+
chain: 'Agung',
|
13118
|
+
icon: 'agung',
|
13119
|
+
rpc: [ 'https://rpcpc1-qa.agung.peaq.network' ],
|
13120
|
+
faucets: [],
|
13121
|
+
nativeCurrency: { name: 'Agung', symbol: 'AGNG', decimals: 18 },
|
13122
|
+
infoURL: 'https://www.peaq.network',
|
13123
|
+
shortName: 'AGNG',
|
13124
|
+
chainId: 9990,
|
13125
|
+
networkId: 9990,
|
13126
|
+
explorers: [
|
13127
|
+
{
|
13128
|
+
name: 'Polkadot.js',
|
13129
|
+
url: 'https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer',
|
13130
|
+
standard: 'none'
|
13131
|
+
}
|
13132
|
+
]
|
13133
|
+
},
|
13068
13134
|
{
|
13069
13135
|
name: 'Mind Smart Chain Mainnet',
|
13070
13136
|
chain: 'MIND',
|
@@ -14460,7 +14526,7 @@ const chainArray = [
|
|
14460
14526
|
icon: 'map',
|
14461
14527
|
rpc: [ 'https://rpc.maplabs.io' ],
|
14462
14528
|
faucets: [],
|
14463
|
-
nativeCurrency: { name: '
|
14529
|
+
nativeCurrency: { name: 'MAPO', symbol: 'MAPO', decimals: 18 },
|
14464
14530
|
infoURL: 'https://maplabs.io',
|
14465
14531
|
shortName: 'map',
|
14466
14532
|
chainId: 22776,
|
@@ -19168,7 +19234,7 @@ const chainArray = [
|
|
19168
19234
|
nativeCurrency: { name: 'Manta', symbol: 'MANTA', decimals: 18 },
|
19169
19235
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
19170
19236
|
infoURL: 'https://manta-testnet.caldera.dev/',
|
19171
|
-
shortName: '
|
19237
|
+
shortName: 'mantaTestnet',
|
19172
19238
|
chainId: 3441005,
|
19173
19239
|
networkId: 3441005,
|
19174
19240
|
icon: 'manta',
|