@dodoex/api 3.0.3-zetachain.21 → 3.0.3-zetachain.22
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types/gql/gql.d.ts +1 -1
- package/dist/types/gql/graphql.d.ts +3 -1
- package/package.json +1 -1
package/dist/types/gql/gql.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare function graphql(source: '\n query FetchErc20SwapCrossChainLis
|
|
|
5
5
|
/**
|
|
6
6
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
7
7
|
*/
|
|
8
|
-
export declare function graphql(source: '\n query Cross_chain_zetachain_token_list(\n $where: Cross_chain_zetachain_tokentokenlistFilter\n ) {\n cross_chain_zetachain_token_list(where: $where) {\n name\n address\n symbol\n decimals\n chainId\n }\n }\n '): typeof import('./graphql').Cross_Chain_Zetachain_Token_ListDocument;
|
|
8
|
+
export declare function graphql(source: '\n query Cross_chain_zetachain_token_list(\n $where: Cross_chain_zetachain_tokentokenlistFilter\n ) {\n cross_chain_zetachain_token_list(where: $where) {\n name\n address\n symbol\n decimals\n chainId\n supportTargetChain\n }\n }\n '): typeof import('./graphql').Cross_Chain_Zetachain_Token_ListDocument;
|
|
9
9
|
/**
|
|
10
10
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
11
11
|
*/
|
|
@@ -2294,6 +2294,7 @@ export type Cross_Chain_Zetachain_TokenCrossChainTokenlist = {
|
|
|
2294
2294
|
name?: Maybe<Scalars['String']['output']>;
|
|
2295
2295
|
position?: Maybe<Scalars['Int']['output']>;
|
|
2296
2296
|
slippage?: Maybe<Scalars['String']['output']>;
|
|
2297
|
+
supportTargetChain?: Maybe<Scalars['Boolean']['output']>;
|
|
2297
2298
|
symbol?: Maybe<Scalars['String']['output']>;
|
|
2298
2299
|
};
|
|
2299
2300
|
export type Cross_Chain_Zetachain_TokentokenlistFilter = {
|
|
@@ -3150,7 +3151,7 @@ export type Curve_Stableswap_NgPool = {
|
|
|
3150
3151
|
poolType: Scalars['String']['output'];
|
|
3151
3152
|
reserves?: Maybe<Array<Maybe<Curve_Stableswap_NgPoolReserve>>>;
|
|
3152
3153
|
symbol: Scalars['String']['output'];
|
|
3153
|
-
totalSupply: Scalars['
|
|
3154
|
+
totalSupply: Scalars['BigDecimal']['output'];
|
|
3154
3155
|
traderCount: Scalars['BigInt']['output'];
|
|
3155
3156
|
tvl: Scalars['BigDecimal']['output'];
|
|
3156
3157
|
virtualPrice: Scalars['BigDecimal']['output'];
|
|
@@ -19352,6 +19353,7 @@ export type Cross_Chain_Zetachain_Token_ListQuery = {
|
|
|
19352
19353
|
symbol?: string | null;
|
|
19353
19354
|
decimals?: number | null;
|
|
19354
19355
|
chainId?: number | null;
|
|
19356
|
+
supportTargetChain?: boolean | null;
|
|
19355
19357
|
} | null> | null;
|
|
19356
19358
|
};
|
|
19357
19359
|
export type FetchErc20ForecastSlippageQueryVariables = Exact<{
|