eth-chainlist 0.0.75 → 0.0.76

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.76 (2023-02-13)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.75 ([71d5d2e](https://github.com/poowf/eth-chainlist/commit/71d5d2e8ba3b9600982c362f82f565d78d301160))
9
+ * update chain data ([71b4ed3](https://github.com/poowf/eth-chainlist/commit/71b4ed335c89df02933bec60c78614f056065d89))
10
+
3
11
  ### 0.0.75 (2023-02-12)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -3769,6 +3769,24 @@ const chainArray = [
3769
3769
  }
3770
3770
  ]
3771
3771
  },
3772
+ {
3773
+ name: 'Canto Testnet',
3774
+ chain: 'Canto Tesnet',
3775
+ rpc: [ 'https://eth.plexnode.wtf/' ],
3776
+ faucets: [],
3777
+ nativeCurrency: { name: 'Canto', symbol: 'CANTO', decimals: 18 },
3778
+ infoURL: 'https://canto.io',
3779
+ shortName: 'tcanto',
3780
+ chainId: 740,
3781
+ networkId: 740,
3782
+ explorers: [
3783
+ {
3784
+ name: 'Canto Tesnet Explorer (Neobase)',
3785
+ url: 'http://testnet-explorer.canto.neobase.one',
3786
+ standard: 'none'
3787
+ }
3788
+ ]
3789
+ },
3772
3790
  {
3773
3791
  name: 'Vention Smart Chain Testnet',
3774
3792
  chain: 'VSCT',
@@ -9207,6 +9225,25 @@ const chainArray = [
9207
9225
  chainId: 16001,
9208
9226
  networkId: 16001
9209
9227
  },
9228
+ {
9229
+ name: 'AirDAO Mainnet',
9230
+ chain: 'ambnet',
9231
+ icon: 'airdao',
9232
+ rpc: [ 'https://network.ambrosus.io' ],
9233
+ faucets: [],
9234
+ nativeCurrency: { name: 'Amber', symbol: 'AMB', decimals: 18 },
9235
+ infoURL: 'https://airdao.io',
9236
+ shortName: 'airdao',
9237
+ chainId: 16718,
9238
+ networkId: 16718,
9239
+ explorers: [
9240
+ {
9241
+ name: 'AirDAO Network Explorer',
9242
+ url: 'https://airdao.io/explorer',
9243
+ standard: 'none'
9244
+ }
9245
+ ]
9246
+ },
9210
9247
  {
9211
9248
  name: 'IVAR Chain Testnet',
9212
9249
  chain: 'IVAR',
@@ -9402,6 +9439,25 @@ const chainArray = [
9402
9439
  }
9403
9440
  ]
9404
9441
  },
9442
+ {
9443
+ name: 'AirDAO Testnet',
9444
+ chain: 'ambnet-test',
9445
+ icon: 'airdao',
9446
+ rpc: [ 'https://network.ambrosus-test.io' ],
9447
+ faucets: [],
9448
+ nativeCurrency: { name: 'Amber', symbol: 'AMB', decimals: 18 },
9449
+ infoURL: 'https://testnet.airdao.io',
9450
+ shortName: 'airdao-test',
9451
+ chainId: 22040,
9452
+ networkId: 22040,
9453
+ explorers: [
9454
+ {
9455
+ name: 'AirDAO Network Explorer',
9456
+ url: 'https://testnet.airdao.io/explorer',
9457
+ standard: 'none'
9458
+ }
9459
+ ]
9460
+ },
9405
9461
  {
9406
9462
  name: 'MAP Mainnet',
9407
9463
  chain: 'MAP',
@@ -11217,6 +11273,47 @@ const chainArray = [
11217
11273
  }
11218
11274
  ]
11219
11275
  },
11276
+ {
11277
+ name: 'VeChain',
11278
+ chain: 'VeChain',
11279
+ rpc: [],
11280
+ faucets: [],
11281
+ nativeCurrency: { name: 'VeChain', symbol: 'VET', decimals: 18 },
11282
+ infoURL: 'https://vechain.org',
11283
+ shortName: 'vechain',
11284
+ chainId: 100009,
11285
+ networkId: 100009,
11286
+ explorers: [
11287
+ {
11288
+ name: 'VeChain Stats',
11289
+ url: 'https://vechainstats.com',
11290
+ standard: 'none'
11291
+ },
11292
+ {
11293
+ name: 'VeChain Explorer',
11294
+ url: 'https://explore.vechain.org',
11295
+ standard: 'none'
11296
+ }
11297
+ ]
11298
+ },
11299
+ {
11300
+ name: 'VeChain Testnet',
11301
+ chain: 'VeChain',
11302
+ rpc: [],
11303
+ faucets: [ 'https://faucet.vecha.in' ],
11304
+ nativeCurrency: { name: 'VeChain', symbol: 'VET', decimals: 18 },
11305
+ infoURL: 'https://vechain.org',
11306
+ shortName: 'vechain-testnet',
11307
+ chainId: 100010,
11308
+ networkId: 100010,
11309
+ explorers: [
11310
+ {
11311
+ name: 'VeChain Explorer',
11312
+ url: 'https://explore-testnet.vechain.org',
11313
+ standard: 'none'
11314
+ }
11315
+ ]
11316
+ },
11220
11317
  {
11221
11318
  name: 'Deprecated Chiado Testnet',
11222
11319
  chain: 'CHI1',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {