@dodoex/api 3.0.0-taiko.11 → 3.0.0-taiko.13

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.
@@ -66,3 +66,7 @@ export declare function graphql(source: '\n query FetchUserSwapOrderHistories
66
66
  * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
67
67
  */
68
68
  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 limit\n page\n }\n }\n '): typeof import('./graphql').FetchNoticeCenterTransactionListDocument;
69
+ /**
70
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
71
+ */
72
+ export declare function graphql(source: '\n query FetchLiquidityLpPartnerRewards(\n $where: LiquidityLpPartnerRewardsInput\n ) {\n liquidity_getLpPartnerRewards(where: $where) {\n partnerInfos {\n partner\n logo\n introduction\n link\n theme\n sort\n platform\n extra\n }\n partnerRewards {\n chainId\n pool\n partner\n reward\n type\n }\n }\n }\n '): typeof import('./graphql').FetchLiquidityLpPartnerRewardsDocument;
@@ -2302,6 +2302,7 @@ export type Cross_Chain_TokenCrossChainPair = {
2302
2302
  toChainTokenSymbol?: Maybe<Scalars['String']['output']>;
2303
2303
  };
2304
2304
  export type Cross_Chain_TokenCrossChainProduct = {
2305
+ extend?: Maybe<Scalars['JSON']['output']>;
2305
2306
  id?: Maybe<Scalars['Int']['output']>;
2306
2307
  isProduction?: Maybe<Scalars['Boolean']['output']>;
2307
2308
  name?: Maybe<Scalars['String']['output']>;
@@ -7595,6 +7596,9 @@ export type LiquidityPartnerInfo = {
7595
7596
  link?: Maybe<Scalars['String']['output']>;
7596
7597
  logo?: Maybe<Scalars['String']['output']>;
7597
7598
  partner?: Maybe<Scalars['String']['output']>;
7599
+ platform?: Maybe<Scalars['Int']['output']>;
7600
+ sort?: Maybe<Scalars['Int']['output']>;
7601
+ theme?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
7598
7602
  };
7599
7603
  export type LiquidityPoolApy = {
7600
7604
  apy?: Maybe<Scalars['String']['output']>;
@@ -20970,6 +20974,30 @@ export type FetchNoticeCenterTransactionListQuery = {
20970
20974
  } | null> | null;
20971
20975
  } | null;
20972
20976
  };
20977
+ export type FetchLiquidityLpPartnerRewardsQueryVariables = Exact<{
20978
+ where?: InputMaybe<LiquidityLpPartnerRewardsInput>;
20979
+ }>;
20980
+ export type FetchLiquidityLpPartnerRewardsQuery = {
20981
+ liquidity_getLpPartnerRewards?: {
20982
+ partnerInfos?: Array<{
20983
+ partner?: string | null;
20984
+ logo?: string | null;
20985
+ introduction?: string | null;
20986
+ link?: string | null;
20987
+ theme?: Array<string | null> | null;
20988
+ sort?: number | null;
20989
+ platform?: number | null;
20990
+ extra?: any | null;
20991
+ } | null> | null;
20992
+ partnerRewards?: Array<{
20993
+ chainId?: number | null;
20994
+ pool?: string | null;
20995
+ partner?: string | null;
20996
+ reward?: string | null;
20997
+ type?: string | null;
20998
+ } | null> | null;
20999
+ } | null;
21000
+ };
20973
21001
  export declare class TypedDocumentString<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
20974
21002
  private value;
20975
21003
  __meta__?: Record<string, any> | undefined;
@@ -20994,3 +21022,4 @@ export declare const FetchLiquidityPositionsDocument: TypedDocumentString<FetchL
20994
21022
  export declare const FetchPoolPairListDocument: TypedDocumentString<FetchPoolPairListQuery, FetchPoolPairListQueryVariables>;
20995
21023
  export declare const FetchUserSwapOrderHistoriesDocument: TypedDocumentString<FetchUserSwapOrderHistoriesQuery, FetchUserSwapOrderHistoriesQueryVariables>;
20996
21024
  export declare const FetchNoticeCenterTransactionListDocument: TypedDocumentString<FetchNoticeCenterTransactionListQuery, FetchNoticeCenterTransactionListQueryVariables>;
21025
+ export declare const FetchLiquidityLpPartnerRewardsDocument: TypedDocumentString<FetchLiquidityLpPartnerRewardsQuery, FetchLiquidityLpPartnerRewardsQueryVariables>;