@dodoex/api 3.0.0-beta.4 → 3.0.0-taiko.2
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/chainConfig/chain.d.ts +2 -1
- package/dist/chainConfig/index.d.ts +1 -0
- package/dist/chainConfig/platform.d.ts +4 -0
- package/dist/cjs/chainConfig/chain.d.ts +2 -1
- package/dist/cjs/chainConfig/index.d.ts +1 -0
- package/dist/cjs/chainConfig/platform.d.ts +4 -0
- package/dist/cjs/gql/gql.d.ts +8 -0
- package/dist/cjs/gql/graphql.d.ts +755 -1515
- package/dist/cjs/helper/RestApiRequests.d.ts +2 -2
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.d.ts +3 -1
- package/dist/cjs/services/SwapWidgetApi.d.ts +208 -3
- package/dist/cjs/services/TokenApi/index.d.ts +16 -0
- package/dist/cjs/services/swap/SwapApi.d.ts +8 -0
- package/dist/cjs/services/swap/graphqlQuery.d.ts +5 -0
- package/dist/cjs/services/system/SystemApi.d.ts +8 -0
- package/dist/cjs/services/system/graphqlQuery.d.ts +5 -0
- package/dist/gql/gql.d.ts +8 -0
- package/dist/gql/graphql.d.ts +755 -1515
- package/dist/helper/RestApiRequests.d.ts +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/services/SwapWidgetApi.d.ts +208 -3
- package/dist/services/TokenApi/index.d.ts +16 -0
- package/dist/services/swap/SwapApi.d.ts +8 -0
- package/dist/services/swap/graphqlQuery.d.ts +5 -0
- package/dist/services/system/SystemApi.d.ts +8 -0
- package/dist/services/system/graphqlQuery.d.ts +5 -0
- package/package.json +1 -1
package/dist/cjs/gql/gql.d.ts
CHANGED
|
@@ -38,3 +38,11 @@ export declare function graphql(source: '\n query FetchPoolSwapList(\n $
|
|
|
38
38
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
39
39
|
*/
|
|
40
40
|
export declare function graphql(source: '\n query FetchLiquidityPositions(\n $id: ID!\n $first: Int\n $skip: Int\n $where: LiquidityPosition_filter\n $miningWhere: LiquidityPosition_filter\n $orderBy: LiquidityPosition_orderBy\n $orderDirection: OrderDirection\n ) {\n balance: liquidityPositions(\n first: $first\n skip: $skip\n where: $where\n orderBy: $orderBy\n orderDirection: $orderDirection\n ) {\n id\n liquidityTokenBalance\n }\n mining: liquidityPositions(\n first: $first\n skip: $skip\n where: $miningWhere\n orderBy: $orderBy\n orderDirection: $orderDirection\n ) {\n id\n liquidityTokenInMining\n }\n pair(id: $id) {\n lastTradePrice\n baseLpToken {\n id\n decimals\n }\n quoteLpToken {\n id\n decimals\n }\n baseToken {\n id\n symbol\n name\n decimals\n }\n quoteToken {\n id\n symbol\n name\n decimals\n }\n }\n }\n '): typeof import('./graphql').FetchLiquidityPositionsDocument;
|
|
41
|
+
/**
|
|
42
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
43
|
+
*/
|
|
44
|
+
export declare function graphql(source: '\n query FetchUserSwapOrderHistories($where: User_swapswapFilter) {\n user_swap_orderHistories(where: $where) {\n count\n page\n list {\n chainId\n createdAt\n fromAmount\n fromTokenDecimals\n fromTokenPrice\n fromTokenSymbol\n fromTokenAddress\n fromTokenLogoImg\n hash\n status\n toAmount\n toTokenDecimals\n toTokenPrice\n toTokenSymbol\n toTokenAddress\n toTokenLogoImg\n minAmount\n nonce\n extra\n user\n }\n }\n }\n '): typeof import('./graphql').FetchUserSwapOrderHistoriesDocument;
|
|
45
|
+
/**
|
|
46
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
47
|
+
*/
|
|
48
|
+
export declare function graphql(source: '\n query FetchNoticeCenterTransactionList(\n $where: Notice_centertransactionListFilter\n ) {\n notice_center_transactionList(where: $where) {\n list {\n chainId\n createTime\n extend\n from\n id\n key\n type\n }\n count\n }\n }\n '): typeof import('./graphql').FetchNoticeCenterTransactionListDocument;
|