eth-chainlist 0.0.61 → 0.0.62
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 +39 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.62 (2023-01-22)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.61 ([1d9fc8b](https://github.com/poowf/eth-chainlist/commit/1d9fc8b966d8fffe055986976d9d95b2cf8d82d7))
|
9
|
+
* update chain data ([d8ebf40](https://github.com/poowf/eth-chainlist/commit/d8ebf40e0b83461cdc3f1c17a87dc9bf4a7a6e26))
|
10
|
+
|
3
11
|
### 0.0.61 (2023-01-21)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2809,6 +2809,26 @@ const chainArray = [
|
|
2809
2809
|
}
|
2810
2810
|
]
|
2811
2811
|
},
|
2812
|
+
{
|
2813
|
+
name: 'Omax Mainnet',
|
2814
|
+
chain: 'OMAX Chain',
|
2815
|
+
rpc: [ 'https://mainapi.omaxray.com' ],
|
2816
|
+
faucets: [ 'https://faucet.omaxray.com/' ],
|
2817
|
+
nativeCurrency: { name: 'OMAX COIN', symbol: 'OMAX', decimals: 18 },
|
2818
|
+
infoURL: 'https://www.omaxcoin.com/',
|
2819
|
+
shortName: 'omax',
|
2820
|
+
chainId: 311,
|
2821
|
+
networkId: 311,
|
2822
|
+
icon: 'omaxchain',
|
2823
|
+
explorers: [
|
2824
|
+
{
|
2825
|
+
name: 'Omax Chain Explorer',
|
2826
|
+
url: 'https://omaxray.com',
|
2827
|
+
icon: 'omaxray',
|
2828
|
+
standard: 'EIP3091'
|
2829
|
+
}
|
2830
|
+
]
|
2831
|
+
},
|
2812
2832
|
{
|
2813
2833
|
name: 'Filecoin - Mainnet',
|
2814
2834
|
chain: 'FIL',
|
@@ -7605,6 +7625,25 @@ const chainArray = [
|
|
7605
7625
|
}
|
7606
7626
|
]
|
7607
7627
|
},
|
7628
|
+
{
|
7629
|
+
name: 'Blockton Blockchain',
|
7630
|
+
chain: 'Blockton Blockchain',
|
7631
|
+
icon: 'bton',
|
7632
|
+
rpc: [ 'https://rpc.blocktonscan.com/' ],
|
7633
|
+
faucets: [ 'https://faucet.blocktonscan.com/' ],
|
7634
|
+
nativeCurrency: { name: 'BLOCKTON', symbol: 'BTON', decimals: 18 },
|
7635
|
+
infoURL: 'https://blocktoncoin.com',
|
7636
|
+
shortName: 'BTON',
|
7637
|
+
chainId: 8272,
|
7638
|
+
networkId: 8272,
|
7639
|
+
explorers: [
|
7640
|
+
{
|
7641
|
+
name: 'Blockton Explorer',
|
7642
|
+
url: 'https://blocktonscan.com',
|
7643
|
+
standard: 'none'
|
7644
|
+
}
|
7645
|
+
]
|
7646
|
+
},
|
7608
7647
|
{
|
7609
7648
|
name: 'KorthoTest',
|
7610
7649
|
chain: 'Kortho',
|