@subwallet/chain-list 0.0.6 → 0.0.7

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/packageInfo.js CHANGED
@@ -7,5 +7,5 @@ export const packageInfo = {
7
7
  name: '@subwallet/chain-list',
8
8
  path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
9
9
  type: 'esm',
10
- version: '0.0.6'
10
+ version: '0.0.7'
11
11
  };
package/types.d.ts CHANGED
@@ -32,7 +32,7 @@ export declare enum _SubstrateChainType {
32
32
  export interface _ChainInfo {
33
33
  slug: string;
34
34
  name: string;
35
- logo: string;
35
+ logo: string | null;
36
36
  chainStatus: _ChainStatus;
37
37
  isTestnet: boolean;
38
38
  providers: Record<string, string>;
@@ -42,6 +42,7 @@ export interface _ChainInfo {
42
42
  export interface _ChainAsset {
43
43
  originChain: string;
44
44
  slug: string;
45
+ logo: string | null;
45
46
  name: string;
46
47
  symbol: string;
47
48
  decimals: number | null;
@@ -82,6 +83,7 @@ export interface _MultiChainAsset {
82
83
  name: string;
83
84
  symbol: string;
84
85
  priceId: string;
86
+ logo: string | null;
85
87
  }
86
88
  export declare enum _AssetRefPath {
87
89
  XCM = "XCM"