eth-chainlist 0.0.196 → 0.0.198
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 +120 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.198 (2023-07-29)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.197 ([fa374f7](https://github.com/poowf/eth-chainlist/commit/fa374f7cef2fb18d489cb404e9842f399e05fe2d))
|
9
|
+
* update chain data ([f64f0f0](https://github.com/poowf/eth-chainlist/commit/f64f0f0c548460ac4dfa975afb0bdc9bc7143ca4))
|
10
|
+
|
11
|
+
### 0.0.197 (2023-07-28)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.196 ([71e4f8f](https://github.com/poowf/eth-chainlist/commit/71e4f8fd4c2112d66c82ff25aacd32144c3a12fa))
|
17
|
+
* update chain data ([edcf6ea](https://github.com/poowf/eth-chainlist/commit/edcf6ea5223b31eebf7e1a2dbb85c20551dc1e49))
|
18
|
+
|
3
19
|
### 0.0.196 (2023-07-27)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -195,7 +195,10 @@ const chainArray = [
|
|
195
195
|
{
|
196
196
|
name: 'OP Mainnet',
|
197
197
|
chain: 'ETH',
|
198
|
-
rpc: [
|
198
|
+
rpc: [
|
199
|
+
'https://mainnet.optimism.io',
|
200
|
+
'https://optimism.publicnode.com'
|
201
|
+
],
|
199
202
|
faucets: [],
|
200
203
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
201
204
|
infoURL: 'https://optimism.io',
|
@@ -433,7 +436,7 @@ const chainArray = [
|
|
433
436
|
redFlags: [ 'reusedChainId' ]
|
434
437
|
},
|
435
438
|
{
|
436
|
-
name: 'Cronos Mainnet
|
439
|
+
name: 'Cronos Mainnet',
|
437
440
|
chain: 'CRO',
|
438
441
|
rpc: [ 'https://evm.cronos.org', 'https://cronos-evm.publicnode.com' ],
|
439
442
|
features: [ { name: 'EIP1559' } ],
|
@@ -3913,7 +3916,11 @@ const chainArray = [
|
|
3913
3916
|
chainId: 369,
|
3914
3917
|
networkId: 369,
|
3915
3918
|
infoURL: 'https://pulsechain.com/',
|
3916
|
-
rpc: [
|
3919
|
+
rpc: [
|
3920
|
+
'https://rpc.pulsechain.com',
|
3921
|
+
'wss://rpc.pulsechain.com',
|
3922
|
+
'https://pulsechain.publicnode.com'
|
3923
|
+
],
|
3917
3924
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3918
3925
|
faucets: [],
|
3919
3926
|
ens: { registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' },
|
@@ -4054,7 +4061,10 @@ const chainArray = [
|
|
4054
4061
|
{
|
4055
4062
|
name: 'Optimism Goerli Testnet',
|
4056
4063
|
chain: 'ETH',
|
4057
|
-
rpc: [
|
4064
|
+
rpc: [
|
4065
|
+
'https://goerli.optimism.io',
|
4066
|
+
'https://optimism-goerli.publicnode.com'
|
4067
|
+
],
|
4058
4068
|
faucets: [],
|
4059
4069
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
4060
4070
|
infoURL: 'https://optimism.io',
|
@@ -4114,6 +4124,30 @@ const chainArray = [
|
|
4114
4124
|
}
|
4115
4125
|
]
|
4116
4126
|
},
|
4127
|
+
{
|
4128
|
+
name: 'Obscuro Testnet',
|
4129
|
+
title: 'Obscuro Sepolia Rollup Testnet',
|
4130
|
+
chainId: 443,
|
4131
|
+
shortName: 'obs-testnet',
|
4132
|
+
chain: 'ETH',
|
4133
|
+
networkId: 443,
|
4134
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
4135
|
+
rpc: [ 'https://testnet.obscu.ro' ],
|
4136
|
+
faucets: [],
|
4137
|
+
infoURL: 'https://obscu.ro',
|
4138
|
+
explorers: [
|
4139
|
+
{
|
4140
|
+
name: 'Obscuro Sepolia Rollup Explorer',
|
4141
|
+
url: 'https://testnet.obscuroscan.io',
|
4142
|
+
standard: 'none'
|
4143
|
+
}
|
4144
|
+
],
|
4145
|
+
parent: {
|
4146
|
+
type: 'L2',
|
4147
|
+
chain: 'eip155-5',
|
4148
|
+
bridges: [ { url: 'https://bridge.obscu.ro' } ]
|
4149
|
+
}
|
4150
|
+
},
|
4117
4151
|
{
|
4118
4152
|
name: 'Frenchain Testnet',
|
4119
4153
|
chain: 'tfren',
|
@@ -4533,6 +4567,28 @@ const chainArray = [
|
|
4533
4567
|
chainId: 600,
|
4534
4568
|
networkId: 600
|
4535
4569
|
},
|
4570
|
+
{
|
4571
|
+
name: 'PEER Testnet',
|
4572
|
+
chain: 'PEER',
|
4573
|
+
rpc: [
|
4574
|
+
'http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com'
|
4575
|
+
],
|
4576
|
+
faucets: [ 'https://testnet.peer.inc' ],
|
4577
|
+
nativeCurrency: { name: 'PEER Token', symbol: 'PEER', decimals: 18 },
|
4578
|
+
infoURL: 'https://peer.inc',
|
4579
|
+
shortName: 'PEER',
|
4580
|
+
chainId: 601,
|
4581
|
+
networkId: 601,
|
4582
|
+
icon: 'peer',
|
4583
|
+
explorers: [
|
4584
|
+
{
|
4585
|
+
name: 'PEER Explorer',
|
4586
|
+
url: 'https://testnet.peer.inc',
|
4587
|
+
standard: 'none',
|
4588
|
+
icon: 'peer'
|
4589
|
+
}
|
4590
|
+
]
|
4591
|
+
},
|
4536
4592
|
{
|
4537
4593
|
name: 'Graphlinq Blockchain Mainnet',
|
4538
4594
|
chain: 'GLQ Blockchain',
|
@@ -5388,7 +5444,8 @@ const chainArray = [
|
|
5388
5444
|
infoURL: 'https://pulsechain.com',
|
5389
5445
|
rpc: [
|
5390
5446
|
'https://rpc.v4.testnet.pulsechain.com/',
|
5391
|
-
'wss://rpc.v4.testnet.pulsechain.com/'
|
5447
|
+
'wss://rpc.v4.testnet.pulsechain.com/',
|
5448
|
+
'https://pulsechain-testnet.publicnode.com'
|
5392
5449
|
],
|
5393
5450
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5394
5451
|
faucets: [ 'https://faucet.v4.testnet.pulsechain.com/' ],
|
@@ -5902,6 +5959,26 @@ const chainArray = [
|
|
5902
5959
|
}
|
5903
5960
|
]
|
5904
5961
|
},
|
5962
|
+
{
|
5963
|
+
name: 'Mintara Mainnet',
|
5964
|
+
title: 'Mintara Mainnet',
|
5965
|
+
chain: 'Mintara',
|
5966
|
+
icon: 'mintara',
|
5967
|
+
rpc: [ 'https://subnets.avax.network/mintara/mainnet/rpc' ],
|
5968
|
+
faucets: [],
|
5969
|
+
nativeCurrency: { name: 'MINTARA', symbol: 'MNTR', decimals: 18 },
|
5970
|
+
infoURL: 'https://playthink.co.jp',
|
5971
|
+
shortName: 'mintara',
|
5972
|
+
chainId: 1080,
|
5973
|
+
networkId: 1080,
|
5974
|
+
explorers: [
|
5975
|
+
{
|
5976
|
+
name: 'explorer',
|
5977
|
+
url: 'https://subnets.avax.network/mintara',
|
5978
|
+
standard: 'EIP3091'
|
5979
|
+
}
|
5980
|
+
]
|
5981
|
+
},
|
5905
5982
|
{
|
5906
5983
|
name: 'Metis Andromeda Mainnet',
|
5907
5984
|
chain: 'ETH',
|
@@ -7026,7 +7103,7 @@ const chainArray = [
|
|
7026
7103
|
title: 'Tenet Mainnet',
|
7027
7104
|
chain: 'TENET',
|
7028
7105
|
icon: 'tenet',
|
7029
|
-
rpc: [ 'https://rpc.tenet.org' ],
|
7106
|
+
rpc: [ 'https://rpc.tenet.org', 'https://tenet-evm.publicnode.com' ],
|
7030
7107
|
faucets: [],
|
7031
7108
|
nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
|
7032
7109
|
infoURL: 'https://tenet.org/',
|
@@ -8390,7 +8467,8 @@ const chainArray = [
|
|
8390
8467
|
'https://evm.kava.io',
|
8391
8468
|
'https://evm2.kava.io',
|
8392
8469
|
'wss://wevm.kava.io',
|
8393
|
-
'wss://wevm2.kava.io'
|
8470
|
+
'wss://wevm2.kava.io',
|
8471
|
+
'https://kava-evm.publicnode.com'
|
8394
8472
|
],
|
8395
8473
|
faucets: [],
|
8396
8474
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
@@ -9866,7 +9944,7 @@ const chainArray = [
|
|
9866
9944
|
name: 'Mantle',
|
9867
9945
|
chain: 'ETH',
|
9868
9946
|
icon: 'mantle',
|
9869
|
-
rpc: [ 'https://rpc.mantle.xyz' ],
|
9947
|
+
rpc: [ 'https://rpc.mantle.xyz', 'https://mantle.publicnode.com' ],
|
9870
9948
|
faucets: [],
|
9871
9949
|
nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
|
9872
9950
|
infoURL: 'https://mantle.xyz',
|
@@ -10120,6 +10198,17 @@ const chainArray = [
|
|
10120
10198
|
}
|
10121
10199
|
]
|
10122
10200
|
},
|
10201
|
+
{
|
10202
|
+
name: 'Arcturus Chain Testnet',
|
10203
|
+
chain: 'ARCTURUS',
|
10204
|
+
rpc: [ 'http://185.99.196.3:8545' ],
|
10205
|
+
faucets: [],
|
10206
|
+
nativeCurrency: { name: 'Test Arct', symbol: 'tARCT', decimals: 18 },
|
10207
|
+
infoURL: 'https://arcturuschain.io',
|
10208
|
+
shortName: 'ARCT',
|
10209
|
+
chainId: 5616,
|
10210
|
+
networkId: 5616
|
10211
|
+
},
|
10123
10212
|
{
|
10124
10213
|
name: 'Syscoin Tanenbaum Testnet',
|
10125
10214
|
chain: 'SYS',
|
@@ -10422,7 +10511,10 @@ const chainArray = [
|
|
10422
10511
|
{
|
10423
10512
|
name: 'IRIShub',
|
10424
10513
|
chain: 'IRIShub',
|
10425
|
-
rpc: [
|
10514
|
+
rpc: [
|
10515
|
+
'https://evmrpc.irishub-1.irisnet.org',
|
10516
|
+
'https://iris-evm.publicnode.com'
|
10517
|
+
],
|
10426
10518
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
10427
10519
|
faucets: [],
|
10428
10520
|
nativeCurrency: { name: 'Eris', symbol: 'ERIS', decimals: 18 },
|
@@ -11265,7 +11357,7 @@ const chainArray = [
|
|
11265
11357
|
{
|
11266
11358
|
name: 'Base',
|
11267
11359
|
chain: 'ETH',
|
11268
|
-
rpc: [ 'https://
|
11360
|
+
rpc: [ 'https://mainnet.base.org/' ],
|
11269
11361
|
faucets: [],
|
11270
11362
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
11271
11363
|
infoURL: 'https://base.org',
|
@@ -11910,7 +12002,10 @@ const chainArray = [
|
|
11910
12002
|
name: 'Mind Smart Chain Mainnet',
|
11911
12003
|
chain: 'MIND',
|
11912
12004
|
icon: 'mindchain',
|
11913
|
-
rpc: [
|
12005
|
+
rpc: [
|
12006
|
+
'https://rpc-msc.mindchain.info/',
|
12007
|
+
'https://seednode.mindchain.info'
|
12008
|
+
],
|
11914
12009
|
faucets: [],
|
11915
12010
|
nativeCurrency: { name: 'MIND Coin', symbol: 'MIND', decimals: 18 },
|
11916
12011
|
infoURL: 'https://mindscan.info',
|
@@ -12285,7 +12380,10 @@ const chainArray = [
|
|
12285
12380
|
{
|
12286
12381
|
name: 'Haqq Network',
|
12287
12382
|
chain: 'Haqq',
|
12288
|
-
rpc: [
|
12383
|
+
rpc: [
|
12384
|
+
'https://rpc.eth.haqq.network',
|
12385
|
+
'https://haqq-evm.publicnode.com'
|
12386
|
+
],
|
12289
12387
|
faucets: [],
|
12290
12388
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
12291
12389
|
infoURL: 'https://islamiccoin.net',
|
@@ -13676,7 +13774,8 @@ const chainArray = [
|
|
13676
13774
|
rpc: [
|
13677
13775
|
'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}',
|
13678
13776
|
'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}',
|
13679
|
-
'https://arb1.arbitrum.io/rpc'
|
13777
|
+
'https://arb1.arbitrum.io/rpc',
|
13778
|
+
'https://arbitrum-one.publicnode.com'
|
13680
13779
|
],
|
13681
13780
|
faucets: [],
|
13682
13781
|
explorers: [
|
@@ -13705,7 +13804,10 @@ const chainArray = [
|
|
13705
13804
|
chain: 'ETH',
|
13706
13805
|
networkId: 42170,
|
13707
13806
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
13708
|
-
rpc: [
|
13807
|
+
rpc: [
|
13808
|
+
'https://nova.arbitrum.io/rpc',
|
13809
|
+
'https://arbitrum-nova.publicnode.com'
|
13810
|
+
],
|
13709
13811
|
faucets: [],
|
13710
13812
|
explorers: [
|
13711
13813
|
{
|
@@ -16765,7 +16867,10 @@ const chainArray = [
|
|
16765
16867
|
chain: 'ETH',
|
16766
16868
|
networkId: 421613,
|
16767
16869
|
nativeCurrency: { name: 'Arbitrum Goerli Ether', symbol: 'AGOR', decimals: 18 },
|
16768
|
-
rpc: [
|
16870
|
+
rpc: [
|
16871
|
+
'https://goerli-rollup.arbitrum.io/rpc',
|
16872
|
+
'https://arbitrum-goerli.publicnode.com'
|
16873
|
+
],
|
16769
16874
|
faucets: [],
|
16770
16875
|
infoURL: 'https://arbitrum.io/',
|
16771
16876
|
explorers: [
|