eth-chainlist 0.0.219 → 0.0.221
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 +134 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.221 (2023-08-29)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.220 ([69a4d1e](https://github.com/poowf/eth-chainlist/commit/69a4d1e942e7deb10e0ce1cc92c7ba6cb9ab290d))
|
9
|
+
* update chain data ([7c5d319](https://github.com/poowf/eth-chainlist/commit/7c5d319c7d78d03b34f12c6382ce06135d3333d0))
|
10
|
+
|
11
|
+
### 0.0.220 (2023-08-27)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.219 ([eecc0ea](https://github.com/poowf/eth-chainlist/commit/eecc0ea5e7e57de60b37f89c3d99004016efed4e))
|
17
|
+
* update chain data ([e26c83b](https://github.com/poowf/eth-chainlist/commit/e26c83b752ba67d0da02abe2cf050919b03baaa5))
|
18
|
+
|
3
19
|
### 0.0.219 (2023-08-26)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -662,10 +662,10 @@ const chainArray = [
|
|
662
662
|
slip44: 538
|
663
663
|
},
|
664
664
|
{
|
665
|
-
name: '
|
665
|
+
name: 'U2U Solaris Mainnet',
|
666
666
|
chain: 'u2u',
|
667
|
-
rpc: [ 'https://rpc-
|
668
|
-
faucets: [
|
667
|
+
rpc: [ 'https://rpc-mainnet.uniultra.xyz' ],
|
668
|
+
faucets: [],
|
669
669
|
nativeCurrency: { name: 'Unicorn Ultra', symbol: 'U2U', decimals: 18 },
|
670
670
|
infoURL: 'https://uniultra.xyz',
|
671
671
|
shortName: 'u2u',
|
@@ -676,7 +676,7 @@ const chainArray = [
|
|
676
676
|
{
|
677
677
|
icon: 'u2u',
|
678
678
|
name: 'U2U Explorer',
|
679
|
-
url: 'https://
|
679
|
+
url: 'https://u2uscan.xyz',
|
680
680
|
standard: 'EIP3091'
|
681
681
|
}
|
682
682
|
]
|
@@ -2584,6 +2584,53 @@ const chainArray = [
|
|
2584
2584
|
}
|
2585
2585
|
]
|
2586
2586
|
},
|
2587
|
+
{
|
2588
|
+
name: 'Redbelly Network Mainnet',
|
2589
|
+
shortName: 'rbn',
|
2590
|
+
chain: 'RBN',
|
2591
|
+
chainId: 151,
|
2592
|
+
networkId: 151,
|
2593
|
+
rpc: [],
|
2594
|
+
faucets: [],
|
2595
|
+
infoURL: 'https://redbelly.network',
|
2596
|
+
nativeCurrency: { name: 'Redbelly Network Coin', symbol: 'RBNT', decimals: 18 },
|
2597
|
+
status: 'incubating'
|
2598
|
+
},
|
2599
|
+
{
|
2600
|
+
name: 'Redbelly Network Devnet',
|
2601
|
+
shortName: 'rbn-devnet',
|
2602
|
+
chain: 'RBN',
|
2603
|
+
chainId: 152,
|
2604
|
+
networkId: 152,
|
2605
|
+
rpc: [],
|
2606
|
+
faucets: [],
|
2607
|
+
infoURL: 'https://redbelly.network',
|
2608
|
+
nativeCurrency: { name: 'Redbelly Network Coin', symbol: 'RBNT', decimals: 18 },
|
2609
|
+
status: 'incubating'
|
2610
|
+
},
|
2611
|
+
{
|
2612
|
+
name: 'Redbelly Network Testnet',
|
2613
|
+
shortName: 'rbn-testnet',
|
2614
|
+
chain: 'RBN',
|
2615
|
+
chainId: 153,
|
2616
|
+
networkId: 153,
|
2617
|
+
rpc: [],
|
2618
|
+
faucets: [],
|
2619
|
+
infoURL: 'https://redbelly.network',
|
2620
|
+
nativeCurrency: { name: 'Redbelly Network Coin', symbol: 'RBNT', decimals: 18 },
|
2621
|
+
status: 'incubating'
|
2622
|
+
},
|
2623
|
+
{
|
2624
|
+
name: 'Redbelly Network TGE',
|
2625
|
+
shortName: 'rbn-tge',
|
2626
|
+
chain: 'RBN',
|
2627
|
+
chainId: 154,
|
2628
|
+
networkId: 154,
|
2629
|
+
rpc: [],
|
2630
|
+
faucets: [],
|
2631
|
+
infoURL: 'https://redbelly.network',
|
2632
|
+
nativeCurrency: { name: 'Redbelly Network Coin', symbol: 'RBNT', decimals: 18 }
|
2633
|
+
},
|
2587
2634
|
{
|
2588
2635
|
name: 'Tenet Testnet',
|
2589
2636
|
title: 'Tenet Testnet',
|
@@ -9367,6 +9414,28 @@ const chainArray = [
|
|
9367
9414
|
slip44: 1,
|
9368
9415
|
explorers: []
|
9369
9416
|
},
|
9417
|
+
{
|
9418
|
+
name: 'Dubxcoin network',
|
9419
|
+
chain: 'DUBX',
|
9420
|
+
rpc: [ 'https://rpcmain.arabianchain.org' ],
|
9421
|
+
faucets: [],
|
9422
|
+
nativeCurrency: { name: 'Dubxcoin mainnet', symbol: 'DUBX', decimals: 18 },
|
9423
|
+
infoURL: 'https://arabianchain.org',
|
9424
|
+
shortName: 'dubx',
|
9425
|
+
chainId: 3269,
|
9426
|
+
networkId: 3269
|
9427
|
+
},
|
9428
|
+
{
|
9429
|
+
name: 'Dubxcoin testnet',
|
9430
|
+
chain: 'TESTDUBX',
|
9431
|
+
rpc: [ 'https://rpctestnet.arabianchain.org' ],
|
9432
|
+
faucets: [ 'https://faucet.arabianchain.org/' ],
|
9433
|
+
nativeCurrency: { name: 'Dubxcoin testnet', symbol: 'TDUBX', decimals: 18 },
|
9434
|
+
infoURL: 'https://arabianchain.org',
|
9435
|
+
shortName: 'testdubx',
|
9436
|
+
chainId: 3270,
|
9437
|
+
networkId: 3270
|
9438
|
+
},
|
9370
9439
|
{
|
9371
9440
|
name: 'Debounce Subnet Testnet',
|
9372
9441
|
chain: 'Debounce Network',
|
@@ -11853,7 +11922,8 @@ const chainArray = [
|
|
11853
11922
|
'https://mainnet.base.org/',
|
11854
11923
|
'https://developer-access-mainnet.base.org/',
|
11855
11924
|
'https://base.gateway.tenderly.co',
|
11856
|
-
'wss://base.gateway.tenderly.co'
|
11925
|
+
'wss://base.gateway.tenderly.co',
|
11926
|
+
'https://base.publicnode.com'
|
11857
11927
|
],
|
11858
11928
|
faucets: [],
|
11859
11929
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -15757,6 +15827,63 @@ const chainArray = [
|
|
15757
15827
|
}
|
15758
15828
|
]
|
15759
15829
|
},
|
15830
|
+
{
|
15831
|
+
name: 'Amplify Subnet',
|
15832
|
+
chain: 'AMPLIFY',
|
15833
|
+
rpc: [ 'https://subnets.avax.network/amplify/testnet/rpc' ],
|
15834
|
+
features: [ { name: 'EIP1559' } ],
|
15835
|
+
faucets: [],
|
15836
|
+
nativeCurrency: { name: 'AMP', symbol: 'AMP', decimals: 18 },
|
15837
|
+
infoURL: 'https://www.avax.network',
|
15838
|
+
shortName: 'amplify',
|
15839
|
+
chainId: 78430,
|
15840
|
+
networkId: 78430,
|
15841
|
+
explorers: [
|
15842
|
+
{
|
15843
|
+
name: 'AMPLIFY Explorer',
|
15844
|
+
url: 'https://subnets-test.avax.network/amplify',
|
15845
|
+
standard: 'EIP3091'
|
15846
|
+
}
|
15847
|
+
]
|
15848
|
+
},
|
15849
|
+
{
|
15850
|
+
name: 'Bulletin Subnet',
|
15851
|
+
chain: 'BULLETIN',
|
15852
|
+
rpc: [ 'https://subnets.avax.network/bulletin/testnet/rpc' ],
|
15853
|
+
features: [ { name: 'EIP1559' } ],
|
15854
|
+
faucets: [],
|
15855
|
+
nativeCurrency: { name: 'BLT', symbol: 'BLT', decimals: 18 },
|
15856
|
+
infoURL: 'https://www.avax.network',
|
15857
|
+
shortName: 'bulletin',
|
15858
|
+
chainId: 78431,
|
15859
|
+
networkId: 78431,
|
15860
|
+
explorers: [
|
15861
|
+
{
|
15862
|
+
name: 'BULLETIN Explorer',
|
15863
|
+
url: 'https://subnets-test.avax.network/bulletin',
|
15864
|
+
standard: 'EIP3091'
|
15865
|
+
}
|
15866
|
+
]
|
15867
|
+
},
|
15868
|
+
{
|
15869
|
+
name: 'Conduit Subnet',
|
15870
|
+
chain: 'CONDUIT',
|
15871
|
+
rpc: [ 'https://subnets.avax.network/conduit/testnet/rpc' ],
|
15872
|
+
features: [ { name: 'EIP1559' } ],
|
15873
|
+
faucets: [],
|
15874
|
+
nativeCurrency: { name: 'CON', symbol: 'CON', decimals: 18 },
|
15875
|
+
infoURL: 'https://www.avax.network',
|
15876
|
+
shortName: 'conduit',
|
15877
|
+
chainId: 78432,
|
15878
|
+
networkId: 78432,
|
15879
|
+
explorers: [
|
15880
|
+
{
|
15881
|
+
name: 'CONDUIT Explorer',
|
15882
|
+
url: 'https://subnets-test.avax.network/conduit',
|
15883
|
+
standard: 'EIP3091'
|
15884
|
+
}
|
15885
|
+
]
|
15886
|
+
},
|
15760
15887
|
{
|
15761
15888
|
name: 'Gold Smart Chain Testnet',
|
15762
15889
|
chain: 'STAND',
|
@@ -15926,7 +16053,8 @@ const chainArray = [
|
|
15926
16053
|
rpc: [
|
15927
16054
|
'https://goerli.base.org',
|
15928
16055
|
'https://base-goerli.gateway.tenderly.co',
|
15929
|
-
'wss://base-goerli.gateway.tenderly.co'
|
16056
|
+
'wss://base-goerli.gateway.tenderly.co',
|
16057
|
+
'https://base-goerli.publicnode.com'
|
15930
16058
|
],
|
15931
16059
|
faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
|
15932
16060
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|