@api3/logos 0.1.46 → 0.1.48

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.
@@ -8,6 +8,7 @@ const ApiProviderDxfeed = require('../logos/api-provider/Dxfeed.svg');
8
8
  const ApiProviderCoinpaprika = require('../logos/api-provider/Coinpaprika.svg');
9
9
  const ApiProviderCoingecko = require('../logos/api-provider/Coingecko.svg');
10
10
  const ApiProviderBlastapi = require('../logos/api-provider/Placeholder.svg');
11
+ const ApiProviderAnkr = require('../logos/api-provider/Ankr.svg');
11
12
  const ApiProviderPlaceholder = require('../logos/api-provider/Placeholder.svg');
12
13
  function sanitizeName(id) {
13
14
  return camelcase(id, {
@@ -37,6 +38,8 @@ function ApiProviderLogo(id, light = false) {
37
38
  return ApiProviderCoingecko;
38
39
  case "blastapi":
39
40
  return ApiProviderBlastapi;
41
+ case "ankr":
42
+ return ApiProviderAnkr;
40
43
  default:
41
44
  return light ? ApiProviderLogo(id) : ApiProviderPlaceholder;
42
45
  }
@@ -35,7 +35,7 @@ const Chain200810 = require('../logos/chain/Chain200810.svg');
35
35
  const Chain200901 = require('../logos/chain/Chain200901.svg');
36
36
  const Chain168587773 = require('../logos/chain/Chain168587773.svg');
37
37
  const Chain81457 = require('../logos/chain/Chain81457.svg');
38
- const Chain111 = require('../logos/chain/Chain111.svg');
38
+ const Chain808813 = require('../logos/chain/Placeholder.svg');
39
39
  const Chain60808 = require('../logos/chain/Chain60808.svg');
40
40
  const Chain97 = require('../logos/chain/Chain97.svg');
41
41
  const Chain56 = require('../logos/chain/Chain56.svg');
@@ -72,6 +72,8 @@ const Chain59141 = require('../logos/chain/Chain59141.svg');
72
72
  const Chain59144 = require('../logos/chain/Chain59144.svg');
73
73
  const Chain4201 = require('../logos/chain/Chain4201.svg');
74
74
  const Chain42 = require('../logos/chain/Chain42.svg');
75
+ const Chain1952959480 = require('../logos/chain/Placeholder.svg');
76
+ const Chain994873017 = require('../logos/chain/Placeholder.svg');
75
77
  const Chain3441006 = require('../logos/chain/Chain3441006.svg');
76
78
  const Chain169 = require('../logos/chain/Chain169.svg');
77
79
  const Chain5003 = require('../logos/chain/Chain5003.svg');
@@ -200,8 +202,8 @@ function ChainLogo(id, light = false) {
200
202
  return Chain168587773;
201
203
  case "81457":
202
204
  return Chain81457;
203
- case "111":
204
- return Chain111;
205
+ case "808813":
206
+ return Chain808813;
205
207
  case "60808":
206
208
  return Chain60808;
207
209
  case "97":
@@ -274,6 +276,10 @@ function ChainLogo(id, light = false) {
274
276
  return Chain4201;
275
277
  case "42":
276
278
  return Chain42;
279
+ case "1952959480":
280
+ return Chain1952959480;
281
+ case "994873017":
282
+ return Chain994873017;
277
283
  case "3441006":
278
284
  return Chain3441006;
279
285
  case "169":
@@ -1 +1 @@
1
- ["7701","7700","222000222","333000333"]
1
+ ["808813","7701","7700","1952959480","994873017","222000222","333000333"]
@@ -295,7 +295,7 @@ const SymbolWeEtHs = require('../logos/symbol/Weeths.svg');
295
295
  const SymbolInEth = require('../logos/symbol/Ineth.svg');
296
296
  const SymbolCfx = require('../logos/symbol/Cfx.svg');
297
297
  const SymbolRender = require('../logos/symbol/Placeholder.svg');
298
- const SymbolAnkrEth = require('../logos/symbol/Placeholder.svg');
298
+ const SymbolAnkrEth = require('../logos/symbol/Ankreth.svg');
299
299
  const SymbolPlaceholder = require('../logos/symbol/Placeholder.svg');
300
300
  function sanitizeName(id) {
301
301
  return camelcase(id, {
@@ -1 +1 @@
1
- ["ZRO","ZK","RENDER","ankrETH"]
1
+ ["ZRO","ZK","RENDER"]
@@ -1,6 +1,6 @@
1
- export { default as ApiProviderLogo } from './ApiProviderLogo.js';
2
- export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
3
1
  export { default as ChainLogo } from './ChainLogo.js';
4
2
  export { default as ChainLogoMissing } from './ChainLogoMissing.json';
5
3
  export { default as SymbolLogo } from './SymbolLogo.js';
6
4
  export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
5
+ export { default as ApiProviderLogo } from './ApiProviderLogo.js';
6
+ export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
package/dist/cjs/index.js CHANGED
@@ -1,6 +1,6 @@
1
- module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
2
- module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
3
1
  module.exports.ChainLogo = require('./ChainLogo.js');
4
2
  module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
5
3
  module.exports.SymbolLogo = require('./SymbolLogo.js');
6
4
  module.exports.SymbolLogoMissing = require('./SymbolLogoMissing.json');
5
+ module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
6
+ module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
@@ -8,6 +8,7 @@ import ApiProviderDxfeed from '../logos/api-provider/Dxfeed.svg';
8
8
  import ApiProviderCoinpaprika from '../logos/api-provider/Coinpaprika.svg';
9
9
  import ApiProviderCoingecko from '../logos/api-provider/Coingecko.svg';
10
10
  import ApiProviderBlastapi from '../logos/api-provider/Placeholder.svg';
11
+ import ApiProviderAnkr from '../logos/api-provider/Ankr.svg';
11
12
  import ApiProviderPlaceholder from '../logos/api-provider/Placeholder.svg';
12
13
  function sanitizeName(id) {
13
14
  return camelcase(id, {
@@ -37,6 +38,8 @@ function ApiProviderLogo(id, light = false) {
37
38
  return ApiProviderCoingecko;
38
39
  case "blastapi":
39
40
  return ApiProviderBlastapi;
41
+ case "ankr":
42
+ return ApiProviderAnkr;
40
43
  default:
41
44
  return light ? ApiProviderLogo(id) : ApiProviderPlaceholder;
42
45
  }
@@ -35,7 +35,7 @@ import Chain200810 from '../logos/chain/Chain200810.svg';
35
35
  import Chain200901 from '../logos/chain/Chain200901.svg';
36
36
  import Chain168587773 from '../logos/chain/Chain168587773.svg';
37
37
  import Chain81457 from '../logos/chain/Chain81457.svg';
38
- import Chain111 from '../logos/chain/Chain111.svg';
38
+ import Chain808813 from '../logos/chain/Placeholder.svg';
39
39
  import Chain60808 from '../logos/chain/Chain60808.svg';
40
40
  import Chain97 from '../logos/chain/Chain97.svg';
41
41
  import Chain56 from '../logos/chain/Chain56.svg';
@@ -72,6 +72,8 @@ import Chain59141 from '../logos/chain/Chain59141.svg';
72
72
  import Chain59144 from '../logos/chain/Chain59144.svg';
73
73
  import Chain4201 from '../logos/chain/Chain4201.svg';
74
74
  import Chain42 from '../logos/chain/Chain42.svg';
75
+ import Chain1952959480 from '../logos/chain/Placeholder.svg';
76
+ import Chain994873017 from '../logos/chain/Placeholder.svg';
75
77
  import Chain3441006 from '../logos/chain/Chain3441006.svg';
76
78
  import Chain169 from '../logos/chain/Chain169.svg';
77
79
  import Chain5003 from '../logos/chain/Chain5003.svg';
@@ -200,8 +202,8 @@ function ChainLogo(id, light = false) {
200
202
  return Chain168587773;
201
203
  case "81457":
202
204
  return Chain81457;
203
- case "111":
204
- return Chain111;
205
+ case "808813":
206
+ return Chain808813;
205
207
  case "60808":
206
208
  return Chain60808;
207
209
  case "97":
@@ -274,6 +276,10 @@ function ChainLogo(id, light = false) {
274
276
  return Chain4201;
275
277
  case "42":
276
278
  return Chain42;
279
+ case "1952959480":
280
+ return Chain1952959480;
281
+ case "994873017":
282
+ return Chain994873017;
277
283
  case "3441006":
278
284
  return Chain3441006;
279
285
  case "169":
@@ -1 +1 @@
1
- ["7701","7700","222000222","333000333"]
1
+ ["808813","7701","7700","1952959480","994873017","222000222","333000333"]
@@ -295,7 +295,7 @@ import SymbolWeEtHs from '../logos/symbol/Weeths.svg';
295
295
  import SymbolInEth from '../logos/symbol/Ineth.svg';
296
296
  import SymbolCfx from '../logos/symbol/Cfx.svg';
297
297
  import SymbolRender from '../logos/symbol/Placeholder.svg';
298
- import SymbolAnkrEth from '../logos/symbol/Placeholder.svg';
298
+ import SymbolAnkrEth from '../logos/symbol/Ankreth.svg';
299
299
  import SymbolPlaceholder from '../logos/symbol/Placeholder.svg';
300
300
  function sanitizeName(id) {
301
301
  return camelcase(id, {
@@ -1 +1 @@
1
- ["ZRO","ZK","RENDER","ankrETH"]
1
+ ["ZRO","ZK","RENDER"]
@@ -1,6 +1,6 @@
1
- export { default as ChainLogo } from './ChainLogo.js';
2
- export { default as ChainLogoMissing } from './ChainLogoMissing.json';
3
1
  export { default as ApiProviderLogo } from './ApiProviderLogo.js';
4
2
  export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
3
+ export { default as ChainLogo } from './ChainLogo.js';
4
+ export { default as ChainLogoMissing } from './ChainLogoMissing.json';
5
5
  export { default as SymbolLogo } from './SymbolLogo.js';
6
6
  export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
package/dist/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
- export { default as ChainLogo } from './ChainLogo.js';
2
- export { default as ChainLogoMissing } from './ChainLogoMissing.json';
3
1
  export { default as ApiProviderLogo } from './ApiProviderLogo.js';
4
2
  export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
3
+ export { default as ChainLogo } from './ChainLogo.js';
4
+ export { default as ChainLogoMissing } from './ChainLogoMissing.json';
5
5
  export { default as SymbolLogo } from './SymbolLogo.js';
6
6
  export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
2
+ <circle cx="21" cy="21" r="20" fill="#579BF0"/>
3
+ <circle cx="21" cy="20.5" r="4.5" stroke="#F3F3F3" stroke-width="3"/>
4
+ <path stroke="#F3F3F3" stroke-width="3" d="M10.5 17.5v-2.395a1 1 0 0 1 .536-.886l9.5-4.976a1 1 0 0 1 .928 0l9.5 4.976a1 1 0 0 1 .536.886V17.5M31.5 24v2.395a1 1 0 0 1-.536.886l-9.5 4.976a1 1 0 0 1-.928 0l-9.5-4.976a1 1 0 0 1-.536-.886V24M21 25.5v7"/>
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
2
+ <path fill="#FFE81C" d="M18.2721 0.731664C19.9602 -0.243888 22.04 -0.243888 23.728 0.731664L37.1722 8.50106C38.8602 9.47662 39.9001 11.2795 39.9001 13.2306V28.7694C39.9001 30.7205 38.8602 32.5234 37.1722 33.499L23.728 41.2684C22.04 42.2439 19.9602 42.2439 18.2721 41.2684L4.82808 33.499C3.14 32.5234 2.1001 30.7205 2.1001 28.7694V13.2306C2.1001 11.2795 3.14 9.47662 4.82808 8.50106L18.2721 0.731664Z"/>
3
+ <path fill="black" d="M20.9954 25.3858L27.8981 21.2133L20.9954 18.0098L14.1011 21.2133L20.9954 25.3858Z" opacity="0.6"/>
4
+ <path fill="black" d="M20.9954 18.0102V9.50391L14.1011 21.2139L20.9954 25.3862V18.0102Z" opacity="0.45"/>
5
+ <path fill="black" d="M20.9956 25.3862L27.8983 21.2139L20.9956 9.50391V18.0102V25.3862Z" opacity="0.8"/>
6
+ <path fill="black" d="M20.9954 26.7205L14.1011 22.5566L20.9954 32.4991V26.7205Z" opacity="0.45"/>
7
+ <path fill="black" d="M27.8983 22.5566L20.9956 26.7205V32.4991L27.8983 22.5566Z" opacity="0.8"/>
8
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@api3/logos",
3
- "version": "0.1.46",
3
+ "version": "0.1.48",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "repository": {
@@ -26,15 +26,15 @@
26
26
  "@babel/preset-react": "^7.24.7",
27
27
  "@changesets/changelog-github": "^0.5.0",
28
28
  "@changesets/cli": "^2.27.7",
29
- "@api3/api-integrations": "^1.23.0",
30
- "@api3/chains": "^9.2.1",
29
+ "@api3/api-integrations": "^1.24.0",
30
+ "@api3/chains": "^10.0.0",
31
31
  "dropbox": "^10.34.0",
32
32
  "node-fetch": "^2.7.0",
33
33
  "dotenv": "^16.4.5",
34
34
  "prettier": "^3.3.3",
35
35
  "rimraf": "^6.0.1",
36
- "@typescript-eslint/eslint-plugin": "^8.1.0",
37
- "@typescript-eslint/parser": "^8.1.0",
36
+ "@typescript-eslint/eslint-plugin": "^8.2.0",
37
+ "@typescript-eslint/parser": "^8.2.0",
38
38
  "eslint-config-prettier": "^9.1.0",
39
39
  "svgo": "^3.3.0"
40
40
  },