@api3/logos 0.1.44 → 0.1.45
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/dist/cjs/ChainLogo.js +9 -0
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +2 -2
- package/dist/esm/ChainLogo.js +9 -0
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/logos/chain/Chain1030.svg +4 -0
- package/dist/logos/chain/Chain71.svg +4 -0
- package/dist/logos/chain/Chain71Light.svg +4 -0
- package/package.json +4 -4
package/dist/cjs/ChainLogo.js
CHANGED
|
@@ -15,6 +15,7 @@ const Chain59140Light = require('../logos/chain/Chain59140Light.svg');
|
|
|
15
15
|
const Chain59141Light = require('../logos/chain/Chain59141Light.svg');
|
|
16
16
|
const Chain59144Light = require('../logos/chain/Chain59144Light.svg');
|
|
17
17
|
const Chain60808Light = require('../logos/chain/Chain60808Light.svg');
|
|
18
|
+
const Chain71Light = require('../logos/chain/Chain71Light.svg');
|
|
18
19
|
const Chain81457Light = require('../logos/chain/Chain81457Light.svg');
|
|
19
20
|
const Chain82Light = require('../logos/chain/Chain82Light.svg');
|
|
20
21
|
const Chain25 = require('../logos/chain/Chain25.svg');
|
|
@@ -43,6 +44,8 @@ const Chain223 = require('../logos/chain/Chain223.svg');
|
|
|
43
44
|
const Chain325000 = require('../logos/chain/Chain325000.svg');
|
|
44
45
|
const Chain7701 = require('../logos/chain/Placeholder.svg');
|
|
45
46
|
const Chain7700 = require('../logos/chain/Placeholder.svg');
|
|
47
|
+
const Chain71 = require('../logos/chain/Chain71.svg');
|
|
48
|
+
const Chain1030 = require('../logos/chain/Chain1030.svg');
|
|
46
49
|
const Chain1115 = require('../logos/chain/Chain1115.svg');
|
|
47
50
|
const Chain1116 = require('../logos/chain/Chain1116.svg');
|
|
48
51
|
const Chain338 = require('../logos/chain/Chain338.svg');
|
|
@@ -157,6 +160,8 @@ function ChainLogo(id, light = false) {
|
|
|
157
160
|
return Chain59144Light;
|
|
158
161
|
case "60808light":
|
|
159
162
|
return Chain60808Light;
|
|
163
|
+
case "71light":
|
|
164
|
+
return Chain71Light;
|
|
160
165
|
case "81457light":
|
|
161
166
|
return Chain81457Light;
|
|
162
167
|
case "82light":
|
|
@@ -213,6 +218,10 @@ function ChainLogo(id, light = false) {
|
|
|
213
218
|
return Chain7701;
|
|
214
219
|
case "7700":
|
|
215
220
|
return Chain7700;
|
|
221
|
+
case "71":
|
|
222
|
+
return Chain71;
|
|
223
|
+
case "1030":
|
|
224
|
+
return Chain1030;
|
|
216
225
|
case "1115":
|
|
217
226
|
return Chain1115;
|
|
218
227
|
case "1116":
|
package/dist/cjs/index.d.ts
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 SymbolLogo } from './SymbolLogo.js';
|
|
4
2
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
5
3
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
6
4
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
5
|
+
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
|
+
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
module.exports.ChainLogo = require('./ChainLogo.js');
|
|
2
|
-
module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
|
|
3
1
|
module.exports.SymbolLogo = require('./SymbolLogo.js');
|
|
4
2
|
module.exports.SymbolLogoMissing = require('./SymbolLogoMissing.json');
|
|
5
3
|
module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
|
|
6
4
|
module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
|
|
5
|
+
module.exports.ChainLogo = require('./ChainLogo.js');
|
|
6
|
+
module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
|
package/dist/esm/ChainLogo.js
CHANGED
|
@@ -15,6 +15,7 @@ import Chain59140Light from '../logos/chain/Chain59140Light.svg';
|
|
|
15
15
|
import Chain59141Light from '../logos/chain/Chain59141Light.svg';
|
|
16
16
|
import Chain59144Light from '../logos/chain/Chain59144Light.svg';
|
|
17
17
|
import Chain60808Light from '../logos/chain/Chain60808Light.svg';
|
|
18
|
+
import Chain71Light from '../logos/chain/Chain71Light.svg';
|
|
18
19
|
import Chain81457Light from '../logos/chain/Chain81457Light.svg';
|
|
19
20
|
import Chain82Light from '../logos/chain/Chain82Light.svg';
|
|
20
21
|
import Chain25 from '../logos/chain/Chain25.svg';
|
|
@@ -43,6 +44,8 @@ import Chain223 from '../logos/chain/Chain223.svg';
|
|
|
43
44
|
import Chain325000 from '../logos/chain/Chain325000.svg';
|
|
44
45
|
import Chain7701 from '../logos/chain/Placeholder.svg';
|
|
45
46
|
import Chain7700 from '../logos/chain/Placeholder.svg';
|
|
47
|
+
import Chain71 from '../logos/chain/Chain71.svg';
|
|
48
|
+
import Chain1030 from '../logos/chain/Chain1030.svg';
|
|
46
49
|
import Chain1115 from '../logos/chain/Chain1115.svg';
|
|
47
50
|
import Chain1116 from '../logos/chain/Chain1116.svg';
|
|
48
51
|
import Chain338 from '../logos/chain/Chain338.svg';
|
|
@@ -157,6 +160,8 @@ function ChainLogo(id, light = false) {
|
|
|
157
160
|
return Chain59144Light;
|
|
158
161
|
case "60808light":
|
|
159
162
|
return Chain60808Light;
|
|
163
|
+
case "71light":
|
|
164
|
+
return Chain71Light;
|
|
160
165
|
case "81457light":
|
|
161
166
|
return Chain81457Light;
|
|
162
167
|
case "82light":
|
|
@@ -213,6 +218,10 @@ function ChainLogo(id, light = false) {
|
|
|
213
218
|
return Chain7701;
|
|
214
219
|
case "7700":
|
|
215
220
|
return Chain7700;
|
|
221
|
+
case "71":
|
|
222
|
+
return Chain71;
|
|
223
|
+
case "1030":
|
|
224
|
+
return Chain1030;
|
|
216
225
|
case "1115":
|
|
217
226
|
return Chain1115;
|
|
218
227
|
case "1116":
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
2
2
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
3
|
-
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
4
|
-
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
5
3
|
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
4
|
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
5
|
+
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
6
|
+
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
2
2
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
3
|
-
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
4
|
-
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
5
3
|
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
4
|
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
5
|
+
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
6
|
+
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="white" d="M15.8233 13.9269L11.9804 17.758L10.0696 15.8531L13.9125 12.022L11.9959 10.1094L6.21509 15.8744L11.9591 21.6008L17.7399 15.8377L15.8233 13.9269Z"/>
|
|
3
|
+
<path fill="#38A1DB" d="M19.6798 10.0317L12.025 2.40039L4.31982 10.0839L4.34504 13.8898L11.9901 6.26631L19.6663 13.9188L19.6798 10.0317Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="white" d="M15.8233 13.9269L11.9804 17.758L10.0696 15.8531L13.9125 12.022L11.9959 10.1094L6.21509 15.8744L11.9591 21.6008L17.7399 15.8377L15.8233 13.9269Z"/>
|
|
3
|
+
<path fill="#6C6D6D" d="M19.6798 10.0317L12.025 2.40039L4.31982 10.0839L4.34504 13.8898L11.9901 6.26631L19.6663 13.9188L19.6798 10.0317Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="#222222" d="M15.8233 13.9269L11.9804 17.758L10.0696 15.8531L13.9125 12.022L11.9959 10.1094L6.21509 15.8744L11.9591 21.6008L17.7399 15.8377L15.8233 13.9269Z"/>
|
|
3
|
+
<path fill="#878888" d="M19.6798 10.0317L12.025 2.40039L4.31982 10.0839L4.34504 13.8898L11.9901 6.26631L19.6663 13.9188L19.6798 10.0317Z"/>
|
|
4
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@api3/logos",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"repository": {
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@changesets/changelog-github": "^0.5.0",
|
|
28
28
|
"@changesets/cli": "^2.27.7",
|
|
29
29
|
"@api3/api-integrations": "^1.20.0",
|
|
30
|
-
"@api3/chains": "^9.
|
|
30
|
+
"@api3/chains": "^9.2.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.0.
|
|
37
|
-
"@typescript-eslint/parser": "^8.0.
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "^8.0.1",
|
|
37
|
+
"@typescript-eslint/parser": "^8.0.1",
|
|
38
38
|
"eslint-config-prettier": "^9.1.0",
|
|
39
39
|
"svgo": "^3.3.0"
|
|
40
40
|
},
|