eth-chainlist 0.0.583 → 0.0.585
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 +97 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.585 (2025-01-13)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.584 ([03951ba](https://github.com/poowf/eth-chainlist/commit/03951ba6e52e705f3ffa0c39f3ab4c85a33f312c))
|
9
|
+
* update chain data ([b643649](https://github.com/poowf/eth-chainlist/commit/b6436497203339768c79b8eafcb757976d2c8323))
|
10
|
+
|
11
|
+
### 0.0.584 (2025-01-11)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.583 ([dc636e6](https://github.com/poowf/eth-chainlist/commit/dc636e679d5e3b5e3efe61e64beb0c520d998cf6))
|
17
|
+
* update chain data ([67b9f07](https://github.com/poowf/eth-chainlist/commit/67b9f07a74b5a312d666dd85d999b4694bf69493))
|
18
|
+
|
3
19
|
### 0.0.583 (2025-01-10)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -15695,6 +15695,20 @@ const chainArray = [
|
|
15695
15695
|
}
|
15696
15696
|
]
|
15697
15697
|
},
|
15698
|
+
{
|
15699
|
+
name: 'inEVM Testnet',
|
15700
|
+
chain: 'inEVM testnet',
|
15701
|
+
icon: 'inevm',
|
15702
|
+
rpc: [ 'https://testnet.rpc.inevm.com/http' ],
|
15703
|
+
faucets: [],
|
15704
|
+
nativeCurrency: { name: 'Injective', symbol: 'INJ', decimals: 18 },
|
15705
|
+
infoURL: 'https://inevm.com',
|
15706
|
+
shortName: 'inevm-testnet',
|
15707
|
+
chainId: 2424,
|
15708
|
+
networkId: 2424,
|
15709
|
+
explorers: [],
|
15710
|
+
status: 'active'
|
15711
|
+
},
|
15698
15712
|
{
|
15699
15713
|
name: 'King Of Legends Mainnet',
|
15700
15714
|
title: 'King Of Legends Mainnet',
|
@@ -21089,6 +21103,27 @@ const chainArray = [
|
|
21089
21103
|
}
|
21090
21104
|
]
|
21091
21105
|
},
|
21106
|
+
{
|
21107
|
+
name: 'UXLINK One Testnet',
|
21108
|
+
chain: 'UXLINK One',
|
21109
|
+
rpc: [ 'https://rpc-sepolia.uxlinkone.com' ],
|
21110
|
+
faucets: [],
|
21111
|
+
nativeCurrency: { name: 'UXLINK', symbol: 'UXLINK', decimals: 18 },
|
21112
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
21113
|
+
infoURL: 'https://www.uxlinkone.io',
|
21114
|
+
shortName: 'uxlink1-sep',
|
21115
|
+
chainId: 7181,
|
21116
|
+
networkId: 7181,
|
21117
|
+
icon: 'uxlinkone',
|
21118
|
+
explorers: [
|
21119
|
+
{
|
21120
|
+
name: 'UXLINK One Sepolia Explorer',
|
21121
|
+
url: 'https://sepolia.uxlinkone.com',
|
21122
|
+
icon: 'uxlinkone',
|
21123
|
+
standard: 'EIP3091'
|
21124
|
+
}
|
21125
|
+
]
|
21126
|
+
},
|
21092
21127
|
{
|
21093
21128
|
name: 'exSat Mainnet',
|
21094
21129
|
chain: 'exSat',
|
@@ -24105,7 +24140,7 @@ const chainArray = [
|
|
24105
24140
|
name: 'Agung Network',
|
24106
24141
|
chain: 'Agung',
|
24107
24142
|
icon: 'agung',
|
24108
|
-
rpc: [ 'https
|
24143
|
+
rpc: [ 'https:///wss-async.agung.peaq.network' ],
|
24109
24144
|
faucets: [],
|
24110
24145
|
nativeCurrency: { name: 'Agung', symbol: 'AGNG', decimals: 18 },
|
24111
24146
|
infoURL: 'https://www.peaq.network',
|
@@ -24115,12 +24150,12 @@ const chainArray = [
|
|
24115
24150
|
explorers: [
|
24116
24151
|
{
|
24117
24152
|
name: 'Polkadot.js',
|
24118
|
-
url: 'https://polkadot.js.org/apps/?rpc=wss
|
24153
|
+
url: 'https://polkadot.js.org/apps/?rpc=wss:///wss-async.agung.peaq.network#/explorer',
|
24119
24154
|
standard: 'none'
|
24120
24155
|
},
|
24121
24156
|
{
|
24122
24157
|
name: 'Subscan',
|
24123
|
-
url: 'https://agung.subscan.io',
|
24158
|
+
url: 'https://agung-testnet.subscan.io',
|
24124
24159
|
standard: 'none'
|
24125
24160
|
}
|
24126
24161
|
]
|
@@ -25109,6 +25144,25 @@ const chainArray = [
|
|
25109
25144
|
}
|
25110
25145
|
]
|
25111
25146
|
},
|
25147
|
+
{
|
25148
|
+
name: 'Artela Mainnet',
|
25149
|
+
chain: 'Artela',
|
25150
|
+
rpc: [ 'https://node-euro.artela.network/rpc' ],
|
25151
|
+
faucets: [],
|
25152
|
+
nativeCurrency: { name: 'ART', symbol: 'ART', decimals: 18 },
|
25153
|
+
infoURL: 'https://artela.network/',
|
25154
|
+
shortName: 'artela-mainnet',
|
25155
|
+
chainId: 11820,
|
25156
|
+
networkId: 11820,
|
25157
|
+
icon: 'artela',
|
25158
|
+
explorers: [
|
25159
|
+
{
|
25160
|
+
name: 'ArtelaScan',
|
25161
|
+
url: 'https://artscan.artela.network',
|
25162
|
+
standard: 'EIP3091'
|
25163
|
+
}
|
25164
|
+
]
|
25165
|
+
},
|
25112
25166
|
{
|
25113
25167
|
name: 'Artela Testnet',
|
25114
25168
|
chain: 'Artela',
|
@@ -25342,7 +25396,7 @@ const chainArray = [
|
|
25342
25396
|
slip44: 1
|
25343
25397
|
},
|
25344
25398
|
{
|
25345
|
-
name: 'Huddle01',
|
25399
|
+
name: 'Huddle01 dRTC Chain',
|
25346
25400
|
chain: 'huddle01',
|
25347
25401
|
rpc: [ 'https://huddle01.calderachain.xyz/http' ],
|
25348
25402
|
faucets: [],
|
@@ -35027,6 +35081,25 @@ const chainArray = [
|
|
35027
35081
|
}
|
35028
35082
|
]
|
35029
35083
|
},
|
35084
|
+
{
|
35085
|
+
name: 'Openledger Testnet',
|
35086
|
+
chain: 'Openledger Testnet',
|
35087
|
+
rpc: [ 'https://rpctn.openledger.xyz' ],
|
35088
|
+
faucets: [],
|
35089
|
+
nativeCurrency: { name: 'Openledger', symbol: 'OPN', decimals: 18 },
|
35090
|
+
infoURL: 'https://www.openledger.xyz',
|
35091
|
+
shortName: 'openledgertest',
|
35092
|
+
chainId: 161201,
|
35093
|
+
networkId: 161201,
|
35094
|
+
icon: 'openledger',
|
35095
|
+
explorers: [
|
35096
|
+
{
|
35097
|
+
name: 'Openledger Testnet Explorer',
|
35098
|
+
url: 'https://scantn.openledger.xyz',
|
35099
|
+
standard: 'EIP3091'
|
35100
|
+
}
|
35101
|
+
]
|
35102
|
+
},
|
35030
35103
|
{
|
35031
35104
|
name: 'PlayFi Mainnet',
|
35032
35105
|
chain: 'PLAY',
|
@@ -35304,6 +35377,26 @@ const chainArray = [
|
|
35304
35377
|
}
|
35305
35378
|
]
|
35306
35379
|
},
|
35380
|
+
{
|
35381
|
+
name: 'Chronicle Loa - Lit Protocol Testnet',
|
35382
|
+
chain: 'LPL',
|
35383
|
+
icon: 'lit',
|
35384
|
+
rpc: [ 'https://loa-rpc.litprotocol.com' ],
|
35385
|
+
faucets: [ 'https://developer.litprotocol.com/support/intro' ],
|
35386
|
+
nativeCurrency: { name: 'Test Lit', symbol: 'tLit', decimals: 18 },
|
35387
|
+
infoURL: 'https://litprotocol.com',
|
35388
|
+
shortName: 'lpl',
|
35389
|
+
chainId: 175190,
|
35390
|
+
networkId: 175190,
|
35391
|
+
explorers: [
|
35392
|
+
{
|
35393
|
+
name: 'Lit Chronicle Loa Explorer',
|
35394
|
+
url: 'https://loa-explorer.litprotocol.com',
|
35395
|
+
icon: 'lit',
|
35396
|
+
standard: 'EIP3091'
|
35397
|
+
}
|
35398
|
+
]
|
35399
|
+
},
|
35307
35400
|
{
|
35308
35401
|
name: 'Bitica Chain Mainnet',
|
35309
35402
|
chain: 'BDCC',
|