eth-chainlist 0.0.408 → 0.0.409
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 +31 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.409 (2024-05-21)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.408 ([20b3260](https://github.com/poowf/eth-chainlist/commit/20b3260eeb9338794387932d4b046571568131fa))
|
9
|
+
* update chain data ([978e39f](https://github.com/poowf/eth-chainlist/commit/978e39fa51ee45e4fd3a74d01cf958698e3274c5))
|
10
|
+
|
3
11
|
### 0.0.408 (2024-05-20)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -27332,23 +27332,49 @@ const chainArray = [
|
|
27332
27332
|
}
|
27333
27333
|
]
|
27334
27334
|
},
|
27335
|
+
{
|
27336
|
+
name: 'Bitfinity Network Mainnet',
|
27337
|
+
chain: 'BFT',
|
27338
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
27339
|
+
rpc: [ 'https://mainnet.bitfinity.network' ],
|
27340
|
+
faucets: [],
|
27341
|
+
nativeCurrency: { name: 'Bitfinity Token', symbol: 'BFT', decimals: 18 },
|
27342
|
+
infoURL: 'https://bitfinity.network',
|
27343
|
+
shortName: 'bitfinity-mainnet',
|
27344
|
+
chainId: 355110,
|
27345
|
+
networkId: 355110,
|
27346
|
+
explorers: [
|
27347
|
+
{
|
27348
|
+
name: 'Bitfinity Mainnet Block Explorer',
|
27349
|
+
url: 'https://explorer.testnet.bitfinity.network',
|
27350
|
+
icon: 'bitfinity',
|
27351
|
+
standard: 'EIP3091'
|
27352
|
+
}
|
27353
|
+
]
|
27354
|
+
},
|
27335
27355
|
{
|
27336
27356
|
name: 'Bitfinity Network Testnet',
|
27337
27357
|
chain: 'BFT',
|
27358
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
27338
27359
|
rpc: [ 'https://testnet.bitfinity.network' ],
|
27339
27360
|
faucets: [ 'https://bitfinity.network/faucet' ],
|
27340
|
-
nativeCurrency: { name: '
|
27361
|
+
nativeCurrency: { name: 'Bitfinity Token', symbol: 'BFT', decimals: 18 },
|
27341
27362
|
infoURL: 'https://bitfinity.network',
|
27342
|
-
shortName: '
|
27363
|
+
shortName: 'bitfinity-testnet',
|
27343
27364
|
chainId: 355113,
|
27344
27365
|
networkId: 355113,
|
27345
|
-
slip44: 1,
|
27346
27366
|
explorers: [
|
27347
27367
|
{
|
27348
|
-
name: 'Bitfinity Block Explorer',
|
27349
|
-
url: 'https://explorer.bitfinity.network',
|
27368
|
+
name: 'Bitfinity Testnet Block Explorer',
|
27369
|
+
url: 'https://explorer.testnet.bitfinity.network',
|
27350
27370
|
icon: 'bitfinity',
|
27351
27371
|
standard: 'EIP3091'
|
27372
|
+
},
|
27373
|
+
{
|
27374
|
+
name: 'Bitfinity Testnet Block Explorer',
|
27375
|
+
url: 'https://bitfinity-test.dex.guru',
|
27376
|
+
icon: 'dexguru',
|
27377
|
+
standard: 'EIP3091'
|
27352
27378
|
}
|
27353
27379
|
]
|
27354
27380
|
},
|