rango-sdk 0.0.2 → 0.0.3
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/lib/types/api/meta.d.ts +2 -2
- package/package.json +1 -1
package/lib/types/api/meta.d.ts
CHANGED
|
@@ -54,14 +54,14 @@ export declare type Token = {
|
|
|
54
54
|
/**
|
|
55
55
|
* Metadata info for all blockchains and tokens supported
|
|
56
56
|
*
|
|
57
|
-
* @property {BlockchainMeta[]}
|
|
57
|
+
* @property {BlockchainMeta[]} blockchains - List of all supported blockchains
|
|
58
58
|
* @property {Token[]} tokens - List of all tokens
|
|
59
59
|
* @property {Token[]} popularTokens - List of popular tokens, a subset of tokens field
|
|
60
60
|
* @property {SwapperMetaDto[]} swappers - List of all DEXes & Bridges
|
|
61
61
|
*
|
|
62
62
|
*/
|
|
63
63
|
export declare type MetaResponse = {
|
|
64
|
-
|
|
64
|
+
blockchains: BlockchainMeta[];
|
|
65
65
|
tokens: Token[];
|
|
66
66
|
popularTokens: Token[];
|
|
67
67
|
swappers: SwapperMetaDto[];
|