cookietrack-types
Advanced tools
Comparing version 1.2.0 to 1.3.0
@@ -115,2 +115,15 @@ /*! | ||
} | ||
export interface ChainTokenData { | ||
tokens: TokenData[]; | ||
logos: LogoData[]; | ||
blacklist: (Address | SolAddress | TerraAddress)[]; | ||
} | ||
export interface TokenData { | ||
address: Address | SolAddress | TerraAddress; | ||
symbol: string; | ||
} | ||
export interface LogoData { | ||
symbol: string; | ||
logo: URL; | ||
} | ||
export interface APIResponse { | ||
@@ -117,0 +130,0 @@ status: 'ok' | 'error'; |
{ | ||
"name": "cookietrack-types", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Common Typings for CookieTrack.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -145,3 +145,3 @@ /*! | ||
export interface ABITupleIO { | ||
type: 'tuple[]', | ||
type: 'tuple[]' | ||
components: ABIIO[] | ||
@@ -166,2 +166,19 @@ } | ||
// Chain Token Data Interface: | ||
export interface ChainTokenData { | ||
tokens: TokenData[] | ||
logos: LogoData[] | ||
blacklist: (Address | SolAddress | TerraAddress)[] | ||
} | ||
export interface TokenData { | ||
address: Address | SolAddress | TerraAddress | ||
symbol: string | ||
} | ||
export interface LogoData { | ||
symbol: string | ||
logo: URL | ||
} | ||
/* ========================================================================================================================================================================= */ | ||
// API Response Interface: | ||
@@ -168,0 +185,0 @@ export interface APIResponse { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12854
355