@dodoex/api 3.4.0 → 3.5.0-cp.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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types/chainConfig/chain.d.ts +2 -1
- package/dist/types/gql/gql.d.ts +28 -0
- package/dist/types/gql/graphql.d.ts +2113 -9
- package/dist/types/index.d.ts +1 -0
- package/dist/types/services/SwapWidgetApi.d.ts +208 -2
- package/dist/types/services/cp/graphqlQuery.d.ts +32 -0
- package/dist/types/services/cp/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -61,6 +61,10 @@ export type Scalars = {
|
|
|
61
61
|
input: any;
|
|
62
62
|
output: any;
|
|
63
63
|
};
|
|
64
|
+
Curve_stableswap_ngBytes: {
|
|
65
|
+
input: any;
|
|
66
|
+
output: any;
|
|
67
|
+
};
|
|
64
68
|
Dodochain_earnBytes: {
|
|
65
69
|
input: any;
|
|
66
70
|
output: any;
|
|
@@ -273,6 +277,29 @@ export type All_Filter = {
|
|
|
273
277
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
274
278
|
};
|
|
275
279
|
export type All_OrderBy = 'chain' | 'id';
|
|
280
|
+
export type AmmTick = {
|
|
281
|
+
id: Scalars['String']['output'];
|
|
282
|
+
liquidityGross: Scalars['BigDecimal']['output'];
|
|
283
|
+
liquidityNet: Scalars['BigDecimal']['output'];
|
|
284
|
+
poolAddress: Scalars['String']['output'];
|
|
285
|
+
price0: Scalars['BigDecimal']['output'];
|
|
286
|
+
price1: Scalars['BigDecimal']['output'];
|
|
287
|
+
protocolPosition?: Maybe<Scalars['String']['output']>;
|
|
288
|
+
tickArrayLower?: Maybe<Scalars['String']['output']>;
|
|
289
|
+
tickArrayUpper?: Maybe<Scalars['String']['output']>;
|
|
290
|
+
tickIdx: Scalars['BigDecimal']['output'];
|
|
291
|
+
};
|
|
292
|
+
export type AmmTicksDataResult = {
|
|
293
|
+
chain: Scalars['String']['output'];
|
|
294
|
+
pairType: Scalars['String']['output'];
|
|
295
|
+
poolAddress: Scalars['String']['output'];
|
|
296
|
+
ticks: Array<Maybe<AmmTick>>;
|
|
297
|
+
};
|
|
298
|
+
export type AmmgetTicksDataInput = {
|
|
299
|
+
chain: Scalars['String']['input'];
|
|
300
|
+
pairType: Scalars['String']['input'];
|
|
301
|
+
poolAddress: Scalars['String']['input'];
|
|
302
|
+
};
|
|
276
303
|
export type AnnouncementAnnouncement = {
|
|
277
304
|
endAt?: Maybe<Scalars['String']['output']>;
|
|
278
305
|
id?: Maybe<Scalars['Int']['output']>;
|
|
@@ -773,6 +800,48 @@ export type Avatar_Filter = {
|
|
|
773
800
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
774
801
|
};
|
|
775
802
|
export type Avatar_OrderBy = 'balance' | 'chain' | 'componentsID' | 'id';
|
|
803
|
+
export type Backend_Manage_Settlex_ServerBatchTransferList = {
|
|
804
|
+
batchId?: Maybe<Scalars['String']['output']>;
|
|
805
|
+
batchTransfers?: Maybe<Scalars['JSON']['output']>;
|
|
806
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
807
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
808
|
+
extend?: Maybe<Scalars['JSON']['output']>;
|
|
809
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
810
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
811
|
+
memo?: Maybe<Scalars['String']['output']>;
|
|
812
|
+
platformFeeUsd?: Maybe<Scalars['String']['output']>;
|
|
813
|
+
receiveAmount?: Maybe<Scalars['String']['output']>;
|
|
814
|
+
receiveAmountUsd?: Maybe<Scalars['String']['output']>;
|
|
815
|
+
receiveToken?: Maybe<Scalars['String']['output']>;
|
|
816
|
+
receiver?: Maybe<Scalars['String']['output']>;
|
|
817
|
+
sendAmount?: Maybe<Scalars['String']['output']>;
|
|
818
|
+
sendAmountUsd?: Maybe<Scalars['String']['output']>;
|
|
819
|
+
sendToken?: Maybe<Scalars['String']['output']>;
|
|
820
|
+
sender?: Maybe<Scalars['String']['output']>;
|
|
821
|
+
status?: Maybe<Scalars['Int']['output']>;
|
|
822
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
823
|
+
};
|
|
824
|
+
export type Backend_Manage_Settlex_ServerBatchTransferResult = {
|
|
825
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
826
|
+
list?: Maybe<Array<Maybe<Backend_Manage_Settlex_ServerBatchTransferList>>>;
|
|
827
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
828
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
829
|
+
};
|
|
830
|
+
export type Backend_Manage_Settlex_ServerbatchTransferFilter = {
|
|
831
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
832
|
+
orderColumn?: InputMaybe<Scalars['String']['input']>;
|
|
833
|
+
orderValue?: InputMaybe<Scalars['String']['input']>;
|
|
834
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
835
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
836
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
837
|
+
sendToken?: InputMaybe<Scalars['String']['input']>;
|
|
838
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
839
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
840
|
+
};
|
|
841
|
+
export type Backend_Manage_Settlex_ServerdetailBatchTransferFilter = {
|
|
842
|
+
id?: InputMaybe<Scalars['Int']['input']>;
|
|
843
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
844
|
+
};
|
|
776
845
|
export type Balance = {
|
|
777
846
|
chain: Scalars['String']['output'];
|
|
778
847
|
id: Scalars['ID']['output'];
|
|
@@ -805,6 +874,66 @@ export type Balance_Filter = {
|
|
|
805
874
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
806
875
|
};
|
|
807
876
|
export type Balance_OrderBy = 'chain' | 'id';
|
|
877
|
+
export type Berachain_AlmPool = {
|
|
878
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
879
|
+
poolDayData?: Maybe<Array<Maybe<Berachain_AlmPoolDayData>>>;
|
|
880
|
+
token0?: Maybe<Berachain_AlmToken>;
|
|
881
|
+
token0Price?: Maybe<Scalars['String']['output']>;
|
|
882
|
+
token1?: Maybe<Berachain_AlmToken>;
|
|
883
|
+
token1Price?: Maybe<Scalars['String']['output']>;
|
|
884
|
+
totalValueLockedUSD?: Maybe<Scalars['String']['output']>;
|
|
885
|
+
};
|
|
886
|
+
export type Berachain_AlmPoolDayData = {
|
|
887
|
+
date?: Maybe<Scalars['Int']['output']>;
|
|
888
|
+
feesUSD?: Maybe<Scalars['String']['output']>;
|
|
889
|
+
tvlUSD?: Maybe<Scalars['String']['output']>;
|
|
890
|
+
volumeUSD?: Maybe<Scalars['String']['output']>;
|
|
891
|
+
};
|
|
892
|
+
export type Berachain_AlmToken = {
|
|
893
|
+
decimals?: Maybe<Scalars['String']['output']>;
|
|
894
|
+
derivedUSD?: Maybe<Scalars['String']['output']>;
|
|
895
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
896
|
+
initialUSD?: Maybe<Scalars['String']['output']>;
|
|
897
|
+
liquidityUSD?: Maybe<Scalars['String']['output']>;
|
|
898
|
+
marketCap?: Maybe<Scalars['String']['output']>;
|
|
899
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
900
|
+
priceChange24h?: Maybe<Scalars['String']['output']>;
|
|
901
|
+
priceChange24hPercentage?: Maybe<Scalars['String']['output']>;
|
|
902
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
903
|
+
totalSupply?: Maybe<Scalars['String']['output']>;
|
|
904
|
+
};
|
|
905
|
+
export type Berachain_AlmVault = {
|
|
906
|
+
allowTokenA?: Maybe<Scalars['Boolean']['output']>;
|
|
907
|
+
allowTokenB?: Maybe<Scalars['Boolean']['output']>;
|
|
908
|
+
count?: Maybe<Scalars['String']['output']>;
|
|
909
|
+
createdAtTimestamp?: Maybe<Scalars['String']['output']>;
|
|
910
|
+
feeApr_1d?: Maybe<Scalars['String']['output']>;
|
|
911
|
+
feeApr_3d?: Maybe<Scalars['String']['output']>;
|
|
912
|
+
feeApr_7d?: Maybe<Scalars['String']['output']>;
|
|
913
|
+
feeApr_30d?: Maybe<Scalars['String']['output']>;
|
|
914
|
+
holdersCount?: Maybe<Scalars['Int']['output']>;
|
|
915
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
916
|
+
pool?: Maybe<Berachain_AlmPool>;
|
|
917
|
+
protocol?: Maybe<Scalars['String']['output']>;
|
|
918
|
+
sender?: Maybe<Scalars['String']['output']>;
|
|
919
|
+
tokenA?: Maybe<Scalars['String']['output']>;
|
|
920
|
+
tokenB?: Maybe<Scalars['String']['output']>;
|
|
921
|
+
totalAmount0?: Maybe<Scalars['String']['output']>;
|
|
922
|
+
totalAmount1?: Maybe<Scalars['String']['output']>;
|
|
923
|
+
totalShares?: Maybe<Scalars['String']['output']>;
|
|
924
|
+
totalSupply?: Maybe<Scalars['String']['output']>;
|
|
925
|
+
};
|
|
926
|
+
export type Berachain_AlmVaultShares = {
|
|
927
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
928
|
+
vault?: Maybe<Berachain_AlmVault>;
|
|
929
|
+
vaultShareBalance?: Maybe<Scalars['String']['output']>;
|
|
930
|
+
};
|
|
931
|
+
export type Berachain_AlmallVaultsSearch = {
|
|
932
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
933
|
+
};
|
|
934
|
+
export type Berachain_AlmmyVaultsSearch = {
|
|
935
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
936
|
+
};
|
|
808
937
|
export type BidHistory = {
|
|
809
938
|
/** action :bid、cancle */
|
|
810
939
|
action: Scalars['String']['output'];
|
|
@@ -1731,6 +1860,7 @@ export type Cross_Chain_SwapExtend = {
|
|
|
1731
1860
|
encodeId?: Maybe<Scalars['String']['output']>;
|
|
1732
1861
|
fromToken?: Maybe<Scalars['JSON']['output']>;
|
|
1733
1862
|
lifiBridge?: Maybe<Scalars['String']['output']>;
|
|
1863
|
+
productStateInfo?: Maybe<Scalars['JSON']['output']>;
|
|
1734
1864
|
refunded?: Maybe<Scalars['JSON']['output']>;
|
|
1735
1865
|
route?: Maybe<Scalars['JSON']['output']>;
|
|
1736
1866
|
toToken?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -1759,6 +1889,168 @@ export type Cross_Chain_SwapToolDetail = {
|
|
|
1759
1889
|
logoURI?: Maybe<Scalars['String']['output']>;
|
|
1760
1890
|
name?: Maybe<Scalars['String']['output']>;
|
|
1761
1891
|
};
|
|
1892
|
+
export type Cross_Chain_Swap_ZetachainCrossChainOrderCreate = {
|
|
1893
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
1894
|
+
};
|
|
1895
|
+
export type Cross_Chain_Swap_ZetachainCrossChainOrderList = {
|
|
1896
|
+
bridgeChainId?: Maybe<Scalars['Int']['output']>;
|
|
1897
|
+
bridgeRefundVault?: Maybe<Scalars['String']['output']>;
|
|
1898
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1899
|
+
endTime?: Maybe<Scalars['Int']['output']>;
|
|
1900
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
1901
|
+
fees?: Maybe<Scalars['JSON']['output']>;
|
|
1902
|
+
fromAddress?: Maybe<Scalars['String']['output']>;
|
|
1903
|
+
fromAmount?: Maybe<Scalars['String']['output']>;
|
|
1904
|
+
fromAmountUSD?: Maybe<Scalars['String']['output']>;
|
|
1905
|
+
fromAmountWithOutDecimals?: Maybe<Scalars['String']['output']>;
|
|
1906
|
+
fromChainId?: Maybe<Scalars['Int']['output']>;
|
|
1907
|
+
fromHash?: Maybe<Scalars['String']['output']>;
|
|
1908
|
+
fromTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
1909
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
1910
|
+
omniPlan?: Maybe<Scalars['JSON']['output']>;
|
|
1911
|
+
refundAmount?: Maybe<Scalars['String']['output']>;
|
|
1912
|
+
refundChainId?: Maybe<Scalars['String']['output']>;
|
|
1913
|
+
refundHash?: Maybe<Scalars['String']['output']>;
|
|
1914
|
+
refundToken?: Maybe<Scalars['String']['output']>;
|
|
1915
|
+
refundUser?: Maybe<Scalars['String']['output']>;
|
|
1916
|
+
slippage?: Maybe<Scalars['Float']['output']>;
|
|
1917
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
1918
|
+
startTime?: Maybe<Scalars['Int']['output']>;
|
|
1919
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1920
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
1921
|
+
subStatus?: Maybe<Scalars['String']['output']>;
|
|
1922
|
+
toAddress?: Maybe<Scalars['String']['output']>;
|
|
1923
|
+
toAmount?: Maybe<Scalars['String']['output']>;
|
|
1924
|
+
toAmountUSD?: Maybe<Scalars['String']['output']>;
|
|
1925
|
+
toAmountWithOutDecimals?: Maybe<Scalars['String']['output']>;
|
|
1926
|
+
toChainId?: Maybe<Scalars['Int']['output']>;
|
|
1927
|
+
toHash?: Maybe<Scalars['String']['output']>;
|
|
1928
|
+
toTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
1929
|
+
};
|
|
1930
|
+
export type Cross_Chain_Swap_ZetachainCrossChainOrderResult = {
|
|
1931
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
1932
|
+
list?: Maybe<Array<Maybe<Cross_Chain_Swap_ZetachainCrossChainOrderList>>>;
|
|
1933
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
1934
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
1935
|
+
};
|
|
1936
|
+
export type Cross_Chain_Swap_ZetachainCrossChainRoute = {
|
|
1937
|
+
approveTarget?: Maybe<Scalars['String']['output']>;
|
|
1938
|
+
encodeParams?: Maybe<Scalars['JSON']['output']>;
|
|
1939
|
+
fees?: Maybe<Scalars['JSON']['output']>;
|
|
1940
|
+
fromAddress?: Maybe<Scalars['String']['output']>;
|
|
1941
|
+
fromAmount?: Maybe<Scalars['String']['output']>;
|
|
1942
|
+
fromAmountUSD?: Maybe<Scalars['String']['output']>;
|
|
1943
|
+
fromAmountWithOutDecimals?: Maybe<Scalars['String']['output']>;
|
|
1944
|
+
fromChainId?: Maybe<Scalars['Int']['output']>;
|
|
1945
|
+
fromTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
1946
|
+
min?: Maybe<Scalars['String']['output']>;
|
|
1947
|
+
omniPlan?: Maybe<Scalars['JSON']['output']>;
|
|
1948
|
+
priceImpact?: Maybe<Scalars['String']['output']>;
|
|
1949
|
+
routeId?: Maybe<Scalars['String']['output']>;
|
|
1950
|
+
slippage?: Maybe<Scalars['Float']['output']>;
|
|
1951
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
1952
|
+
toAddress?: Maybe<Scalars['String']['output']>;
|
|
1953
|
+
toAmount?: Maybe<Scalars['String']['output']>;
|
|
1954
|
+
toAmountUSD?: Maybe<Scalars['String']['output']>;
|
|
1955
|
+
toAmountWithOutDecimals?: Maybe<Scalars['String']['output']>;
|
|
1956
|
+
toChainId?: Maybe<Scalars['Int']['output']>;
|
|
1957
|
+
toTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
1958
|
+
};
|
|
1959
|
+
export type Cross_Chain_Swap_ZetachainCrossChainTransactionEncode = {
|
|
1960
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
1961
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
1962
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
1963
|
+
to?: Maybe<Scalars['String']['output']>;
|
|
1964
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
1965
|
+
};
|
|
1966
|
+
export type Cross_Chain_Swap_ZetachainSwapOrderList = {
|
|
1967
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
1968
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
1969
|
+
extra?: Maybe<Scalars['JSON']['output']>;
|
|
1970
|
+
fromAmount?: Maybe<Scalars['String']['output']>;
|
|
1971
|
+
fromTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
1972
|
+
fromTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
1973
|
+
fromTokenPrice?: Maybe<Scalars['String']['output']>;
|
|
1974
|
+
fromTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
1975
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
1976
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
1977
|
+
maxAmount?: Maybe<Scalars['String']['output']>;
|
|
1978
|
+
minAmount?: Maybe<Scalars['String']['output']>;
|
|
1979
|
+
nonce?: Maybe<Scalars['Int']['output']>;
|
|
1980
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1981
|
+
toAmount?: Maybe<Scalars['String']['output']>;
|
|
1982
|
+
toTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
1983
|
+
toTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
1984
|
+
toTokenPrice?: Maybe<Scalars['String']['output']>;
|
|
1985
|
+
toTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
1986
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
1987
|
+
};
|
|
1988
|
+
export type Cross_Chain_Swap_ZetachainSwapOrderResult = {
|
|
1989
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
1990
|
+
list?: Maybe<Array<Maybe<Cross_Chain_Swap_ZetachainSwapOrderList>>>;
|
|
1991
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
1992
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
1993
|
+
};
|
|
1994
|
+
export type Cross_Chain_Swap_ZetachainorderCreateData = {
|
|
1995
|
+
calldata?: InputMaybe<Scalars['String']['input']>;
|
|
1996
|
+
fees?: InputMaybe<Scalars['JSON']['input']>;
|
|
1997
|
+
fromAddress?: InputMaybe<Scalars['String']['input']>;
|
|
1998
|
+
fromAmount?: InputMaybe<Scalars['String']['input']>;
|
|
1999
|
+
fromAmountUSD?: InputMaybe<Scalars['String']['input']>;
|
|
2000
|
+
fromAmountWithOutDecimals?: InputMaybe<Scalars['String']['input']>;
|
|
2001
|
+
fromChainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2002
|
+
fromHash?: InputMaybe<Scalars['String']['input']>;
|
|
2003
|
+
fromTokenAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2004
|
+
omniPlan?: InputMaybe<Scalars['JSON']['input']>;
|
|
2005
|
+
routeId?: InputMaybe<Scalars['String']['input']>;
|
|
2006
|
+
slippage?: InputMaybe<Scalars['Float']['input']>;
|
|
2007
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
2008
|
+
toAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2009
|
+
toAmount?: InputMaybe<Scalars['String']['input']>;
|
|
2010
|
+
toAmountUSD?: InputMaybe<Scalars['String']['input']>;
|
|
2011
|
+
toAmountWithOutDecimals?: InputMaybe<Scalars['String']['input']>;
|
|
2012
|
+
toChainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2013
|
+
toTokenAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2014
|
+
};
|
|
2015
|
+
export type Cross_Chain_Swap_ZetachainorderDetailData = {
|
|
2016
|
+
fromChainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2017
|
+
fromHash?: InputMaybe<Scalars['String']['input']>;
|
|
2018
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2019
|
+
};
|
|
2020
|
+
export type Cross_Chain_Swap_ZetachainorderListData = {
|
|
2021
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2022
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2023
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2024
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
2025
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
2026
|
+
};
|
|
2027
|
+
export type Cross_Chain_Swap_ZetachainorderRefundClaimedData = {
|
|
2028
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
2029
|
+
hash?: InputMaybe<Scalars['String']['input']>;
|
|
2030
|
+
};
|
|
2031
|
+
export type Cross_Chain_Swap_ZetachainrouteParams = {
|
|
2032
|
+
fromAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2033
|
+
fromAmount?: InputMaybe<Scalars['String']['input']>;
|
|
2034
|
+
fromChainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2035
|
+
fromTokenAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2036
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2037
|
+
slippage?: InputMaybe<Scalars['Float']['input']>;
|
|
2038
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
2039
|
+
toAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2040
|
+
toChainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2041
|
+
toTokenAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2042
|
+
};
|
|
2043
|
+
export type Cross_Chain_Swap_ZetachainswapOrderListData = {
|
|
2044
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2045
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2046
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2047
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2048
|
+
userAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2049
|
+
};
|
|
2050
|
+
export type Cross_Chain_Swap_ZetachaintransactionEncodeParams = {
|
|
2051
|
+
interfaceParams?: InputMaybe<Scalars['String']['input']>;
|
|
2052
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2053
|
+
};
|
|
1762
2054
|
export type Cross_Chain_SwapdodoOrderListData = {
|
|
1763
2055
|
from?: InputMaybe<Scalars['String']['input']>;
|
|
1764
2056
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1795,6 +2087,7 @@ export type Cross_Chain_SwaporderCreateDataExtendRoute = {
|
|
|
1795
2087
|
feeUSD?: InputMaybe<Scalars['String']['input']>;
|
|
1796
2088
|
step?: InputMaybe<Scalars['JSON']['input']>;
|
|
1797
2089
|
toAmount?: InputMaybe<Scalars['String']['input']>;
|
|
2090
|
+
toAmountMin?: InputMaybe<Scalars['String']['input']>;
|
|
1798
2091
|
};
|
|
1799
2092
|
export type Cross_Chain_SwaporderDetailData = {
|
|
1800
2093
|
orderId?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1805,8 +2098,10 @@ export type Cross_Chain_SwaporderListData = {
|
|
|
1805
2098
|
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
1806
2099
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1807
2100
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2101
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
1808
2102
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1809
2103
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
2104
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1810
2105
|
user?: InputMaybe<Scalars['String']['input']>;
|
|
1811
2106
|
};
|
|
1812
2107
|
export type Cross_Chain_SwaporderNewStatusData = {
|
|
@@ -1816,6 +2111,7 @@ export type Cross_Chain_SwaporderNewStatusData = {
|
|
|
1816
2111
|
export type Cross_Chain_SwaporderRefundCountData = {
|
|
1817
2112
|
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
1818
2113
|
from?: InputMaybe<Scalars['String']['input']>;
|
|
2114
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
1819
2115
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1820
2116
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
1821
2117
|
user?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1897,6 +2193,310 @@ export type Cross_Chain_TokentokenlistFilter = {
|
|
|
1897
2193
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1898
2194
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1899
2195
|
};
|
|
2196
|
+
export type Cross_Chain_TransferAttributeLabelV2 = {
|
|
2197
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
2198
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2199
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
2200
|
+
};
|
|
2201
|
+
export type Cross_Chain_TransferCrossChainOrder = {
|
|
2202
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
2203
|
+
duration?: Maybe<Scalars['Int']['output']>;
|
|
2204
|
+
endTime?: Maybe<Scalars['String']['output']>;
|
|
2205
|
+
fee?: Maybe<Scalars['String']['output']>;
|
|
2206
|
+
feeUsd?: Maybe<Scalars['String']['output']>;
|
|
2207
|
+
fromAmount?: Maybe<Scalars['String']['output']>;
|
|
2208
|
+
fromChainId?: Maybe<Scalars['Int']['output']>;
|
|
2209
|
+
fromHash?: Maybe<Scalars['String']['output']>;
|
|
2210
|
+
fromTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
2211
|
+
fromTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
2212
|
+
fromTokenName?: Maybe<Scalars['String']['output']>;
|
|
2213
|
+
fromTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
2214
|
+
gas?: Maybe<Scalars['String']['output']>;
|
|
2215
|
+
gasUsd?: Maybe<Scalars['String']['output']>;
|
|
2216
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2217
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
2218
|
+
toAddress?: Maybe<Scalars['String']['output']>;
|
|
2219
|
+
toAmount?: Maybe<Scalars['String']['output']>;
|
|
2220
|
+
toChainId?: Maybe<Scalars['Int']['output']>;
|
|
2221
|
+
toHash?: Maybe<Scalars['String']['output']>;
|
|
2222
|
+
toTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
2223
|
+
toTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
2224
|
+
toTokenName?: Maybe<Scalars['String']['output']>;
|
|
2225
|
+
toTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
2226
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
2227
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
2228
|
+
};
|
|
2229
|
+
export type Cross_Chain_TransferCrossChainOrderList = {
|
|
2230
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
2231
|
+
list?: Maybe<Array<Maybe<Cross_Chain_TransferCrossChainOrder>>>;
|
|
2232
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
2233
|
+
};
|
|
2234
|
+
export type Cross_Chain_TransferDomain = {
|
|
2235
|
+
env?: Maybe<Scalars['String']['output']>;
|
|
2236
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2237
|
+
};
|
|
2238
|
+
export type Cross_Chain_TransferErc20V2List = {
|
|
2239
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
2240
|
+
attributeLabels?: Maybe<Array<Maybe<Cross_Chain_TransferAttributeLabelV2>>>;
|
|
2241
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
2242
|
+
crossChainSymbol?: Maybe<Scalars['String']['output']>;
|
|
2243
|
+
decimals?: Maybe<Scalars['Int']['output']>;
|
|
2244
|
+
domains?: Maybe<Array<Maybe<Cross_Chain_TransferDomain>>>;
|
|
2245
|
+
erc20Extend?: Maybe<Scalars['JSON']['output']>;
|
|
2246
|
+
funcLabels?: Maybe<Array<Maybe<Cross_Chain_TransferFuncLabelV2>>>;
|
|
2247
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
2248
|
+
logoImg?: Maybe<Scalars['String']['output']>;
|
|
2249
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2250
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
2251
|
+
slippage?: Maybe<Scalars['String']['output']>;
|
|
2252
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
2253
|
+
tokenlists?: Maybe<Array<Maybe<Cross_Chain_TransferTokenListV2>>>;
|
|
2254
|
+
};
|
|
2255
|
+
export type Cross_Chain_TransferExplorerAllSections = {
|
|
2256
|
+
lastUpdated: Scalars['String']['output'];
|
|
2257
|
+
sections: Array<Cross_Chain_TransferExplorerSectionProjects>;
|
|
2258
|
+
};
|
|
2259
|
+
export type Cross_Chain_TransferExplorerProject = {
|
|
2260
|
+
estimatedDate?: Maybe<Scalars['String']['output']>;
|
|
2261
|
+
id: Scalars['Int']['output'];
|
|
2262
|
+
launchDate?: Maybe<Scalars['String']['output']>;
|
|
2263
|
+
projectLogo?: Maybe<Scalars['String']['output']>;
|
|
2264
|
+
projectName: Scalars['String']['output'];
|
|
2265
|
+
sections: Array<Cross_Chain_TransferExplorerSection>;
|
|
2266
|
+
sortOrder: Scalars['Int']['output'];
|
|
2267
|
+
supportedChains?: Maybe<Array<Cross_Chain_TransferSupportedChain>>;
|
|
2268
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
2269
|
+
tgeDate?: Maybe<Scalars['String']['output']>;
|
|
2270
|
+
totalRaised?: Maybe<Scalars['String']['output']>;
|
|
2271
|
+
twitterUrl?: Maybe<Scalars['String']['output']>;
|
|
2272
|
+
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
2273
|
+
};
|
|
2274
|
+
export type Cross_Chain_TransferExplorerSection = 'hot_projects' | 'mainnet_launches' | 'recent_airdrops' | 'testnet_launches' | 'upcoming_airdrops';
|
|
2275
|
+
export type Cross_Chain_TransferExplorerSectionProjects = {
|
|
2276
|
+
projects: Array<Cross_Chain_TransferExplorerProject>;
|
|
2277
|
+
section: Cross_Chain_TransferExplorerSection;
|
|
2278
|
+
sectionName: Scalars['String']['output'];
|
|
2279
|
+
total: Scalars['Int']['output'];
|
|
2280
|
+
};
|
|
2281
|
+
export type Cross_Chain_TransferFeeBreakdown = {
|
|
2282
|
+
crossChainFee: Scalars['String']['output'];
|
|
2283
|
+
crossChainFeeUsd?: Maybe<Scalars['String']['output']>;
|
|
2284
|
+
sourceSwapFee: Scalars['String']['output'];
|
|
2285
|
+
sourceSwapFeeUsd?: Maybe<Scalars['String']['output']>;
|
|
2286
|
+
targetSwapFee: Scalars['String']['output'];
|
|
2287
|
+
targetSwapFeeUsd?: Maybe<Scalars['String']['output']>;
|
|
2288
|
+
totalFee: Scalars['String']['output'];
|
|
2289
|
+
totalFeeUsd?: Maybe<Scalars['String']['output']>;
|
|
2290
|
+
};
|
|
2291
|
+
export type Cross_Chain_TransferFuncLabelV2 = {
|
|
2292
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
2293
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2294
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
2295
|
+
};
|
|
2296
|
+
export type Cross_Chain_TransferHeterogeneousQuoteResponse = {
|
|
2297
|
+
amount: Scalars['String']['output'];
|
|
2298
|
+
amountFormatted: Scalars['String']['output'];
|
|
2299
|
+
bestQuote: Scalars['String']['output'];
|
|
2300
|
+
bestQuoteFormatted: Scalars['String']['output'];
|
|
2301
|
+
crossChainSymbol: Scalars['String']['output'];
|
|
2302
|
+
estimatedCompletionTime: Scalars['Int']['output'];
|
|
2303
|
+
feeBreakdown?: Maybe<Cross_Chain_TransferFeeBreakdown>;
|
|
2304
|
+
fixedFee: Scalars['String']['output'];
|
|
2305
|
+
fixedFeeFormatted: Scalars['String']['output'];
|
|
2306
|
+
fixedFeeUsd: Scalars['String']['output'];
|
|
2307
|
+
gasFee: Scalars['String']['output'];
|
|
2308
|
+
gasFeeFormatted: Scalars['String']['output'];
|
|
2309
|
+
gasFeeUsd: Scalars['String']['output'];
|
|
2310
|
+
gasTokenPrice: Scalars['String']['output'];
|
|
2311
|
+
intermediateToken?: Maybe<Cross_Chain_TransferTokenInfo>;
|
|
2312
|
+
isHeterogeneous: Scalars['Boolean']['output'];
|
|
2313
|
+
minReceiveQuote: Scalars['String']['output'];
|
|
2314
|
+
minReceiveQuoteFormatted: Scalars['String']['output'];
|
|
2315
|
+
orderId: Scalars['String']['output'];
|
|
2316
|
+
rateFee: Scalars['String']['output'];
|
|
2317
|
+
rateFeeFormatted: Scalars['String']['output'];
|
|
2318
|
+
rateFeeUsd: Scalars['String']['output'];
|
|
2319
|
+
recipient: Scalars['String']['output'];
|
|
2320
|
+
slippageTolerance?: Maybe<Scalars['Float']['output']>;
|
|
2321
|
+
sourceChainId: Scalars['Int']['output'];
|
|
2322
|
+
sourceSwap: Cross_Chain_TransferSwapInfo;
|
|
2323
|
+
sourceTokenAddress: Scalars['String']['output'];
|
|
2324
|
+
sourceTokenDecimals: Scalars['Int']['output'];
|
|
2325
|
+
sourceTokenName: Scalars['String']['output'];
|
|
2326
|
+
sourceTokenPrice: Scalars['String']['output'];
|
|
2327
|
+
sourceTokenSymbol: Scalars['String']['output'];
|
|
2328
|
+
targetChainId: Scalars['Int']['output'];
|
|
2329
|
+
targetSwap: Cross_Chain_TransferSwapInfo;
|
|
2330
|
+
targetTokenAddress: Scalars['String']['output'];
|
|
2331
|
+
targetTokenDecimals: Scalars['Int']['output'];
|
|
2332
|
+
targetTokenName: Scalars['String']['output'];
|
|
2333
|
+
targetTokenSymbol: Scalars['String']['output'];
|
|
2334
|
+
timestamp: Scalars['String']['output'];
|
|
2335
|
+
totalFee: Scalars['String']['output'];
|
|
2336
|
+
totalFeeFormatted: Scalars['String']['output'];
|
|
2337
|
+
totalFeeUsd: Scalars['String']['output'];
|
|
2338
|
+
totalPriceImpact: Scalars['Float']['output'];
|
|
2339
|
+
transactionData: Cross_Chain_TransferQuoteResponseTransactionDataDto;
|
|
2340
|
+
userAddress: Scalars['String']['output'];
|
|
2341
|
+
version: Scalars['String']['output'];
|
|
2342
|
+
};
|
|
2343
|
+
export type Cross_Chain_TransferOrderDetailFilter = {
|
|
2344
|
+
orderId: Scalars['String']['input'];
|
|
2345
|
+
};
|
|
2346
|
+
export type Cross_Chain_TransferOrderListFilter = {
|
|
2347
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2348
|
+
destChainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2349
|
+
maxAmount?: InputMaybe<Scalars['String']['input']>;
|
|
2350
|
+
minAmount?: InputMaybe<Scalars['String']['input']>;
|
|
2351
|
+
origChainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2352
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2353
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2354
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
2355
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
2356
|
+
};
|
|
2357
|
+
export type Cross_Chain_TransferQuoteResponse = {
|
|
2358
|
+
amount: Scalars['String']['output'];
|
|
2359
|
+
amountFormatted: Scalars['String']['output'];
|
|
2360
|
+
bestQuote: Scalars['String']['output'];
|
|
2361
|
+
bestQuoteFormatted: Scalars['String']['output'];
|
|
2362
|
+
crossChainSymbol: Scalars['String']['output'];
|
|
2363
|
+
fixedFee: Scalars['String']['output'];
|
|
2364
|
+
fixedFeeFormatted: Scalars['String']['output'];
|
|
2365
|
+
fixedFeeUsd: Scalars['String']['output'];
|
|
2366
|
+
gasFee: Scalars['String']['output'];
|
|
2367
|
+
gasFeeFormatted: Scalars['String']['output'];
|
|
2368
|
+
gasFeeUsd: Scalars['String']['output'];
|
|
2369
|
+
gasTokenPrice: Scalars['String']['output'];
|
|
2370
|
+
minReceiveQuote: Scalars['String']['output'];
|
|
2371
|
+
minReceiveQuoteFormatted: Scalars['String']['output'];
|
|
2372
|
+
orderId: Scalars['String']['output'];
|
|
2373
|
+
rateFee: Scalars['String']['output'];
|
|
2374
|
+
rateFeeFormatted: Scalars['String']['output'];
|
|
2375
|
+
rateFeeUsd: Scalars['String']['output'];
|
|
2376
|
+
recipient: Scalars['String']['output'];
|
|
2377
|
+
sourceChainId: Scalars['Int']['output'];
|
|
2378
|
+
sourceTokenAddress: Scalars['String']['output'];
|
|
2379
|
+
sourceTokenDecimals: Scalars['Int']['output'];
|
|
2380
|
+
sourceTokenName: Scalars['String']['output'];
|
|
2381
|
+
sourceTokenPrice: Scalars['String']['output'];
|
|
2382
|
+
sourceTokenSymbol: Scalars['String']['output'];
|
|
2383
|
+
targetChainId: Scalars['Int']['output'];
|
|
2384
|
+
targetTokenAddress: Scalars['String']['output'];
|
|
2385
|
+
targetTokenDecimals: Scalars['Int']['output'];
|
|
2386
|
+
targetTokenName: Scalars['String']['output'];
|
|
2387
|
+
targetTokenSymbol: Scalars['String']['output'];
|
|
2388
|
+
timestamp: Scalars['String']['output'];
|
|
2389
|
+
totalFee: Scalars['String']['output'];
|
|
2390
|
+
totalFeeFormatted: Scalars['String']['output'];
|
|
2391
|
+
totalFeeUsd: Scalars['String']['output'];
|
|
2392
|
+
transactionData: Cross_Chain_TransferQuoteResponseTransactionDataDto;
|
|
2393
|
+
userAddress: Scalars['String']['output'];
|
|
2394
|
+
version: Scalars['String']['output'];
|
|
2395
|
+
};
|
|
2396
|
+
export type Cross_Chain_TransferQuoteResponseTransactionDataDto = {
|
|
2397
|
+
data: Scalars['String']['output'];
|
|
2398
|
+
targetApproveAddr?: Maybe<Scalars['String']['output']>;
|
|
2399
|
+
to: Scalars['String']['output'];
|
|
2400
|
+
value: Scalars['String']['output'];
|
|
2401
|
+
};
|
|
2402
|
+
export type Cross_Chain_TransferRouteStep = {
|
|
2403
|
+
amountIn: Scalars['String']['output'];
|
|
2404
|
+
amountOut: Scalars['String']['output'];
|
|
2405
|
+
poolAddress: Scalars['String']['output'];
|
|
2406
|
+
protocol: Scalars['String']['output'];
|
|
2407
|
+
tokenIn: Scalars['String']['output'];
|
|
2408
|
+
tokenOut: Scalars['String']['output'];
|
|
2409
|
+
};
|
|
2410
|
+
export type Cross_Chain_TransferSupportedChain = {
|
|
2411
|
+
chainId: Scalars['Int']['output'];
|
|
2412
|
+
chainName: Scalars['String']['output'];
|
|
2413
|
+
};
|
|
2414
|
+
export type Cross_Chain_TransferSwapExecuteData = {
|
|
2415
|
+
data: Scalars['String']['output'];
|
|
2416
|
+
to: Scalars['String']['output'];
|
|
2417
|
+
value: Scalars['String']['output'];
|
|
2418
|
+
};
|
|
2419
|
+
export type Cross_Chain_TransferSwapInfo = {
|
|
2420
|
+
estimatedGas?: Maybe<Scalars['String']['output']>;
|
|
2421
|
+
executeData?: Maybe<Cross_Chain_TransferSwapExecuteData>;
|
|
2422
|
+
fromToken?: Maybe<Cross_Chain_TransferTokenInfo>;
|
|
2423
|
+
priceImpact?: Maybe<Scalars['Float']['output']>;
|
|
2424
|
+
quote?: Maybe<Cross_Chain_TransferSwapQuoteInfo>;
|
|
2425
|
+
required: Scalars['Boolean']['output'];
|
|
2426
|
+
toToken?: Maybe<Cross_Chain_TransferTokenInfo>;
|
|
2427
|
+
};
|
|
2428
|
+
export type Cross_Chain_TransferSwapQuoteInfo = {
|
|
2429
|
+
executionPrice: Scalars['Float']['output'];
|
|
2430
|
+
fromAmount: Scalars['String']['output'];
|
|
2431
|
+
fromToken: Cross_Chain_TransferTokenInfo;
|
|
2432
|
+
gasEstimate: Scalars['String']['output'];
|
|
2433
|
+
minReceiveAmount: Scalars['String']['output'];
|
|
2434
|
+
priceImpact: Scalars['Float']['output'];
|
|
2435
|
+
routePath: Array<Cross_Chain_TransferRouteStep>;
|
|
2436
|
+
toAmount: Scalars['String']['output'];
|
|
2437
|
+
toToken: Cross_Chain_TransferTokenInfo;
|
|
2438
|
+
};
|
|
2439
|
+
export type Cross_Chain_TransferTokenInfo = {
|
|
2440
|
+
address: Scalars['String']['output'];
|
|
2441
|
+
chainId: Scalars['Int']['output'];
|
|
2442
|
+
crossChainSymbol: Scalars['String']['output'];
|
|
2443
|
+
decimals: Scalars['Int']['output'];
|
|
2444
|
+
id: Scalars['Int']['output'];
|
|
2445
|
+
name: Scalars['String']['output'];
|
|
2446
|
+
symbol: Scalars['String']['output'];
|
|
2447
|
+
};
|
|
2448
|
+
export type Cross_Chain_TransferTokenListV2 = {
|
|
2449
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
2450
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2451
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
2452
|
+
};
|
|
2453
|
+
export type Cross_Chain_TransferheterogeneousQuoteFilter = {
|
|
2454
|
+
amount: Scalars['String']['input'];
|
|
2455
|
+
/** 同币种跨链时必填 */
|
|
2456
|
+
crossChainSymbol?: InputMaybe<Scalars['String']['input']>;
|
|
2457
|
+
preferredIntermediateToken?: InputMaybe<Scalars['String']['input']>;
|
|
2458
|
+
recipient: Scalars['String']['input'];
|
|
2459
|
+
slippageTolerance?: InputMaybe<Scalars['Float']['input']>;
|
|
2460
|
+
sourceChainId: Scalars['Int']['input'];
|
|
2461
|
+
sourceTokenAddress: Scalars['String']['input'];
|
|
2462
|
+
targetChainId: Scalars['Int']['input'];
|
|
2463
|
+
targetTokenAddress: Scalars['String']['input'];
|
|
2464
|
+
userAddress: Scalars['String']['input'];
|
|
2465
|
+
};
|
|
2466
|
+
export type Cross_Chain_TransferlistV2Filter = {
|
|
2467
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2468
|
+
chainIds?: InputMaybe<Scalars['String']['input']>;
|
|
2469
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2470
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2471
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2472
|
+
};
|
|
2473
|
+
export type Cross_Chain_TransferquoteFilter = {
|
|
2474
|
+
amount: Scalars['String']['input'];
|
|
2475
|
+
crossChainSymbol: Scalars['String']['input'];
|
|
2476
|
+
recipient: Scalars['String']['input'];
|
|
2477
|
+
sourceChainId: Scalars['Int']['input'];
|
|
2478
|
+
sourceTokenAddress: Scalars['String']['input'];
|
|
2479
|
+
targetChainId: Scalars['Int']['input'];
|
|
2480
|
+
targetTokenAddress: Scalars['String']['input'];
|
|
2481
|
+
userAddress: Scalars['String']['input'];
|
|
2482
|
+
};
|
|
2483
|
+
export type Cross_Chain_Zetachain_TokenCrossChainTokenlist = {
|
|
2484
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
2485
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
2486
|
+
decimals?: Maybe<Scalars['Int']['output']>;
|
|
2487
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
2488
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
2489
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2490
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
2491
|
+
slippage?: Maybe<Scalars['String']['output']>;
|
|
2492
|
+
supportTargetChain?: Maybe<Scalars['Boolean']['output']>;
|
|
2493
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
2494
|
+
};
|
|
2495
|
+
export type Cross_Chain_Zetachain_TokentokenlistFilter = {
|
|
2496
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2497
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2498
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2499
|
+
};
|
|
1900
2500
|
export type CrowdPooling = {
|
|
1901
2501
|
/** base token */
|
|
1902
2502
|
baseToken: Token;
|
|
@@ -2682,14 +3282,134 @@ export type Crowd_Poolinglist_Filter = {
|
|
|
2682
3282
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2683
3283
|
top?: InputMaybe<Scalars['Int']['input']>;
|
|
2684
3284
|
};
|
|
2685
|
-
export type
|
|
2686
|
-
|
|
2687
|
-
|
|
3285
|
+
export type Curve_Stableswap_NgFilterState = {
|
|
3286
|
+
poolAddress?: InputMaybe<Scalars['String']['input']>;
|
|
3287
|
+
poolName?: InputMaybe<Scalars['String']['input']>;
|
|
3288
|
+
tokenAddress?: InputMaybe<Scalars['String']['input']>;
|
|
2688
3289
|
};
|
|
2689
|
-
export type
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
3290
|
+
export type Curve_Stableswap_NgLp = {
|
|
3291
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
3292
|
+
liquidityTokenBalance?: Maybe<Scalars['String']['output']>;
|
|
3293
|
+
lpTokens?: Maybe<Array<Maybe<Curve_Stableswap_NgUserToken>>>;
|
|
3294
|
+
};
|
|
3295
|
+
export type Curve_Stableswap_NgLiquidityHistory = {
|
|
3296
|
+
action: Scalars['String']['output'];
|
|
3297
|
+
assets?: Maybe<Array<Curve_Stableswap_NgLiquidityHistoryAsset>>;
|
|
3298
|
+
id: Scalars['ID']['output'];
|
|
3299
|
+
time: Scalars['BigInt']['output'];
|
|
3300
|
+
user: Scalars['String']['output'];
|
|
3301
|
+
};
|
|
3302
|
+
export type Curve_Stableswap_NgLiquidityHistoryAsset = {
|
|
3303
|
+
amount: Scalars['BigDecimal']['output'];
|
|
3304
|
+
token: Curve_Stableswap_NgToken;
|
|
3305
|
+
};
|
|
3306
|
+
export type Curve_Stableswap_NgLiquidityHistoryListInfo = {
|
|
3307
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
3308
|
+
liquidityHistories?: Maybe<Array<Curve_Stableswap_NgLiquidityHistory>>;
|
|
3309
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
3310
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3311
|
+
};
|
|
3312
|
+
export type Curve_Stableswap_NgListInfo = {
|
|
3313
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
3314
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
3315
|
+
lqList?: Maybe<Array<Maybe<Curve_Stableswap_NgLqList>>>;
|
|
3316
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
3317
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3318
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
3319
|
+
};
|
|
3320
|
+
export type Curve_Stableswap_NgLqList = {
|
|
3321
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
3322
|
+
isMyLiquidity?: Maybe<Scalars['Boolean']['output']>;
|
|
3323
|
+
liquidityPositions?: Maybe<Array<Maybe<Curve_Stableswap_NgLp>>>;
|
|
3324
|
+
pool?: Maybe<Curve_Stableswap_NgPool>;
|
|
3325
|
+
};
|
|
3326
|
+
export type Curve_Stableswap_NgOrder = {
|
|
3327
|
+
/** updatedAt tvl apy liquidity */
|
|
3328
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
3329
|
+
/** desc asc' */
|
|
3330
|
+
orderDirection?: InputMaybe<Scalars['String']['input']>;
|
|
3331
|
+
};
|
|
3332
|
+
export type Curve_Stableswap_NgPool = {
|
|
3333
|
+
a: Scalars['BigInt']['output'];
|
|
3334
|
+
address: Scalars['String']['output'];
|
|
3335
|
+
apy: Scalars['BigDecimal']['output'];
|
|
3336
|
+
coins: Array<Curve_Stableswap_NgToken>;
|
|
3337
|
+
dailyVolumeUsd: Scalars['BigDecimal']['output'];
|
|
3338
|
+
daoFee: Scalars['BigDecimal']['output'];
|
|
3339
|
+
decimals: Scalars['Int']['output'];
|
|
3340
|
+
fee: Scalars['BigDecimal']['output'];
|
|
3341
|
+
fees: Scalars['BigDecimal']['output'];
|
|
3342
|
+
id: Scalars['ID']['output'];
|
|
3343
|
+
liquidityUtilization: Scalars['BigDecimal']['output'];
|
|
3344
|
+
name: Scalars['String']['output'];
|
|
3345
|
+
offpegFeeMultiplier: Scalars['BigInt']['output'];
|
|
3346
|
+
poolType: Scalars['String']['output'];
|
|
3347
|
+
reserves?: Maybe<Array<Maybe<Curve_Stableswap_NgPoolReserve>>>;
|
|
3348
|
+
symbol: Scalars['String']['output'];
|
|
3349
|
+
totalSupply: Scalars['BigDecimal']['output'];
|
|
3350
|
+
traderCount: Scalars['BigInt']['output'];
|
|
3351
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
3352
|
+
virtualPrice: Scalars['BigDecimal']['output'];
|
|
3353
|
+
volume: Scalars['BigDecimal']['output'];
|
|
3354
|
+
};
|
|
3355
|
+
export type Curve_Stableswap_NgPoolReserve = {
|
|
3356
|
+
amount: Scalars['BigDecimal']['output'];
|
|
3357
|
+
ratio: Scalars['BigDecimal']['output'];
|
|
3358
|
+
token: Curve_Stableswap_NgToken;
|
|
3359
|
+
};
|
|
3360
|
+
export type Curve_Stableswap_NgSwap = {
|
|
3361
|
+
id: Scalars['ID']['output'];
|
|
3362
|
+
paidAmount: Scalars['BigDecimal']['output'];
|
|
3363
|
+
paidToken: Curve_Stableswap_NgToken;
|
|
3364
|
+
receivedAmount: Scalars['BigDecimal']['output'];
|
|
3365
|
+
receivedToken: Curve_Stableswap_NgToken;
|
|
3366
|
+
time: Scalars['BigInt']['output'];
|
|
3367
|
+
user: Scalars['String']['output'];
|
|
3368
|
+
};
|
|
3369
|
+
export type Curve_Stableswap_NgSwapListInfo = {
|
|
3370
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
3371
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
3372
|
+
swaps?: Maybe<Array<Curve_Stableswap_NgSwap>>;
|
|
3373
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3374
|
+
};
|
|
3375
|
+
export type Curve_Stableswap_NgToken = {
|
|
3376
|
+
address: Scalars['String']['output'];
|
|
3377
|
+
decimals: Scalars['Int']['output'];
|
|
3378
|
+
id: Scalars['ID']['output'];
|
|
3379
|
+
/** token logo img */
|
|
3380
|
+
logoImg?: Maybe<Scalars['String']['output']>;
|
|
3381
|
+
name: Scalars['String']['output'];
|
|
3382
|
+
symbol: Scalars['String']['output'];
|
|
3383
|
+
tokenIndex?: Maybe<Scalars['Int']['output']>;
|
|
3384
|
+
};
|
|
3385
|
+
export type Curve_Stableswap_NgUserToken = {
|
|
3386
|
+
address: Scalars['String']['output'];
|
|
3387
|
+
amount: Scalars['BigDecimal']['output'];
|
|
3388
|
+
decimals: Scalars['Int']['output'];
|
|
3389
|
+
id: Scalars['ID']['output'];
|
|
3390
|
+
name: Scalars['String']['output'];
|
|
3391
|
+
symbol: Scalars['String']['output'];
|
|
3392
|
+
};
|
|
3393
|
+
export type Curve_Stableswap_Nglist_Filter = {
|
|
3394
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
3395
|
+
currentPage?: InputMaybe<Scalars['Int']['input']>;
|
|
3396
|
+
filterState?: InputMaybe<Curve_Stableswap_NgFilterState>;
|
|
3397
|
+
order?: InputMaybe<Curve_Stableswap_NgOrder>;
|
|
3398
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
3399
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
3400
|
+
};
|
|
3401
|
+
export type Curve_Stableswap_Ngpool_Info_Filter = {
|
|
3402
|
+
chainId: Scalars['Int']['input'];
|
|
3403
|
+
poolAddress: Scalars['String']['input'];
|
|
3404
|
+
};
|
|
3405
|
+
export type D3mmAsset = {
|
|
3406
|
+
lpToken: D3mmToken;
|
|
3407
|
+
token: D3mmToken;
|
|
3408
|
+
};
|
|
3409
|
+
export type D3mmAssetDailyInterest = {
|
|
3410
|
+
/** 存款 */
|
|
3411
|
+
balanceUsd: Scalars['BigDecimal']['output'];
|
|
3412
|
+
date: Scalars['Int']['output'];
|
|
2693
3413
|
/** 挖矿收益,未完成暂时是假数据 */
|
|
2694
3414
|
interestUsd: Scalars['BigDecimal']['output'];
|
|
2695
3415
|
/** 利息 */
|
|
@@ -3468,6 +4188,12 @@ export type DashboardDataGroupByDate = {
|
|
|
3468
4188
|
volume?: Maybe<Scalars['String']['output']>;
|
|
3469
4189
|
volumeUsd?: Maybe<Scalars['String']['output']>;
|
|
3470
4190
|
};
|
|
4191
|
+
export type DashboardOrder = {
|
|
4192
|
+
/** tvl apy volume */
|
|
4193
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
4194
|
+
/** desc asc' */
|
|
4195
|
+
orderDirection?: InputMaybe<Scalars['String']['input']>;
|
|
4196
|
+
};
|
|
3471
4197
|
export type DashboardPairData = {
|
|
3472
4198
|
/** transaction count */
|
|
3473
4199
|
txes?: Maybe<Scalars['String']['output']>;
|
|
@@ -3663,6 +4389,7 @@ export type Dashboardtype_List_Filter = {
|
|
|
3663
4389
|
chainIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
3664
4390
|
creator?: InputMaybe<Scalars['String']['input']>;
|
|
3665
4391
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
4392
|
+
order?: InputMaybe<DashboardOrder>;
|
|
3666
4393
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
3667
4394
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3668
4395
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -5328,6 +6055,7 @@ export type Erc20listV2Filter = {
|
|
|
5328
6055
|
chainIds?: InputMaybe<Scalars['String']['input']>;
|
|
5329
6056
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5330
6057
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
6058
|
+
productName?: InputMaybe<Scalars['String']['input']>;
|
|
5331
6059
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5332
6060
|
};
|
|
5333
6061
|
export type Erc20relationListFilter = {
|
|
@@ -5762,6 +6490,117 @@ export type IncentiveRewardHistory_Filter = {
|
|
|
5762
6490
|
user_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
5763
6491
|
};
|
|
5764
6492
|
export type IncentiveRewardHistory_OrderBy = 'amount' | 'chain' | 'id' | 'times' | 'timestamp' | 'totalAmount' | 'totalUser' | 'updatedAt' | 'user';
|
|
6493
|
+
export type Kaia_VaultDetailVault = {
|
|
6494
|
+
activeTvl?: Maybe<Scalars['String']['output']>;
|
|
6495
|
+
activeValue?: Maybe<Scalars['String']['output']>;
|
|
6496
|
+
amount?: Maybe<Scalars['String']['output']>;
|
|
6497
|
+
apy?: Maybe<Scalars['Float']['output']>;
|
|
6498
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
6499
|
+
feeRevenueLast30Days?: Maybe<Scalars['String']['output']>;
|
|
6500
|
+
feeRevenueTotal?: Maybe<Scalars['String']['output']>;
|
|
6501
|
+
poolAddress?: Maybe<Scalars['String']['output']>;
|
|
6502
|
+
reserveTvl?: Maybe<Scalars['String']['output']>;
|
|
6503
|
+
reserveValue?: Maybe<Scalars['String']['output']>;
|
|
6504
|
+
tokenAddress?: Maybe<Scalars['String']['output']>;
|
|
6505
|
+
tokenLogo?: Maybe<Scalars['String']['output']>;
|
|
6506
|
+
tokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
6507
|
+
tvl?: Maybe<Scalars['String']['output']>;
|
|
6508
|
+
yieldTvl?: Maybe<Scalars['String']['output']>;
|
|
6509
|
+
yieldValue?: Maybe<Scalars['String']['output']>;
|
|
6510
|
+
};
|
|
6511
|
+
export type Kaia_VaultVaultList = {
|
|
6512
|
+
activeTvl?: Maybe<Scalars['String']['output']>;
|
|
6513
|
+
amount?: Maybe<Scalars['String']['output']>;
|
|
6514
|
+
apy?: Maybe<Scalars['Float']['output']>;
|
|
6515
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
6516
|
+
feeRevenueLast30Days?: Maybe<Scalars['String']['output']>;
|
|
6517
|
+
feeRevenueTotal?: Maybe<Scalars['String']['output']>;
|
|
6518
|
+
poolAddress?: Maybe<Scalars['String']['output']>;
|
|
6519
|
+
reserveTvl?: Maybe<Scalars['String']['output']>;
|
|
6520
|
+
tokenAddress?: Maybe<Scalars['String']['output']>;
|
|
6521
|
+
tokenLogo?: Maybe<Scalars['String']['output']>;
|
|
6522
|
+
tokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
6523
|
+
tvl?: Maybe<Scalars['String']['output']>;
|
|
6524
|
+
yieldTvl?: Maybe<Scalars['String']['output']>;
|
|
6525
|
+
};
|
|
6526
|
+
export type Kaia_VaultdetailFilter = {
|
|
6527
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
6528
|
+
poolAddress?: InputMaybe<Scalars['String']['input']>;
|
|
6529
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6530
|
+
};
|
|
6531
|
+
export type Kaia_VaultlistFilter = {
|
|
6532
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
6533
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6534
|
+
};
|
|
6535
|
+
export type Leaderboard_ActivitiesActivityStats = {
|
|
6536
|
+
addedLiquidity: Scalars['String']['output'];
|
|
6537
|
+
topLPerRewards: Scalars['String']['output'];
|
|
6538
|
+
topTraderRewards: Scalars['String']['output'];
|
|
6539
|
+
tradingVolume: Scalars['String']['output'];
|
|
6540
|
+
};
|
|
6541
|
+
export type Leaderboard_ActivitiesLeaderboardInput = {
|
|
6542
|
+
chain: Scalars['String']['input'];
|
|
6543
|
+
date?: InputMaybe<Scalars['String']['input']>;
|
|
6544
|
+
useCache?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6545
|
+
};
|
|
6546
|
+
export type Leaderboard_ActivitiesLeaderboardLPer = {
|
|
6547
|
+
rank: Scalars['Int']['output'];
|
|
6548
|
+
totalLiquidity: Scalars['String']['output'];
|
|
6549
|
+
transactionCount: Scalars['Int']['output'];
|
|
6550
|
+
user: Scalars['String']['output'];
|
|
6551
|
+
};
|
|
6552
|
+
export type Leaderboard_ActivitiesLeaderboardResult = {
|
|
6553
|
+
chain?: Maybe<Scalars['String']['output']>;
|
|
6554
|
+
date: Scalars['String']['output'];
|
|
6555
|
+
endTime: Scalars['Int']['output'];
|
|
6556
|
+
pairAddress?: Maybe<Scalars['String']['output']>;
|
|
6557
|
+
period: Scalars['String']['output'];
|
|
6558
|
+
startTime: Scalars['Int']['output'];
|
|
6559
|
+
stats: Leaderboard_ActivitiesActivityStats;
|
|
6560
|
+
topLPers: Array<Leaderboard_ActivitiesLeaderboardLPer>;
|
|
6561
|
+
topTraders: Array<Leaderboard_ActivitiesLeaderboardTrader>;
|
|
6562
|
+
};
|
|
6563
|
+
export type Leaderboard_ActivitiesLeaderboardTrader = {
|
|
6564
|
+
rank: Scalars['Int']['output'];
|
|
6565
|
+
totalVolume: Scalars['String']['output'];
|
|
6566
|
+
transactionCount: Scalars['Int']['output'];
|
|
6567
|
+
user: Scalars['String']['output'];
|
|
6568
|
+
};
|
|
6569
|
+
export type Leaderboard_ActivitiesPeriodResult = {
|
|
6570
|
+
endTime: Scalars['Int']['output'];
|
|
6571
|
+
index: Scalars['Int']['output'];
|
|
6572
|
+
startTime: Scalars['Int']['output'];
|
|
6573
|
+
/** not_started ,ongoing, ended */
|
|
6574
|
+
status: Scalars['String']['output'];
|
|
6575
|
+
};
|
|
6576
|
+
export type Leaderboard_ActivitiesPeriodsInput = {
|
|
6577
|
+
chain: Scalars['String']['input'];
|
|
6578
|
+
};
|
|
6579
|
+
export type Leaderboard_ActivitiesPeriodsResult = {
|
|
6580
|
+
activityEndTime: Scalars['Int']['output'];
|
|
6581
|
+
activityStartTime: Scalars['Int']['output'];
|
|
6582
|
+
period: Scalars['String']['output'];
|
|
6583
|
+
periods: Array<Leaderboard_ActivitiesPeriodResult>;
|
|
6584
|
+
};
|
|
6585
|
+
export type Leaderboard_ActivitiesUserRankingInput = {
|
|
6586
|
+
chain: Scalars['String']['input'];
|
|
6587
|
+
date?: InputMaybe<Scalars['String']['input']>;
|
|
6588
|
+
useCache?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6589
|
+
user: Scalars['String']['input'];
|
|
6590
|
+
};
|
|
6591
|
+
export type Leaderboard_ActivitiesUserRankingResult = {
|
|
6592
|
+
chain?: Maybe<Scalars['String']['output']>;
|
|
6593
|
+
date: Scalars['String']['output'];
|
|
6594
|
+
endTime: Scalars['Int']['output'];
|
|
6595
|
+
lperRank?: Maybe<Scalars['Int']['output']>;
|
|
6596
|
+
pairAddress?: Maybe<Scalars['String']['output']>;
|
|
6597
|
+
period: Scalars['String']['output'];
|
|
6598
|
+
startTime: Scalars['Int']['output'];
|
|
6599
|
+
totalLiquidity?: Maybe<Scalars['String']['output']>;
|
|
6600
|
+
totalVolume?: Maybe<Scalars['String']['output']>;
|
|
6601
|
+
traderRank?: Maybe<Scalars['Int']['output']>;
|
|
6602
|
+
user: Scalars['String']['output'];
|
|
6603
|
+
};
|
|
5765
6604
|
export type Limit_And_RfqCancelLimitOrderResponse = {
|
|
5766
6605
|
authorization?: Maybe<Scalars['String']['output']>;
|
|
5767
6606
|
};
|
|
@@ -5988,6 +6827,8 @@ export type LiquidityApyData = {
|
|
|
5988
6827
|
metromMiningApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5989
6828
|
miningBaseApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5990
6829
|
miningQuoteApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
6830
|
+
/** 1D 7D 14D 30D */
|
|
6831
|
+
timeRange?: Maybe<Scalars['String']['output']>;
|
|
5991
6832
|
transactionBaseApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5992
6833
|
transactionQuoteApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5993
6834
|
};
|
|
@@ -6376,13 +7217,18 @@ export type LiquidityLqList = {
|
|
|
6376
7217
|
pair?: Maybe<LiquidityPair>;
|
|
6377
7218
|
};
|
|
6378
7219
|
export type LiquidityOrder = {
|
|
6379
|
-
/** updatedAt tvl apy liquidity */
|
|
7220
|
+
/** updatedAt tvl apy liquidity volume */
|
|
6380
7221
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
6381
7222
|
/** desc asc' */
|
|
6382
7223
|
orderDirection?: InputMaybe<Scalars['String']['input']>;
|
|
7224
|
+
/** 1D 7D 14D 30D */
|
|
7225
|
+
timeRange?: InputMaybe<Scalars['String']['input']>;
|
|
6383
7226
|
};
|
|
6384
7227
|
export type LiquidityPair = {
|
|
7228
|
+
/** Number of aggregated pools when aggPairs is true */
|
|
7229
|
+
aggregatedCount?: Maybe<Scalars['Int']['output']>;
|
|
6385
7230
|
apy?: Maybe<LiquidityApyData>;
|
|
7231
|
+
apyList?: Maybe<Array<Maybe<LiquidityApyData>>>;
|
|
6386
7232
|
/** base LP token, for DPP is null, for dodo v1 lpToken is different */
|
|
6387
7233
|
baseLpToken?: Maybe<LiquidityLpToken>;
|
|
6388
7234
|
/** base token reserve */
|
|
@@ -6439,6 +7285,7 @@ export type LiquidityPair = {
|
|
|
6439
7285
|
mtFeeUSD: Scalars['BigDecimal']['output'];
|
|
6440
7286
|
/** owner */
|
|
6441
7287
|
owner?: Maybe<Scalars['LiquidityBytes']['output']>;
|
|
7288
|
+
priceList?: Maybe<Array<Maybe<LiquidityPriceData>>>;
|
|
6442
7289
|
/** quote LP token,for DPP is null, for dodo v1 lpToken is different */
|
|
6443
7290
|
quoteLpToken?: Maybe<LiquidityLpToken>;
|
|
6444
7291
|
/** quote token reserve */
|
|
@@ -6464,6 +7311,7 @@ export type LiquidityPair = {
|
|
|
6464
7311
|
volume24H?: Maybe<Scalars['BigDecimal']['output']>;
|
|
6465
7312
|
/** trade volume of basetoken */
|
|
6466
7313
|
volumeBaseToken: Scalars['BigDecimal']['output'];
|
|
7314
|
+
volumeList?: Maybe<Array<Maybe<LiquidityVolumeData>>>;
|
|
6467
7315
|
/** trade volume of quotetoken */
|
|
6468
7316
|
volumeQuoteToken: Scalars['BigDecimal']['output'];
|
|
6469
7317
|
/** traded volume of USD */
|
|
@@ -6794,6 +7642,11 @@ export type LiquidityPosition_Filter = {
|
|
|
6794
7642
|
yesterdayInterest_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
6795
7643
|
};
|
|
6796
7644
|
export type LiquidityPosition_OrderBy = 'accInterestTokenAmount' | 'accInterestTokenUSD' | 'accTokenDeposit' | 'accTokenWithdraw' | 'accYesterdayInterest' | 'accruedInterest' | 'balance' | 'balanceUSD' | 'chain' | 'id' | 'inMining' | 'inMiningUSD' | 'lastTxTime' | 'liquidityTokenBalance' | 'liquidityTokenInMining' | 'lpToken' | 'pair' | 'timestamp' | 'token' | 'updatedAt' | 'user' | 'vault' | 'yesterdayInterest';
|
|
7645
|
+
export type LiquidityPriceData = {
|
|
7646
|
+
changeRate?: Maybe<Scalars['BigDecimal']['output']>;
|
|
7647
|
+
price?: Maybe<Scalars['BigDecimal']['output']>;
|
|
7648
|
+
timeRange?: Maybe<Scalars['String']['output']>;
|
|
7649
|
+
};
|
|
6797
7650
|
export type LiquidityTick = {
|
|
6798
7651
|
id: Scalars['ID']['output'];
|
|
6799
7652
|
liquidityGross: Scalars['BigInt']['output'];
|
|
@@ -6838,11 +7691,16 @@ export type LiquidityToken = {
|
|
|
6838
7691
|
/** traded volume of USD for bridge */
|
|
6839
7692
|
volumeUSDBridge: Scalars['BigDecimal']['output'];
|
|
6840
7693
|
};
|
|
7694
|
+
export type LiquidityVolumeData = {
|
|
7695
|
+
timeRange?: Maybe<Scalars['String']['output']>;
|
|
7696
|
+
volume?: Maybe<Scalars['BigDecimal']['output']>;
|
|
7697
|
+
};
|
|
6841
7698
|
export type Liquiditycount_Data_Query = {
|
|
6842
7699
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
6843
7700
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6844
7701
|
};
|
|
6845
7702
|
export type Liquiditylist_Filter = {
|
|
7703
|
+
aggPairs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6846
7704
|
/** This field has been discarded for compatibility with the previous interface */
|
|
6847
7705
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
6848
7706
|
/** The default is all chains, including test chains */
|
|
@@ -7836,6 +8694,19 @@ export type MintHistory_Filter = {
|
|
|
7836
8694
|
user_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
7837
8695
|
};
|
|
7838
8696
|
export type MintHistory_OrderBy = 'amount' | 'chain' | 'id' | 'timestamp' | 'user';
|
|
8697
|
+
export type Native_SignerdepositData = {
|
|
8698
|
+
amount?: InputMaybe<Scalars['String']['input']>;
|
|
8699
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
8700
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
8701
|
+
};
|
|
8702
|
+
export type Native_SignerredeemData = {
|
|
8703
|
+
sharesToBurn?: InputMaybe<Scalars['String']['input']>;
|
|
8704
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
8705
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
8706
|
+
};
|
|
8707
|
+
export type Native_SignersignatureResult = {
|
|
8708
|
+
transaction?: Maybe<Scalars['String']['output']>;
|
|
8709
|
+
};
|
|
7839
8710
|
export type Nft = {
|
|
7840
8711
|
chain: Scalars['String']['output'];
|
|
7841
8712
|
id: Scalars['ID']['output'];
|
|
@@ -9533,6 +10404,116 @@ export type PersistentString_Filter = {
|
|
|
9533
10404
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
9534
10405
|
};
|
|
9535
10406
|
export type PersistentString_OrderBy = 'chain' | 'id';
|
|
10407
|
+
export type Points_ActivityActivityRankItem = {
|
|
10408
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
10409
|
+
totalPoints?: Maybe<Scalars['String']['output']>;
|
|
10410
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
10411
|
+
};
|
|
10412
|
+
export type Points_ActivityHistoryItem = {
|
|
10413
|
+
activityId?: Maybe<Scalars['Int']['output']>;
|
|
10414
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
10415
|
+
inviteeAddress?: Maybe<Scalars['String']['output']>;
|
|
10416
|
+
points?: Maybe<Scalars['String']['output']>;
|
|
10417
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
10418
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
10419
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
10420
|
+
};
|
|
10421
|
+
export type Points_ActivityPointsActivityHistory = {
|
|
10422
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10423
|
+
list?: Maybe<Array<Maybe<Points_ActivityHistoryItem>>>;
|
|
10424
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
10425
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
10426
|
+
};
|
|
10427
|
+
export type Points_ActivityPointsActivityInviteAccept = {
|
|
10428
|
+
inviterAddress?: Maybe<Scalars['String']['output']>;
|
|
10429
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
10430
|
+
};
|
|
10431
|
+
export type Points_ActivityPointsActivityInviteCode = {
|
|
10432
|
+
inviteCode?: Maybe<Scalars['String']['output']>;
|
|
10433
|
+
inviteUrl?: Maybe<Scalars['String']['output']>;
|
|
10434
|
+
};
|
|
10435
|
+
export type Points_ActivityPointsActivityInviteStatus = {
|
|
10436
|
+
acceptedAt?: Maybe<Scalars['String']['output']>;
|
|
10437
|
+
inviterAddress?: Maybe<Scalars['String']['output']>;
|
|
10438
|
+
inviterCode?: Maybe<Scalars['String']['output']>;
|
|
10439
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
10440
|
+
};
|
|
10441
|
+
export type Points_ActivityPointsActivityLeaderboard = {
|
|
10442
|
+
currentUserRank?: Maybe<Points_ActivityActivityRankItem>;
|
|
10443
|
+
overallRanks?: Maybe<Array<Maybe<Points_ActivityActivityRankItem>>>;
|
|
10444
|
+
};
|
|
10445
|
+
export type Points_ActivityPointsActivitySpecialBoost = {
|
|
10446
|
+
baseSymbol?: Maybe<Scalars['String']['output']>;
|
|
10447
|
+
baseToken?: Maybe<Scalars['String']['output']>;
|
|
10448
|
+
multiplier?: Maybe<Scalars['String']['output']>;
|
|
10449
|
+
multiplierPercentage?: Maybe<Scalars['String']['output']>;
|
|
10450
|
+
poolAddress?: Maybe<Scalars['String']['output']>;
|
|
10451
|
+
quoteSymbol?: Maybe<Scalars['String']['output']>;
|
|
10452
|
+
quoteToken?: Maybe<Scalars['String']['output']>;
|
|
10453
|
+
};
|
|
10454
|
+
export type Points_ActivityPointsActivitySummary = {
|
|
10455
|
+
activityId?: Maybe<Scalars['Int']['output']>;
|
|
10456
|
+
activityName?: Maybe<Scalars['String']['output']>;
|
|
10457
|
+
invitePoints?: Maybe<Scalars['String']['output']>;
|
|
10458
|
+
inviteeCount?: Maybe<Scalars['Int']['output']>;
|
|
10459
|
+
lpPoints?: Maybe<Scalars['String']['output']>;
|
|
10460
|
+
socialMediaPoints?: Maybe<Scalars['String']['output']>;
|
|
10461
|
+
swapPoints?: Maybe<Scalars['String']['output']>;
|
|
10462
|
+
totalPoints?: Maybe<Scalars['String']['output']>;
|
|
10463
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
10464
|
+
};
|
|
10465
|
+
export type Points_ActivityhistoryFilter = {
|
|
10466
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
10467
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
10468
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
10469
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
10470
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10471
|
+
sourceType?: InputMaybe<Scalars['String']['input']>;
|
|
10472
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
10473
|
+
};
|
|
10474
|
+
export type Points_ActivityinviteAcceptFilter = {
|
|
10475
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
10476
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
10477
|
+
inviteCode?: InputMaybe<Scalars['String']['input']>;
|
|
10478
|
+
inviteMethod?: InputMaybe<Scalars['String']['input']>;
|
|
10479
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
10480
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10481
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
10482
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
10483
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
10484
|
+
};
|
|
10485
|
+
export type Points_ActivityinviteCodeFilter = {
|
|
10486
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
10487
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
10488
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10489
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
10490
|
+
};
|
|
10491
|
+
export type Points_ActivityinviteStatusFilter = {
|
|
10492
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
10493
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
10494
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10495
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
10496
|
+
};
|
|
10497
|
+
export type Points_ActivityleaderboardFilter = {
|
|
10498
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
10499
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
10500
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
10501
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
10502
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10503
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
10504
|
+
};
|
|
10505
|
+
export type Points_ActivityspecialBoostFilter = {
|
|
10506
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
10507
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
10508
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10509
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
10510
|
+
};
|
|
10511
|
+
export type Points_ActivityuserSummaryFilter = {
|
|
10512
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
10513
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
10514
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10515
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
10516
|
+
};
|
|
9536
10517
|
export type Pool = {
|
|
9537
10518
|
allFlag: Scalars['BigInt']['output'];
|
|
9538
10519
|
/** Block number of this event */
|
|
@@ -10921,6 +11902,8 @@ export type Query = {
|
|
|
10921
11902
|
aggregateFragments: Array<AggregateFragment>;
|
|
10922
11903
|
all?: Maybe<All>;
|
|
10923
11904
|
alls: Array<All>;
|
|
11905
|
+
/** 获取amm ticks */
|
|
11906
|
+
amm_getTicksData: AmmTicksDataResult;
|
|
10924
11907
|
announcement_getAnnouncement?: Maybe<AnnouncementAnnouncementList>;
|
|
10925
11908
|
approval?: Maybe<Approval>;
|
|
10926
11909
|
approvals: Array<Approval>;
|
|
@@ -10939,8 +11922,12 @@ export type Query = {
|
|
|
10939
11922
|
avatarTransferHistories: Array<AvatarTransferHistory>;
|
|
10940
11923
|
avatarTransferHistory?: Maybe<AvatarTransferHistory>;
|
|
10941
11924
|
avatars: Array<Avatar>;
|
|
11925
|
+
backend_manage_settlex_server_detail?: Maybe<Backend_Manage_Settlex_ServerBatchTransferList>;
|
|
11926
|
+
backend_manage_settlex_server_list?: Maybe<Backend_Manage_Settlex_ServerBatchTransferResult>;
|
|
10942
11927
|
balance?: Maybe<Balance>;
|
|
10943
11928
|
balances: Array<Balance>;
|
|
11929
|
+
berachain_alm_allVaults?: Maybe<Array<Maybe<Berachain_AlmVault>>>;
|
|
11930
|
+
berachain_alm_myVaults?: Maybe<Array<Maybe<Berachain_AlmVaultShares>>>;
|
|
10944
11931
|
bidHistories: Array<BidHistory>;
|
|
10945
11932
|
bidHistory?: Maybe<BidHistory>;
|
|
10946
11933
|
bidPosition?: Maybe<BidPosition>;
|
|
@@ -10974,8 +11961,22 @@ export type Query = {
|
|
|
10974
11961
|
cross_chain_swap_orderRefundCount?: Maybe<Cross_Chain_SwapOrderRefundCountResult>;
|
|
10975
11962
|
cross_chain_swap_routesV2?: Maybe<Cross_Chain_SwapCrossChainRouteV2>;
|
|
10976
11963
|
cross_chain_swap_transactionEncode?: Maybe<Cross_Chain_SwapCrossChainTransactionEncode>;
|
|
11964
|
+
cross_chain_swap_zetachain_orderCreate?: Maybe<Cross_Chain_Swap_ZetachainCrossChainOrderCreate>;
|
|
11965
|
+
cross_chain_swap_zetachain_orderDetail?: Maybe<Cross_Chain_Swap_ZetachainCrossChainOrderList>;
|
|
11966
|
+
cross_chain_swap_zetachain_orderList?: Maybe<Cross_Chain_Swap_ZetachainCrossChainOrderResult>;
|
|
11967
|
+
cross_chain_swap_zetachain_orderRefundClaimed?: Maybe<Cross_Chain_Swap_ZetachainCrossChainOrderCreate>;
|
|
11968
|
+
cross_chain_swap_zetachain_routes?: Maybe<Cross_Chain_Swap_ZetachainCrossChainRoute>;
|
|
11969
|
+
cross_chain_swap_zetachain_swapOrderList?: Maybe<Cross_Chain_Swap_ZetachainSwapOrderResult>;
|
|
11970
|
+
cross_chain_swap_zetachain_transactionEncode?: Maybe<Cross_Chain_Swap_ZetachainCrossChainTransactionEncode>;
|
|
10977
11971
|
cross_chain_token_list?: Maybe<Cross_Chain_TokenCrossChainTokenlist>;
|
|
10978
11972
|
cross_chain_token_tokenPair?: Maybe<Cross_Chain_TokenCrossChainTokenPair>;
|
|
11973
|
+
cross_chain_transfer_getExplorerAllSections: Cross_Chain_TransferExplorerAllSections;
|
|
11974
|
+
cross_chain_transfer_getOrderDetail?: Maybe<Cross_Chain_TransferCrossChainOrder>;
|
|
11975
|
+
cross_chain_transfer_getOrderList: Cross_Chain_TransferCrossChainOrderList;
|
|
11976
|
+
cross_chain_transfer_getTokenList?: Maybe<Array<Maybe<Cross_Chain_TransferErc20V2List>>>;
|
|
11977
|
+
cross_chain_transfer_heterogeneousQuote: Cross_Chain_TransferHeterogeneousQuoteResponse;
|
|
11978
|
+
cross_chain_transfer_quote: Cross_Chain_TransferQuoteResponse;
|
|
11979
|
+
cross_chain_zetachain_token_list?: Maybe<Array<Maybe<Cross_Chain_Zetachain_TokenCrossChainTokenlist>>>;
|
|
10979
11980
|
crowdPooling?: Maybe<CrowdPooling>;
|
|
10980
11981
|
crowdPoolingDayData?: Maybe<CrowdPoolingDayData>;
|
|
10981
11982
|
crowdPoolingDayDatas: Array<CrowdPoolingDayData>;
|
|
@@ -10992,6 +11993,16 @@ export type Query = {
|
|
|
10992
11993
|
crowd_pooling_unvote?: Maybe<Crowd_PoolingJwt>;
|
|
10993
11994
|
crowd_pooling_vote?: Maybe<Crowd_PoolingJwt>;
|
|
10994
11995
|
crowd_pooling_voteList?: Maybe<Array<Maybe<Crowd_PoolingCrowdpoolingVoteList>>>;
|
|
11996
|
+
/** 获取所有池子列表 */
|
|
11997
|
+
curve_stableswap_ng_getAllPools?: Maybe<Curve_Stableswap_NgListInfo>;
|
|
11998
|
+
/** 获取我的流动性列表 */
|
|
11999
|
+
curve_stableswap_ng_getMyLiquidity?: Maybe<Curve_Stableswap_NgListInfo>;
|
|
12000
|
+
/** 获取池子详情信息 */
|
|
12001
|
+
curve_stableswap_ng_getPoolInfo?: Maybe<Curve_Stableswap_NgPool>;
|
|
12002
|
+
/** 获取池子流动性操作历史列表 */
|
|
12003
|
+
curve_stableswap_ng_getPoolLiquidityHistory?: Maybe<Curve_Stableswap_NgLiquidityHistoryListInfo>;
|
|
12004
|
+
/** 获取池子交易信息列表 */
|
|
12005
|
+
curve_stableswap_ng_getPoolSwapInfo?: Maybe<Curve_Stableswap_NgSwapListInfo>;
|
|
10995
12006
|
/** 资产每日收益折线图 */
|
|
10996
12007
|
d3mm_getAssetDailyInterests: Array<Maybe<D3mmAssetDailyInterest>>;
|
|
10997
12008
|
/** 资产详情信息, 如果资产不存在则返回null */
|
|
@@ -11143,6 +12154,11 @@ export type Query = {
|
|
|
11143
12154
|
gas_feeder_getGasPrices?: Maybe<Array<Maybe<Gas_FeederGasPrice>>>;
|
|
11144
12155
|
incentiveRewardHistories: Array<IncentiveRewardHistory>;
|
|
11145
12156
|
incentiveRewardHistory?: Maybe<IncentiveRewardHistory>;
|
|
12157
|
+
kaia_vault_detail?: Maybe<Kaia_VaultDetailVault>;
|
|
12158
|
+
kaia_vault_list?: Maybe<Array<Maybe<Kaia_VaultVaultList>>>;
|
|
12159
|
+
leaderboard_activities_getLeaderboard?: Maybe<Leaderboard_ActivitiesLeaderboardResult>;
|
|
12160
|
+
leaderboard_activities_getPeriods?: Maybe<Leaderboard_ActivitiesPeriodsResult>;
|
|
12161
|
+
leaderboard_activities_getUserRanking?: Maybe<Leaderboard_ActivitiesUserRankingResult>;
|
|
11146
12162
|
limit_and_rfq_createPrivateOrder?: Maybe<Scalars['String']['output']>;
|
|
11147
12163
|
limit_and_rfq_getOrderStatusBroadcasts?: Maybe<Array<Maybe<Limit_And_RfqLimitOrderStatusBroadcastInfo>>>;
|
|
11148
12164
|
limit_and_rfq_getPendingOrderChainList?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
@@ -11198,6 +12214,8 @@ export type Query = {
|
|
|
11198
12214
|
mining_list?: Maybe<MiningMiningListInfo>;
|
|
11199
12215
|
mintHistories: Array<MintHistory>;
|
|
11200
12216
|
mintHistory?: Maybe<MintHistory>;
|
|
12217
|
+
native_signer_deposit?: Maybe<Native_SignersignatureResult>;
|
|
12218
|
+
native_signer_redeem?: Maybe<Native_SignersignatureResult>;
|
|
11201
12219
|
nft?: Maybe<Nft>;
|
|
11202
12220
|
nftCollateralVault?: Maybe<NftCollateralVault>;
|
|
11203
12221
|
nftCollateralVaults: Array<NftCollateralVault>;
|
|
@@ -11228,6 +12246,13 @@ export type Query = {
|
|
|
11228
12246
|
persistentStringArray?: Maybe<PersistentStringArray>;
|
|
11229
12247
|
persistentStringArrays: Array<PersistentStringArray>;
|
|
11230
12248
|
persistentStrings: Array<PersistentString>;
|
|
12249
|
+
points_activity_history?: Maybe<Points_ActivityPointsActivityHistory>;
|
|
12250
|
+
points_activity_inviteAccept?: Maybe<Points_ActivityPointsActivityInviteAccept>;
|
|
12251
|
+
points_activity_inviteCode?: Maybe<Points_ActivityPointsActivityInviteCode>;
|
|
12252
|
+
points_activity_inviteStatus?: Maybe<Points_ActivityPointsActivityInviteStatus>;
|
|
12253
|
+
points_activity_leaderboard?: Maybe<Points_ActivityPointsActivityLeaderboard>;
|
|
12254
|
+
points_activity_specialBoost?: Maybe<Array<Maybe<Points_ActivityPointsActivitySpecialBoost>>>;
|
|
12255
|
+
points_activity_userSummary?: Maybe<Points_ActivityPointsActivitySummary>;
|
|
11231
12256
|
pool?: Maybe<Pool>;
|
|
11232
12257
|
poolDayData?: Maybe<PoolDayData>;
|
|
11233
12258
|
poolDayDatas: Array<PoolDayData>;
|
|
@@ -11290,11 +12315,36 @@ export type Query = {
|
|
|
11290
12315
|
setPoolInfos: Array<SetPoolInfo>;
|
|
11291
12316
|
setVaultInfo?: Maybe<SetVaultInfo>;
|
|
11292
12317
|
setVaultInfos: Array<SetVaultInfo>;
|
|
12318
|
+
settlex_limit_getOrderStatusBroadcasts?: Maybe<Array<Maybe<Settlex_LimitLimitOrderStatusBroadcastInfo>>>;
|
|
12319
|
+
settlex_limit_getPendingOrderChainList?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
12320
|
+
settlex_limit_limitOrderAmountLimit?: Maybe<Scalars['Float']['output']>;
|
|
12321
|
+
settlex_limit_limitOrderCancel?: Maybe<Settlex_LimitCancelLimitOrderResponse>;
|
|
12322
|
+
settlex_limit_limitOrderCreate?: Maybe<Settlex_LimitLimitOrder>;
|
|
12323
|
+
settlex_limit_limitOrderCreateV2?: Maybe<Settlex_LimitLimitOrderV2>;
|
|
12324
|
+
/** data url:post(https://host:port/api/v1/order/graphql/rfqTakerInquiry).data */
|
|
12325
|
+
settlex_limit_limitOrderFee?: Maybe<Settlex_LimitLimitOrderFeeInfo>;
|
|
12326
|
+
settlex_limit_limitOrderList?: Maybe<Array<Maybe<Settlex_LimitLimitOrder>>>;
|
|
12327
|
+
settlex_limit_limitOrderListWithPage?: Maybe<Settlex_LimitPaginateLimitOrderList>;
|
|
12328
|
+
settlex_limit_limitOrderListWithPageV2?: Maybe<Settlex_LimitPaginateLimitOrderListV2>;
|
|
12329
|
+
settlex_notice_center_transactionList?: Maybe<Settlex_Notice_CenterNoticeCenterTransactionList>;
|
|
12330
|
+
settlex_notice_center_unread?: Maybe<Settlex_Notice_CenterNoticeCenterUnRead>;
|
|
12331
|
+
sigmax_limit_getOrderStatusBroadcasts?: Maybe<Array<Maybe<Sigmax_LimitLimitOrderStatusBroadcastInfo>>>;
|
|
12332
|
+
sigmax_limit_getPendingOrderChainList?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
12333
|
+
sigmax_limit_limitOrderAmountLimit?: Maybe<Scalars['Float']['output']>;
|
|
12334
|
+
sigmax_limit_limitOrderCancel?: Maybe<Sigmax_LimitCancelLimitOrderResponse>;
|
|
12335
|
+
sigmax_limit_limitOrderCreate?: Maybe<Sigmax_LimitLimitOrder>;
|
|
12336
|
+
sigmax_limit_limitOrderCreateV2?: Maybe<Sigmax_LimitLimitOrderV2>;
|
|
12337
|
+
/** data url:post(https://host:port/api/v1/order/graphql/rfqTakerInquiry).data */
|
|
12338
|
+
sigmax_limit_limitOrderFee?: Maybe<Sigmax_LimitLimitOrderFeeInfo>;
|
|
12339
|
+
sigmax_limit_limitOrderList?: Maybe<Array<Maybe<Sigmax_LimitLimitOrder>>>;
|
|
12340
|
+
sigmax_limit_limitOrderListWithPage?: Maybe<Sigmax_LimitPaginateLimitOrderList>;
|
|
12341
|
+
sigmax_limit_limitOrderListWithPageV2?: Maybe<Sigmax_LimitPaginateLimitOrderListV2>;
|
|
11293
12342
|
starter?: Maybe<Starter>;
|
|
11294
12343
|
starters: Array<Starter>;
|
|
11295
12344
|
swap?: Maybe<Swap>;
|
|
11296
12345
|
swaps: Array<Swap>;
|
|
11297
12346
|
third_party_token_list?: Maybe<Array<Maybe<Third_Party_TokenList>>>;
|
|
12347
|
+
third_party_token_zetachain_list?: Maybe<Array<Maybe<Third_Party_Token_ZetachainList>>>;
|
|
11298
12348
|
tick?: Maybe<Tick>;
|
|
11299
12349
|
ticks: Array<Tick>;
|
|
11300
12350
|
token?: Maybe<Token>;
|
|
@@ -11338,6 +12388,7 @@ export type Query = {
|
|
|
11338
12388
|
user_swap_pair_slippage_delete?: Maybe<User_Swap_Pair_SlippageJwt>;
|
|
11339
12389
|
user_swap_pair_slippage_list?: Maybe<Array<Maybe<User_Swap_Pair_SlippageUserSwapPairSlippageList>>>;
|
|
11340
12390
|
user_swap_pair_slippage_upsert?: Maybe<User_Swap_Pair_SlippageJwtAndList>;
|
|
12391
|
+
user_swap_settlex_orderHistories?: Maybe<User_Swap_SettlexUserSwapOrder>;
|
|
11341
12392
|
userprofile_asset?: Maybe<UserprofileUserProfile>;
|
|
11342
12393
|
userprofile_inviteUser?: Maybe<UserprofileUserInvite>;
|
|
11343
12394
|
userprofile_nftAssets?: Maybe<UserprofileNftAssets>;
|
|
@@ -11362,6 +12413,21 @@ export type Query = {
|
|
|
11362
12413
|
/** get service charges for vdodo */
|
|
11363
12414
|
vdodo_getServiceCharges: VdodoVdodoServiceChargesResult;
|
|
11364
12415
|
vdodo_getStats: VdodoStatsResult;
|
|
12416
|
+
/** 池子详情 */
|
|
12417
|
+
ve33_getPool?: Maybe<Ve33Pool>;
|
|
12418
|
+
/** 池子列表 */
|
|
12419
|
+
ve33_getPoolList: Array<Maybe<Ve33Pool>>;
|
|
12420
|
+
/** 获取amm ticks */
|
|
12421
|
+
ve33_getTicksData: Ve33TicksDataResult;
|
|
12422
|
+
/** 锁仓信息 */
|
|
12423
|
+
ve33_getUserLock: Array<Maybe<Ve33Lock>>;
|
|
12424
|
+
/** 用户投资列表 */
|
|
12425
|
+
ve33_getUserPortfolioList: Array<Maybe<Ve33Portfolio>>;
|
|
12426
|
+
/** 用户veMOMO信息 */
|
|
12427
|
+
ve33_getUserVeMOMOInfo: Ve33UserVeMomoInfo;
|
|
12428
|
+
/** 投票池列表 */
|
|
12429
|
+
ve33_getVotePoolList: Array<Maybe<Ve33VotePool>>;
|
|
12430
|
+
ve33_token_list?: Maybe<Array<Maybe<Ve33_TokenVe33Token>>>;
|
|
11365
12431
|
withdrawFundHistories: Array<WithdrawFundHistory>;
|
|
11366
12432
|
withdrawFundHistory?: Maybe<WithdrawFundHistory>;
|
|
11367
12433
|
withdrawReserve?: Maybe<WithdrawReserve>;
|
|
@@ -11418,6 +12484,9 @@ export type QueryAllsArgs = {
|
|
|
11418
12484
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
11419
12485
|
where?: InputMaybe<All_Filter>;
|
|
11420
12486
|
};
|
|
12487
|
+
export type QueryAmm_GetTicksDataArgs = {
|
|
12488
|
+
where?: InputMaybe<AmmgetTicksDataInput>;
|
|
12489
|
+
};
|
|
11421
12490
|
export type QueryAnnouncement_GetAnnouncementArgs = {
|
|
11422
12491
|
lang?: InputMaybe<Scalars['String']['input']>;
|
|
11423
12492
|
};
|
|
@@ -11514,6 +12583,12 @@ export type QueryAvatarsArgs = {
|
|
|
11514
12583
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
11515
12584
|
where?: InputMaybe<Avatar_Filter>;
|
|
11516
12585
|
};
|
|
12586
|
+
export type QueryBackend_Manage_Settlex_Server_DetailArgs = {
|
|
12587
|
+
where?: InputMaybe<Backend_Manage_Settlex_ServerdetailBatchTransferFilter>;
|
|
12588
|
+
};
|
|
12589
|
+
export type QueryBackend_Manage_Settlex_Server_ListArgs = {
|
|
12590
|
+
where?: InputMaybe<Backend_Manage_Settlex_ServerbatchTransferFilter>;
|
|
12591
|
+
};
|
|
11517
12592
|
export type QueryBalanceArgs = {
|
|
11518
12593
|
block?: InputMaybe<Block_Height>;
|
|
11519
12594
|
id: Scalars['ID']['input'];
|
|
@@ -11527,6 +12602,12 @@ export type QueryBalancesArgs = {
|
|
|
11527
12602
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
11528
12603
|
where?: InputMaybe<Balance_Filter>;
|
|
11529
12604
|
};
|
|
12605
|
+
export type QueryBerachain_Alm_AllVaultsArgs = {
|
|
12606
|
+
where?: InputMaybe<Berachain_AlmallVaultsSearch>;
|
|
12607
|
+
};
|
|
12608
|
+
export type QueryBerachain_Alm_MyVaultsArgs = {
|
|
12609
|
+
where?: InputMaybe<Berachain_AlmmyVaultsSearch>;
|
|
12610
|
+
};
|
|
11530
12611
|
export type QueryBidHistoriesArgs = {
|
|
11531
12612
|
block?: InputMaybe<Block_Height>;
|
|
11532
12613
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11686,12 +12767,51 @@ export type QueryCross_Chain_Swap_RoutesV2Args = {
|
|
|
11686
12767
|
export type QueryCross_Chain_Swap_TransactionEncodeArgs = {
|
|
11687
12768
|
data?: InputMaybe<Cross_Chain_SwaptransactionEncodeData>;
|
|
11688
12769
|
};
|
|
12770
|
+
export type QueryCross_Chain_Swap_Zetachain_OrderCreateArgs = {
|
|
12771
|
+
data?: InputMaybe<Cross_Chain_Swap_ZetachainorderCreateData>;
|
|
12772
|
+
};
|
|
12773
|
+
export type QueryCross_Chain_Swap_Zetachain_OrderDetailArgs = {
|
|
12774
|
+
where?: InputMaybe<Cross_Chain_Swap_ZetachainorderDetailData>;
|
|
12775
|
+
};
|
|
12776
|
+
export type QueryCross_Chain_Swap_Zetachain_OrderListArgs = {
|
|
12777
|
+
where?: InputMaybe<Cross_Chain_Swap_ZetachainorderListData>;
|
|
12778
|
+
};
|
|
12779
|
+
export type QueryCross_Chain_Swap_Zetachain_OrderRefundClaimedArgs = {
|
|
12780
|
+
data?: InputMaybe<Cross_Chain_Swap_ZetachainorderRefundClaimedData>;
|
|
12781
|
+
};
|
|
12782
|
+
export type QueryCross_Chain_Swap_Zetachain_RoutesArgs = {
|
|
12783
|
+
where?: InputMaybe<Cross_Chain_Swap_ZetachainrouteParams>;
|
|
12784
|
+
};
|
|
12785
|
+
export type QueryCross_Chain_Swap_Zetachain_SwapOrderListArgs = {
|
|
12786
|
+
where?: InputMaybe<Cross_Chain_Swap_ZetachainswapOrderListData>;
|
|
12787
|
+
};
|
|
12788
|
+
export type QueryCross_Chain_Swap_Zetachain_TransactionEncodeArgs = {
|
|
12789
|
+
data?: InputMaybe<Cross_Chain_Swap_ZetachaintransactionEncodeParams>;
|
|
12790
|
+
};
|
|
11689
12791
|
export type QueryCross_Chain_Token_ListArgs = {
|
|
11690
12792
|
where?: InputMaybe<Cross_Chain_TokentokenlistFilter>;
|
|
11691
12793
|
};
|
|
11692
12794
|
export type QueryCross_Chain_Token_TokenPairArgs = {
|
|
11693
12795
|
where?: InputMaybe<Cross_Chain_TokentokenPairFilter>;
|
|
11694
12796
|
};
|
|
12797
|
+
export type QueryCross_Chain_Transfer_GetOrderDetailArgs = {
|
|
12798
|
+
where?: InputMaybe<Cross_Chain_TransferOrderDetailFilter>;
|
|
12799
|
+
};
|
|
12800
|
+
export type QueryCross_Chain_Transfer_GetOrderListArgs = {
|
|
12801
|
+
where?: InputMaybe<Cross_Chain_TransferOrderListFilter>;
|
|
12802
|
+
};
|
|
12803
|
+
export type QueryCross_Chain_Transfer_GetTokenListArgs = {
|
|
12804
|
+
where?: InputMaybe<Cross_Chain_TransferlistV2Filter>;
|
|
12805
|
+
};
|
|
12806
|
+
export type QueryCross_Chain_Transfer_HeterogeneousQuoteArgs = {
|
|
12807
|
+
where?: InputMaybe<Cross_Chain_TransferheterogeneousQuoteFilter>;
|
|
12808
|
+
};
|
|
12809
|
+
export type QueryCross_Chain_Transfer_QuoteArgs = {
|
|
12810
|
+
where?: InputMaybe<Cross_Chain_TransferquoteFilter>;
|
|
12811
|
+
};
|
|
12812
|
+
export type QueryCross_Chain_Zetachain_Token_ListArgs = {
|
|
12813
|
+
where?: InputMaybe<Cross_Chain_Zetachain_TokentokenlistFilter>;
|
|
12814
|
+
};
|
|
11695
12815
|
export type QueryCrowdPoolingArgs = {
|
|
11696
12816
|
block?: InputMaybe<Block_Height>;
|
|
11697
12817
|
id: Scalars['ID']['input'];
|
|
@@ -11758,6 +12878,21 @@ export type QueryCrowd_Pooling_VoteArgs = {
|
|
|
11758
12878
|
export type QueryCrowd_Pooling_VoteListArgs = {
|
|
11759
12879
|
where?: InputMaybe<Crowd_PoolingcrowdpoolingVoteListFilter>;
|
|
11760
12880
|
};
|
|
12881
|
+
export type QueryCurve_Stableswap_Ng_GetAllPoolsArgs = {
|
|
12882
|
+
where?: InputMaybe<Curve_Stableswap_Nglist_Filter>;
|
|
12883
|
+
};
|
|
12884
|
+
export type QueryCurve_Stableswap_Ng_GetMyLiquidityArgs = {
|
|
12885
|
+
where?: InputMaybe<Curve_Stableswap_Nglist_Filter>;
|
|
12886
|
+
};
|
|
12887
|
+
export type QueryCurve_Stableswap_Ng_GetPoolInfoArgs = {
|
|
12888
|
+
where?: InputMaybe<Curve_Stableswap_Ngpool_Info_Filter>;
|
|
12889
|
+
};
|
|
12890
|
+
export type QueryCurve_Stableswap_Ng_GetPoolLiquidityHistoryArgs = {
|
|
12891
|
+
where?: InputMaybe<Curve_Stableswap_Ngpool_Info_Filter>;
|
|
12892
|
+
};
|
|
12893
|
+
export type QueryCurve_Stableswap_Ng_GetPoolSwapInfoArgs = {
|
|
12894
|
+
where?: InputMaybe<Curve_Stableswap_Ngpool_Info_Filter>;
|
|
12895
|
+
};
|
|
11761
12896
|
export type QueryD3mm_GetAssetDailyInterestsArgs = {
|
|
11762
12897
|
where?: InputMaybe<D3mmTokenInput>;
|
|
11763
12898
|
};
|
|
@@ -12184,6 +13319,21 @@ export type QueryIncentiveRewardHistoryArgs = {
|
|
|
12184
13319
|
id: Scalars['ID']['input'];
|
|
12185
13320
|
where?: InputMaybe<IncentiveRewardHistory_Filter>;
|
|
12186
13321
|
};
|
|
13322
|
+
export type QueryKaia_Vault_DetailArgs = {
|
|
13323
|
+
where?: InputMaybe<Kaia_VaultdetailFilter>;
|
|
13324
|
+
};
|
|
13325
|
+
export type QueryKaia_Vault_ListArgs = {
|
|
13326
|
+
where?: InputMaybe<Kaia_VaultlistFilter>;
|
|
13327
|
+
};
|
|
13328
|
+
export type QueryLeaderboard_Activities_GetLeaderboardArgs = {
|
|
13329
|
+
where: Leaderboard_ActivitiesLeaderboardInput;
|
|
13330
|
+
};
|
|
13331
|
+
export type QueryLeaderboard_Activities_GetPeriodsArgs = {
|
|
13332
|
+
where: Leaderboard_ActivitiesPeriodsInput;
|
|
13333
|
+
};
|
|
13334
|
+
export type QueryLeaderboard_Activities_GetUserRankingArgs = {
|
|
13335
|
+
where: Leaderboard_ActivitiesUserRankingInput;
|
|
13336
|
+
};
|
|
12187
13337
|
export type QueryLimit_And_Rfq_CreatePrivateOrderArgs = {
|
|
12188
13338
|
where?: InputMaybe<Limit_And_RfqcreatePrivateOrderInfo>;
|
|
12189
13339
|
};
|
|
@@ -12392,6 +13542,12 @@ export type QueryMintHistoryArgs = {
|
|
|
12392
13542
|
id: Scalars['ID']['input'];
|
|
12393
13543
|
where?: InputMaybe<MintHistory_Filter>;
|
|
12394
13544
|
};
|
|
13545
|
+
export type QueryNative_Signer_DepositArgs = {
|
|
13546
|
+
data?: InputMaybe<Native_SignerdepositData>;
|
|
13547
|
+
};
|
|
13548
|
+
export type QueryNative_Signer_RedeemArgs = {
|
|
13549
|
+
data?: InputMaybe<Native_SignerredeemData>;
|
|
13550
|
+
};
|
|
12395
13551
|
export type QueryNftArgs = {
|
|
12396
13552
|
block?: InputMaybe<Block_Height>;
|
|
12397
13553
|
id: Scalars['ID']['input'];
|
|
@@ -12566,6 +13722,27 @@ export type QueryPersistentStringsArgs = {
|
|
|
12566
13722
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
12567
13723
|
where?: InputMaybe<PersistentString_Filter>;
|
|
12568
13724
|
};
|
|
13725
|
+
export type QueryPoints_Activity_HistoryArgs = {
|
|
13726
|
+
where?: InputMaybe<Points_ActivityhistoryFilter>;
|
|
13727
|
+
};
|
|
13728
|
+
export type QueryPoints_Activity_InviteAcceptArgs = {
|
|
13729
|
+
data?: InputMaybe<Points_ActivityinviteAcceptFilter>;
|
|
13730
|
+
};
|
|
13731
|
+
export type QueryPoints_Activity_InviteCodeArgs = {
|
|
13732
|
+
where?: InputMaybe<Points_ActivityinviteCodeFilter>;
|
|
13733
|
+
};
|
|
13734
|
+
export type QueryPoints_Activity_InviteStatusArgs = {
|
|
13735
|
+
where?: InputMaybe<Points_ActivityinviteStatusFilter>;
|
|
13736
|
+
};
|
|
13737
|
+
export type QueryPoints_Activity_LeaderboardArgs = {
|
|
13738
|
+
where?: InputMaybe<Points_ActivityleaderboardFilter>;
|
|
13739
|
+
};
|
|
13740
|
+
export type QueryPoints_Activity_SpecialBoostArgs = {
|
|
13741
|
+
where?: InputMaybe<Points_ActivityspecialBoostFilter>;
|
|
13742
|
+
};
|
|
13743
|
+
export type QueryPoints_Activity_UserSummaryArgs = {
|
|
13744
|
+
where?: InputMaybe<Points_ActivityuserSummaryFilter>;
|
|
13745
|
+
};
|
|
12569
13746
|
export type QueryPoolArgs = {
|
|
12570
13747
|
block?: InputMaybe<Block_Height>;
|
|
12571
13748
|
id: Scalars['ID']['input'];
|
|
@@ -12790,6 +13967,72 @@ export type QuerySetVaultInfosArgs = {
|
|
|
12790
13967
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
12791
13968
|
where?: InputMaybe<SetVaultInfo_Filter>;
|
|
12792
13969
|
};
|
|
13970
|
+
export type QuerySettlex_Limit_GetOrderStatusBroadcastsArgs = {
|
|
13971
|
+
where?: InputMaybe<Settlex_LimitgetPendingLimitOrderParam>;
|
|
13972
|
+
};
|
|
13973
|
+
export type QuerySettlex_Limit_GetPendingOrderChainListArgs = {
|
|
13974
|
+
where?: InputMaybe<Settlex_LimitgetPendingLimitOrderParam>;
|
|
13975
|
+
};
|
|
13976
|
+
export type QuerySettlex_Limit_LimitOrderAmountLimitArgs = {
|
|
13977
|
+
where?: InputMaybe<Settlex_LimitlimitOrderAmountLimitParam>;
|
|
13978
|
+
};
|
|
13979
|
+
export type QuerySettlex_Limit_LimitOrderCancelArgs = {
|
|
13980
|
+
where?: InputMaybe<Settlex_LimituserCancelLimitOrder>;
|
|
13981
|
+
};
|
|
13982
|
+
export type QuerySettlex_Limit_LimitOrderCreateArgs = {
|
|
13983
|
+
where?: InputMaybe<Settlex_LimituserCreateLimitOrder>;
|
|
13984
|
+
};
|
|
13985
|
+
export type QuerySettlex_Limit_LimitOrderCreateV2Args = {
|
|
13986
|
+
where?: InputMaybe<Settlex_LimituserCreateLimitOrderV2>;
|
|
13987
|
+
};
|
|
13988
|
+
export type QuerySettlex_Limit_LimitOrderFeeArgs = {
|
|
13989
|
+
where?: InputMaybe<Settlex_LimituserQueryLimitOrderFee>;
|
|
13990
|
+
};
|
|
13991
|
+
export type QuerySettlex_Limit_LimitOrderListArgs = {
|
|
13992
|
+
where?: InputMaybe<Settlex_LimituserQueryLimitOrderList>;
|
|
13993
|
+
};
|
|
13994
|
+
export type QuerySettlex_Limit_LimitOrderListWithPageArgs = {
|
|
13995
|
+
where?: InputMaybe<Settlex_LimituserQueryLimitOrderListWithPage>;
|
|
13996
|
+
};
|
|
13997
|
+
export type QuerySettlex_Limit_LimitOrderListWithPageV2Args = {
|
|
13998
|
+
where?: InputMaybe<Settlex_LimituserQueryLimitOrderListWithPage>;
|
|
13999
|
+
};
|
|
14000
|
+
export type QuerySettlex_Notice_Center_TransactionListArgs = {
|
|
14001
|
+
where?: InputMaybe<Settlex_Notice_CentertransactionListFilter>;
|
|
14002
|
+
};
|
|
14003
|
+
export type QuerySettlex_Notice_Center_UnreadArgs = {
|
|
14004
|
+
where?: InputMaybe<Settlex_Notice_CenternoticeCenterUnreadFilter>;
|
|
14005
|
+
};
|
|
14006
|
+
export type QuerySigmax_Limit_GetOrderStatusBroadcastsArgs = {
|
|
14007
|
+
where?: InputMaybe<Sigmax_LimitgetPendingLimitOrderParam>;
|
|
14008
|
+
};
|
|
14009
|
+
export type QuerySigmax_Limit_GetPendingOrderChainListArgs = {
|
|
14010
|
+
where?: InputMaybe<Sigmax_LimitgetPendingLimitOrderParam>;
|
|
14011
|
+
};
|
|
14012
|
+
export type QuerySigmax_Limit_LimitOrderAmountLimitArgs = {
|
|
14013
|
+
where?: InputMaybe<Sigmax_LimitlimitOrderAmountLimitParam>;
|
|
14014
|
+
};
|
|
14015
|
+
export type QuerySigmax_Limit_LimitOrderCancelArgs = {
|
|
14016
|
+
where?: InputMaybe<Sigmax_LimituserCancelLimitOrder>;
|
|
14017
|
+
};
|
|
14018
|
+
export type QuerySigmax_Limit_LimitOrderCreateArgs = {
|
|
14019
|
+
where?: InputMaybe<Sigmax_LimituserCreateLimitOrder>;
|
|
14020
|
+
};
|
|
14021
|
+
export type QuerySigmax_Limit_LimitOrderCreateV2Args = {
|
|
14022
|
+
where?: InputMaybe<Sigmax_LimituserCreateLimitOrderV2>;
|
|
14023
|
+
};
|
|
14024
|
+
export type QuerySigmax_Limit_LimitOrderFeeArgs = {
|
|
14025
|
+
where?: InputMaybe<Sigmax_LimituserQueryLimitOrderFee>;
|
|
14026
|
+
};
|
|
14027
|
+
export type QuerySigmax_Limit_LimitOrderListArgs = {
|
|
14028
|
+
where?: InputMaybe<Sigmax_LimituserQueryLimitOrderList>;
|
|
14029
|
+
};
|
|
14030
|
+
export type QuerySigmax_Limit_LimitOrderListWithPageArgs = {
|
|
14031
|
+
where?: InputMaybe<Sigmax_LimituserQueryLimitOrderListWithPage>;
|
|
14032
|
+
};
|
|
14033
|
+
export type QuerySigmax_Limit_LimitOrderListWithPageV2Args = {
|
|
14034
|
+
where?: InputMaybe<Sigmax_LimituserQueryLimitOrderListWithPage>;
|
|
14035
|
+
};
|
|
12793
14036
|
export type QueryStarterArgs = {
|
|
12794
14037
|
block?: InputMaybe<Block_Height>;
|
|
12795
14038
|
id: Scalars['ID']['input'];
|
|
@@ -12819,6 +14062,9 @@ export type QuerySwapsArgs = {
|
|
|
12819
14062
|
export type QueryThird_Party_Token_ListArgs = {
|
|
12820
14063
|
data?: InputMaybe<Third_Party_TokenlistData>;
|
|
12821
14064
|
};
|
|
14065
|
+
export type QueryThird_Party_Token_Zetachain_ListArgs = {
|
|
14066
|
+
data?: InputMaybe<Third_Party_Token_ZetachainlistData>;
|
|
14067
|
+
};
|
|
12822
14068
|
export type QueryTickArgs = {
|
|
12823
14069
|
block?: InputMaybe<Block_Height>;
|
|
12824
14070
|
id: Scalars['ID']['input'];
|
|
@@ -13067,6 +14313,9 @@ export type QueryUser_Swap_Pair_Slippage_ListArgs = {
|
|
|
13067
14313
|
export type QueryUser_Swap_Pair_Slippage_UpsertArgs = {
|
|
13068
14314
|
data?: InputMaybe<User_Swap_Pair_SlippageupsertData>;
|
|
13069
14315
|
};
|
|
14316
|
+
export type QueryUser_Swap_Settlex_OrderHistoriesArgs = {
|
|
14317
|
+
where?: InputMaybe<User_Swap_SettlexswapFilter>;
|
|
14318
|
+
};
|
|
13070
14319
|
export type QueryUserprofile_AssetArgs = {
|
|
13071
14320
|
where?: InputMaybe<UserprofileAsset_Filter>;
|
|
13072
14321
|
};
|
|
@@ -13192,6 +14441,30 @@ export type QueryVdodo_GetServiceChargesArgs = {
|
|
|
13192
14441
|
export type QueryVdodo_GetStatsArgs = {
|
|
13193
14442
|
where?: InputMaybe<VdodoChainsInput>;
|
|
13194
14443
|
};
|
|
14444
|
+
export type QueryVe33_GetPoolArgs = {
|
|
14445
|
+
where?: InputMaybe<Ve33PoolInput>;
|
|
14446
|
+
};
|
|
14447
|
+
export type QueryVe33_GetPoolListArgs = {
|
|
14448
|
+
where?: InputMaybe<Ve33TokenFilterPaginationInput>;
|
|
14449
|
+
};
|
|
14450
|
+
export type QueryVe33_GetTicksDataArgs = {
|
|
14451
|
+
where?: InputMaybe<Ve33getTicksDataInput>;
|
|
14452
|
+
};
|
|
14453
|
+
export type QueryVe33_GetUserLockArgs = {
|
|
14454
|
+
where: Ve33UserInput;
|
|
14455
|
+
};
|
|
14456
|
+
export type QueryVe33_GetUserPortfolioListArgs = {
|
|
14457
|
+
where: Ve33PortfolioInput;
|
|
14458
|
+
};
|
|
14459
|
+
export type QueryVe33_GetUserVeMomoInfoArgs = {
|
|
14460
|
+
where: Ve33UserInput;
|
|
14461
|
+
};
|
|
14462
|
+
export type QueryVe33_GetVotePoolListArgs = {
|
|
14463
|
+
where?: InputMaybe<Ve33VotePoolInput>;
|
|
14464
|
+
};
|
|
14465
|
+
export type QueryVe33_Token_ListArgs = {
|
|
14466
|
+
where?: InputMaybe<Ve33_TokenlistFilter>;
|
|
14467
|
+
};
|
|
13195
14468
|
export type QueryWithdrawFundHistoriesArgs = {
|
|
13196
14469
|
block?: InputMaybe<Block_Height>;
|
|
13197
14470
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -13947,7 +15220,399 @@ export type SetVaultInfo_Filter = {
|
|
|
13947
15220
|
vault_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
13948
15221
|
vault_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
13949
15222
|
};
|
|
13950
|
-
export type SetVaultInfo_OrderBy = 'blockNumber' | 'hash' | 'id' | 'logIndex' | 'operatorType' | 'timestamp' | 'updatedAt' | 'vault';
|
|
15223
|
+
export type SetVaultInfo_OrderBy = 'blockNumber' | 'hash' | 'id' | 'logIndex' | 'operatorType' | 'timestamp' | 'updatedAt' | 'vault';
|
|
15224
|
+
export type Settlex_LimitCancelLimitOrderResponse = {
|
|
15225
|
+
authorization?: Maybe<Scalars['String']['output']>;
|
|
15226
|
+
};
|
|
15227
|
+
export type Settlex_LimitLimitOrder = {
|
|
15228
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15229
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
15230
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
15231
|
+
filledAmount?: Maybe<Scalars['String']['output']>;
|
|
15232
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
15233
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15234
|
+
maker?: Maybe<Scalars['String']['output']>;
|
|
15235
|
+
makerAmount?: Maybe<Scalars['String']['output']>;
|
|
15236
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15237
|
+
makerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15238
|
+
makerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15239
|
+
makerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15240
|
+
network?: Maybe<Scalars['String']['output']>;
|
|
15241
|
+
order?: Maybe<Settlex_LimitLimitOrderInfo>;
|
|
15242
|
+
progress?: Maybe<Scalars['String']['output']>;
|
|
15243
|
+
salt?: Maybe<Scalars['String']['output']>;
|
|
15244
|
+
signature?: Maybe<Scalars['String']['output']>;
|
|
15245
|
+
taker?: Maybe<Scalars['String']['output']>;
|
|
15246
|
+
takerAmount?: Maybe<Scalars['String']['output']>;
|
|
15247
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15248
|
+
takerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15249
|
+
takerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15250
|
+
takerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15251
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15252
|
+
};
|
|
15253
|
+
export type Settlex_LimitLimitOrderFeeInfo = {
|
|
15254
|
+
baseFeeAmount?: Maybe<Scalars['String']['output']>;
|
|
15255
|
+
baseFeeValue?: Maybe<Scalars['String']['output']>;
|
|
15256
|
+
feeAmount?: Maybe<Scalars['String']['output']>;
|
|
15257
|
+
feeId?: Maybe<Scalars['String']['output']>;
|
|
15258
|
+
feeValue?: Maybe<Scalars['String']['output']>;
|
|
15259
|
+
percentFeeAmount?: Maybe<Scalars['String']['output']>;
|
|
15260
|
+
percentFeeValue?: Maybe<Scalars['String']['output']>;
|
|
15261
|
+
priceImpactFactor?: Maybe<Scalars['Float']['output']>;
|
|
15262
|
+
};
|
|
15263
|
+
export type Settlex_LimitLimitOrderInfo = {
|
|
15264
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
15265
|
+
maker?: Maybe<Scalars['String']['output']>;
|
|
15266
|
+
makerAmount?: Maybe<Scalars['String']['output']>;
|
|
15267
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15268
|
+
salt?: Maybe<Scalars['String']['output']>;
|
|
15269
|
+
taker?: Maybe<Scalars['String']['output']>;
|
|
15270
|
+
takerAmount?: Maybe<Scalars['String']['output']>;
|
|
15271
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15272
|
+
};
|
|
15273
|
+
export type Settlex_LimitLimitOrderStatusBroadcastInfo = {
|
|
15274
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
15275
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15276
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15277
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15278
|
+
makerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15279
|
+
orderId?: Maybe<Scalars['Int']['output']>;
|
|
15280
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
15281
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15282
|
+
takerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15283
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15284
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
15285
|
+
};
|
|
15286
|
+
export type Settlex_LimitLimitOrderV2 = {
|
|
15287
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15288
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
15289
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
15290
|
+
feeAmount?: Maybe<Scalars['String']['output']>;
|
|
15291
|
+
filledAmount?: Maybe<Scalars['String']['output']>;
|
|
15292
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
15293
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15294
|
+
maker?: Maybe<Scalars['String']['output']>;
|
|
15295
|
+
makerAmount?: Maybe<Scalars['String']['output']>;
|
|
15296
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15297
|
+
makerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15298
|
+
makerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15299
|
+
makerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15300
|
+
network?: Maybe<Scalars['String']['output']>;
|
|
15301
|
+
order?: Maybe<Settlex_LimitLimitOrderInfo>;
|
|
15302
|
+
progress?: Maybe<Scalars['String']['output']>;
|
|
15303
|
+
salt?: Maybe<Scalars['String']['output']>;
|
|
15304
|
+
taker?: Maybe<Scalars['String']['output']>;
|
|
15305
|
+
takerAmount?: Maybe<Scalars['String']['output']>;
|
|
15306
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15307
|
+
takerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15308
|
+
takerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15309
|
+
takerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15310
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15311
|
+
};
|
|
15312
|
+
export type Settlex_LimitPaginateLimitOrderList = {
|
|
15313
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
15314
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
15315
|
+
list?: Maybe<Array<Maybe<Settlex_LimitLimitOrder>>>;
|
|
15316
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
15317
|
+
totalPage?: Maybe<Scalars['Int']['output']>;
|
|
15318
|
+
};
|
|
15319
|
+
export type Settlex_LimitPaginateLimitOrderListV2 = {
|
|
15320
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
15321
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
15322
|
+
list?: Maybe<Array<Maybe<Settlex_LimitLimitOrderV2>>>;
|
|
15323
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
15324
|
+
totalPage?: Maybe<Scalars['Int']['output']>;
|
|
15325
|
+
};
|
|
15326
|
+
export type Settlex_LimitPrivateOrderInfo = {
|
|
15327
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15328
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15329
|
+
network?: Maybe<Scalars['String']['output']>;
|
|
15330
|
+
progress?: Maybe<Scalars['String']['output']>;
|
|
15331
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
15332
|
+
};
|
|
15333
|
+
export type Settlex_LimitcreateLimitOrderInfo = {
|
|
15334
|
+
expiration?: InputMaybe<Scalars['String']['input']>;
|
|
15335
|
+
maker?: InputMaybe<Scalars['String']['input']>;
|
|
15336
|
+
makerAmount?: InputMaybe<Scalars['String']['input']>;
|
|
15337
|
+
makerToken?: InputMaybe<Scalars['String']['input']>;
|
|
15338
|
+
salt?: InputMaybe<Scalars['String']['input']>;
|
|
15339
|
+
taker?: InputMaybe<Scalars['String']['input']>;
|
|
15340
|
+
takerAmount?: InputMaybe<Scalars['String']['input']>;
|
|
15341
|
+
takerToken?: InputMaybe<Scalars['String']['input']>;
|
|
15342
|
+
};
|
|
15343
|
+
export type Settlex_LimitcreatePrivateOrderInfo = {
|
|
15344
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15345
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15346
|
+
timeout?: InputMaybe<Scalars['Int']['input']>;
|
|
15347
|
+
transaction?: InputMaybe<Scalars['String']['input']>;
|
|
15348
|
+
useSource?: InputMaybe<Scalars['String']['input']>;
|
|
15349
|
+
};
|
|
15350
|
+
export type Settlex_LimitgetPendingLimitOrderParam = {
|
|
15351
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15352
|
+
};
|
|
15353
|
+
export type Settlex_LimitgetPrivateOrderParam = {
|
|
15354
|
+
hash?: InputMaybe<Scalars['String']['input']>;
|
|
15355
|
+
};
|
|
15356
|
+
export type Settlex_LimitlimitCancelSignType = 'eip191' | 'eip712' | 'eip1271';
|
|
15357
|
+
export type Settlex_LimitlimitCreateOrderWalletType = 'common' | 'unipass';
|
|
15358
|
+
export type Settlex_LimitlimitOrderAmountLimitParam = {
|
|
15359
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15360
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
15361
|
+
};
|
|
15362
|
+
export type Settlex_LimitlimitOrderQueryEnum = 'ALL' | 'FRESH' | 'NOT_FRESH';
|
|
15363
|
+
export type Settlex_LimituserCancelLimitOrder = {
|
|
15364
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15365
|
+
/** limit order id */
|
|
15366
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
15367
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15368
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
15369
|
+
signkey?: InputMaybe<Scalars['String']['input']>;
|
|
15370
|
+
signtime?: InputMaybe<Scalars['Int']['input']>;
|
|
15371
|
+
signtype?: InputMaybe<Settlex_LimitlimitCancelSignType>;
|
|
15372
|
+
};
|
|
15373
|
+
export type Settlex_LimituserCreateLimitOrder = {
|
|
15374
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15375
|
+
order?: InputMaybe<Settlex_LimitcreateLimitOrderInfo>;
|
|
15376
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
15377
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
15378
|
+
};
|
|
15379
|
+
export type Settlex_LimituserCreateLimitOrderV2 = {
|
|
15380
|
+
feeId?: InputMaybe<Scalars['String']['input']>;
|
|
15381
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15382
|
+
order?: InputMaybe<Settlex_LimitcreateLimitOrderInfo>;
|
|
15383
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
15384
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
15385
|
+
wallet?: InputMaybe<Settlex_LimitlimitCreateOrderWalletType>;
|
|
15386
|
+
};
|
|
15387
|
+
export type Settlex_LimituserQueryLimitOrderFee = {
|
|
15388
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
15389
|
+
stableAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
15390
|
+
toToken?: InputMaybe<Scalars['String']['input']>;
|
|
15391
|
+
toTokenAmount?: InputMaybe<Scalars['String']['input']>;
|
|
15392
|
+
};
|
|
15393
|
+
export type Settlex_LimituserQueryLimitOrderList = {
|
|
15394
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15395
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15396
|
+
};
|
|
15397
|
+
export type Settlex_LimituserQueryLimitOrderListWithPage = {
|
|
15398
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15399
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15400
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15401
|
+
orderType?: InputMaybe<Settlex_LimitlimitOrderQueryEnum>;
|
|
15402
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
15403
|
+
};
|
|
15404
|
+
export type Settlex_Notice_CenterNoticeCenterRead = {
|
|
15405
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
15406
|
+
};
|
|
15407
|
+
export type Settlex_Notice_CenterNoticeCenterTransactionItem = {
|
|
15408
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
15409
|
+
createTime?: Maybe<Scalars['String']['output']>;
|
|
15410
|
+
extend?: Maybe<Scalars['JSON']['output']>;
|
|
15411
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
15412
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15413
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15414
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
15415
|
+
};
|
|
15416
|
+
export type Settlex_Notice_CenterNoticeCenterTransactionList = {
|
|
15417
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15418
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
15419
|
+
list?: Maybe<Array<Maybe<Settlex_Notice_CenterNoticeCenterTransactionItem>>>;
|
|
15420
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
15421
|
+
};
|
|
15422
|
+
export type Settlex_Notice_CenterNoticeCenterUnRead = {
|
|
15423
|
+
transactionCount?: Maybe<Scalars['Int']['output']>;
|
|
15424
|
+
};
|
|
15425
|
+
export type Settlex_Notice_CenternoticeCenterUnreadFilter = {
|
|
15426
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15427
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
15428
|
+
};
|
|
15429
|
+
export type Settlex_Notice_CentertransactionListFilter = {
|
|
15430
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
15431
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15432
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
15433
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15434
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
15435
|
+
};
|
|
15436
|
+
export type Sigmax_LimitCancelLimitOrderResponse = {
|
|
15437
|
+
authorization?: Maybe<Scalars['String']['output']>;
|
|
15438
|
+
};
|
|
15439
|
+
export type Sigmax_LimitLimitOrder = {
|
|
15440
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15441
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
15442
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
15443
|
+
filledAmount?: Maybe<Scalars['String']['output']>;
|
|
15444
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
15445
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15446
|
+
maker?: Maybe<Scalars['String']['output']>;
|
|
15447
|
+
makerAmount?: Maybe<Scalars['String']['output']>;
|
|
15448
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15449
|
+
makerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15450
|
+
makerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15451
|
+
makerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15452
|
+
network?: Maybe<Scalars['String']['output']>;
|
|
15453
|
+
order?: Maybe<Sigmax_LimitLimitOrderInfo>;
|
|
15454
|
+
progress?: Maybe<Scalars['String']['output']>;
|
|
15455
|
+
salt?: Maybe<Scalars['String']['output']>;
|
|
15456
|
+
signature?: Maybe<Scalars['String']['output']>;
|
|
15457
|
+
taker?: Maybe<Scalars['String']['output']>;
|
|
15458
|
+
takerAmount?: Maybe<Scalars['String']['output']>;
|
|
15459
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15460
|
+
takerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15461
|
+
takerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15462
|
+
takerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15463
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15464
|
+
};
|
|
15465
|
+
export type Sigmax_LimitLimitOrderFeeInfo = {
|
|
15466
|
+
baseFeeAmount?: Maybe<Scalars['String']['output']>;
|
|
15467
|
+
baseFeeValue?: Maybe<Scalars['String']['output']>;
|
|
15468
|
+
feeAmount?: Maybe<Scalars['String']['output']>;
|
|
15469
|
+
feeId?: Maybe<Scalars['String']['output']>;
|
|
15470
|
+
feeValue?: Maybe<Scalars['String']['output']>;
|
|
15471
|
+
percentFeeAmount?: Maybe<Scalars['String']['output']>;
|
|
15472
|
+
percentFeeValue?: Maybe<Scalars['String']['output']>;
|
|
15473
|
+
priceImpactFactor?: Maybe<Scalars['Float']['output']>;
|
|
15474
|
+
};
|
|
15475
|
+
export type Sigmax_LimitLimitOrderInfo = {
|
|
15476
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
15477
|
+
maker?: Maybe<Scalars['String']['output']>;
|
|
15478
|
+
makerAmount?: Maybe<Scalars['String']['output']>;
|
|
15479
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15480
|
+
salt?: Maybe<Scalars['String']['output']>;
|
|
15481
|
+
taker?: Maybe<Scalars['String']['output']>;
|
|
15482
|
+
takerAmount?: Maybe<Scalars['String']['output']>;
|
|
15483
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15484
|
+
};
|
|
15485
|
+
export type Sigmax_LimitLimitOrderStatusBroadcastInfo = {
|
|
15486
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
15487
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15488
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15489
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15490
|
+
makerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15491
|
+
orderId?: Maybe<Scalars['Int']['output']>;
|
|
15492
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
15493
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15494
|
+
takerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15495
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15496
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
15497
|
+
};
|
|
15498
|
+
export type Sigmax_LimitLimitOrderV2 = {
|
|
15499
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15500
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
15501
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
15502
|
+
feeAmount?: Maybe<Scalars['String']['output']>;
|
|
15503
|
+
filledAmount?: Maybe<Scalars['String']['output']>;
|
|
15504
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
15505
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15506
|
+
maker?: Maybe<Scalars['String']['output']>;
|
|
15507
|
+
makerAmount?: Maybe<Scalars['String']['output']>;
|
|
15508
|
+
makerToken?: Maybe<Scalars['String']['output']>;
|
|
15509
|
+
makerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15510
|
+
makerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15511
|
+
makerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15512
|
+
network?: Maybe<Scalars['String']['output']>;
|
|
15513
|
+
order?: Maybe<Sigmax_LimitLimitOrderInfo>;
|
|
15514
|
+
progress?: Maybe<Scalars['String']['output']>;
|
|
15515
|
+
salt?: Maybe<Scalars['String']['output']>;
|
|
15516
|
+
taker?: Maybe<Scalars['String']['output']>;
|
|
15517
|
+
takerAmount?: Maybe<Scalars['String']['output']>;
|
|
15518
|
+
takerToken?: Maybe<Scalars['String']['output']>;
|
|
15519
|
+
takerTokenDecimal?: Maybe<Scalars['Int']['output']>;
|
|
15520
|
+
takerTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
15521
|
+
takerTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
15522
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15523
|
+
};
|
|
15524
|
+
export type Sigmax_LimitPaginateLimitOrderList = {
|
|
15525
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
15526
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
15527
|
+
list?: Maybe<Array<Maybe<Sigmax_LimitLimitOrder>>>;
|
|
15528
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
15529
|
+
totalPage?: Maybe<Scalars['Int']['output']>;
|
|
15530
|
+
};
|
|
15531
|
+
export type Sigmax_LimitPaginateLimitOrderListV2 = {
|
|
15532
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
15533
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
15534
|
+
list?: Maybe<Array<Maybe<Sigmax_LimitLimitOrderV2>>>;
|
|
15535
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
15536
|
+
totalPage?: Maybe<Scalars['Int']['output']>;
|
|
15537
|
+
};
|
|
15538
|
+
export type Sigmax_LimitPrivateOrderInfo = {
|
|
15539
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15540
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
15541
|
+
network?: Maybe<Scalars['String']['output']>;
|
|
15542
|
+
progress?: Maybe<Scalars['String']['output']>;
|
|
15543
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
15544
|
+
};
|
|
15545
|
+
export type Sigmax_LimitcreateLimitOrderInfo = {
|
|
15546
|
+
expiration?: InputMaybe<Scalars['String']['input']>;
|
|
15547
|
+
maker?: InputMaybe<Scalars['String']['input']>;
|
|
15548
|
+
makerAmount?: InputMaybe<Scalars['String']['input']>;
|
|
15549
|
+
makerToken?: InputMaybe<Scalars['String']['input']>;
|
|
15550
|
+
salt?: InputMaybe<Scalars['String']['input']>;
|
|
15551
|
+
taker?: InputMaybe<Scalars['String']['input']>;
|
|
15552
|
+
takerAmount?: InputMaybe<Scalars['String']['input']>;
|
|
15553
|
+
takerToken?: InputMaybe<Scalars['String']['input']>;
|
|
15554
|
+
};
|
|
15555
|
+
export type Sigmax_LimitcreatePrivateOrderInfo = {
|
|
15556
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15557
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15558
|
+
timeout?: InputMaybe<Scalars['Int']['input']>;
|
|
15559
|
+
transaction?: InputMaybe<Scalars['String']['input']>;
|
|
15560
|
+
useSource?: InputMaybe<Scalars['String']['input']>;
|
|
15561
|
+
};
|
|
15562
|
+
export type Sigmax_LimitgetPendingLimitOrderParam = {
|
|
15563
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15564
|
+
};
|
|
15565
|
+
export type Sigmax_LimitgetPrivateOrderParam = {
|
|
15566
|
+
hash?: InputMaybe<Scalars['String']['input']>;
|
|
15567
|
+
};
|
|
15568
|
+
export type Sigmax_LimitlimitCancelSignType = 'eip191' | 'eip712' | 'eip1271';
|
|
15569
|
+
export type Sigmax_LimitlimitCreateOrderWalletType = 'common' | 'unipass';
|
|
15570
|
+
export type Sigmax_LimitlimitOrderAmountLimitParam = {
|
|
15571
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15572
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
15573
|
+
};
|
|
15574
|
+
export type Sigmax_LimitlimitOrderQueryEnum = 'ALL' | 'FRESH' | 'NOT_FRESH';
|
|
15575
|
+
export type Sigmax_LimituserCancelLimitOrder = {
|
|
15576
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15577
|
+
/** limit order id */
|
|
15578
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
15579
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15580
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
15581
|
+
signkey?: InputMaybe<Scalars['String']['input']>;
|
|
15582
|
+
signtime?: InputMaybe<Scalars['Int']['input']>;
|
|
15583
|
+
signtype?: InputMaybe<Sigmax_LimitlimitCancelSignType>;
|
|
15584
|
+
};
|
|
15585
|
+
export type Sigmax_LimituserCreateLimitOrder = {
|
|
15586
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15587
|
+
order?: InputMaybe<Sigmax_LimitcreateLimitOrderInfo>;
|
|
15588
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
15589
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
15590
|
+
};
|
|
15591
|
+
export type Sigmax_LimituserCreateLimitOrderV2 = {
|
|
15592
|
+
feeId?: InputMaybe<Scalars['String']['input']>;
|
|
15593
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15594
|
+
order?: InputMaybe<Sigmax_LimitcreateLimitOrderInfo>;
|
|
15595
|
+
signature?: InputMaybe<Scalars['String']['input']>;
|
|
15596
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
15597
|
+
wallet?: InputMaybe<Sigmax_LimitlimitCreateOrderWalletType>;
|
|
15598
|
+
};
|
|
15599
|
+
export type Sigmax_LimituserQueryLimitOrderFee = {
|
|
15600
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
15601
|
+
stableAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
15602
|
+
toToken?: InputMaybe<Scalars['String']['input']>;
|
|
15603
|
+
toTokenAmount?: InputMaybe<Scalars['String']['input']>;
|
|
15604
|
+
};
|
|
15605
|
+
export type Sigmax_LimituserQueryLimitOrderList = {
|
|
15606
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15607
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15608
|
+
};
|
|
15609
|
+
export type Sigmax_LimituserQueryLimitOrderListWithPage = {
|
|
15610
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
15611
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15612
|
+
network?: InputMaybe<Scalars['String']['input']>;
|
|
15613
|
+
orderType?: InputMaybe<Sigmax_LimitlimitOrderQueryEnum>;
|
|
15614
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
15615
|
+
};
|
|
13951
15616
|
export type Starter = {
|
|
13952
15617
|
chain: Scalars['String']['output'];
|
|
13953
15618
|
/** id address */
|
|
@@ -14785,6 +16450,20 @@ export type Third_Party_TokenList = {
|
|
|
14785
16450
|
name?: Maybe<Scalars['String']['output']>;
|
|
14786
16451
|
symbol?: Maybe<Scalars['String']['output']>;
|
|
14787
16452
|
};
|
|
16453
|
+
export type Third_Party_Token_ZetachainList = {
|
|
16454
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
16455
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
16456
|
+
decimals?: Maybe<Scalars['Int']['output']>;
|
|
16457
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
16458
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
16459
|
+
logoURI?: Maybe<Scalars['String']['output']>;
|
|
16460
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
16461
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
16462
|
+
};
|
|
16463
|
+
export type Third_Party_Token_ZetachainlistData = {
|
|
16464
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
16465
|
+
fromNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
16466
|
+
};
|
|
14788
16467
|
export type Third_Party_TokenlistData = {
|
|
14789
16468
|
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
14790
16469
|
fromNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -16826,11 +18505,50 @@ export type User_Swap_Pair_SlippageupsertDataPair = {
|
|
|
16826
18505
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
16827
18506
|
toToken?: InputMaybe<Scalars['String']['input']>;
|
|
16828
18507
|
};
|
|
18508
|
+
export type User_Swap_SettlexSwapOrderList = {
|
|
18509
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
18510
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18511
|
+
extra?: Maybe<Scalars['JSON']['output']>;
|
|
18512
|
+
fromAmount?: Maybe<Scalars['String']['output']>;
|
|
18513
|
+
fromTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
18514
|
+
fromTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
18515
|
+
fromTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
18516
|
+
fromTokenPrice?: Maybe<Scalars['String']['output']>;
|
|
18517
|
+
fromTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
18518
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
18519
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
18520
|
+
maxAmount?: Maybe<Scalars['String']['output']>;
|
|
18521
|
+
minAmount?: Maybe<Scalars['String']['output']>;
|
|
18522
|
+
nonce?: Maybe<Scalars['Int']['output']>;
|
|
18523
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
18524
|
+
toAmount?: Maybe<Scalars['String']['output']>;
|
|
18525
|
+
toTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
18526
|
+
toTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
18527
|
+
toTokenLogoImg?: Maybe<Scalars['String']['output']>;
|
|
18528
|
+
toTokenPrice?: Maybe<Scalars['String']['output']>;
|
|
18529
|
+
toTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
18530
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
18531
|
+
};
|
|
18532
|
+
export type User_Swap_SettlexUserSwapOrder = {
|
|
18533
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
18534
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
18535
|
+
list?: Maybe<Array<Maybe<User_Swap_SettlexSwapOrderList>>>;
|
|
18536
|
+
page?: Maybe<Scalars['Int']['output']>;
|
|
18537
|
+
};
|
|
18538
|
+
export type User_Swap_SettlexswapFilter = {
|
|
18539
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
18540
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
18541
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
18542
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18543
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
18544
|
+
userAddress?: InputMaybe<Scalars['String']['input']>;
|
|
18545
|
+
};
|
|
16829
18546
|
export type User_SwapswapFilter = {
|
|
16830
18547
|
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
16831
18548
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
16832
18549
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
16833
18550
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18551
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
16834
18552
|
userAddress?: InputMaybe<Scalars['String']['input']>;
|
|
16835
18553
|
};
|
|
16836
18554
|
export type UserprofileAsset_Filter = {
|
|
@@ -18032,6 +19750,210 @@ export type VdodoVdodoServiceChargesResult = {
|
|
|
18032
19750
|
/** 80%分给LP的部分 */
|
|
18033
19751
|
pool_fees_total: Scalars['String']['output'];
|
|
18034
19752
|
};
|
|
19753
|
+
export type Ve33Incentive = {
|
|
19754
|
+
amount: Scalars['BigInt']['output'];
|
|
19755
|
+
token: Scalars['String']['output'];
|
|
19756
|
+
usd: Scalars['BigDecimal']['output'];
|
|
19757
|
+
};
|
|
19758
|
+
export type Ve33Lock = {
|
|
19759
|
+
id: Scalars['String']['output'];
|
|
19760
|
+
isPermanent: Scalars['Boolean']['output'];
|
|
19761
|
+
isVoted: Scalars['Boolean']['output'];
|
|
19762
|
+
lockedEnd: Scalars['BigInt']['output'];
|
|
19763
|
+
userAddress: Scalars['String']['output'];
|
|
19764
|
+
value: Scalars['BigDecimal']['output'];
|
|
19765
|
+
votingPower: Scalars['BigDecimal']['output'];
|
|
19766
|
+
};
|
|
19767
|
+
export type Ve33Pool = {
|
|
19768
|
+
apr: Ve33PoolApr;
|
|
19769
|
+
feeRate: Scalars['BigDecimal']['output'];
|
|
19770
|
+
feesToken0: Scalars['BigDecimal']['output'];
|
|
19771
|
+
feesToken1: Scalars['BigDecimal']['output'];
|
|
19772
|
+
feesUSD: Scalars['BigDecimal']['output'];
|
|
19773
|
+
gaugeAddress: Scalars['String']['output'];
|
|
19774
|
+
id: Scalars['String']['output'];
|
|
19775
|
+
tickSpacing: Scalars['Int']['output'];
|
|
19776
|
+
title: Scalars['String']['output'];
|
|
19777
|
+
token0Address: Scalars['String']['output'];
|
|
19778
|
+
token0Decimals: Scalars['Int']['output'];
|
|
19779
|
+
token0Name: Scalars['String']['output'];
|
|
19780
|
+
token0Symbol: Scalars['String']['output'];
|
|
19781
|
+
token1Address: Scalars['String']['output'];
|
|
19782
|
+
token1Decimals: Scalars['Int']['output'];
|
|
19783
|
+
token1Name: Scalars['String']['output'];
|
|
19784
|
+
token1Symbol: Scalars['String']['output'];
|
|
19785
|
+
totalValueLockedToken0: Scalars['BigDecimal']['output'];
|
|
19786
|
+
totalValueLockedToken1: Scalars['BigDecimal']['output'];
|
|
19787
|
+
totalValueLockedUSD: Scalars['BigDecimal']['output'];
|
|
19788
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
19789
|
+
/** v2 or v3 */
|
|
19790
|
+
version: Scalars['String']['output'];
|
|
19791
|
+
volumeToken0: Scalars['BigDecimal']['output'];
|
|
19792
|
+
volumeToken1: Scalars['BigDecimal']['output'];
|
|
19793
|
+
volumeUSD: Scalars['BigDecimal']['output'];
|
|
19794
|
+
};
|
|
19795
|
+
export type Ve33PoolApr = {
|
|
19796
|
+
fees: Scalars['BigDecimal']['output'];
|
|
19797
|
+
incentives: Scalars['BigDecimal']['output'];
|
|
19798
|
+
};
|
|
19799
|
+
export type Ve33PoolInput = {
|
|
19800
|
+
pool?: InputMaybe<Scalars['String']['input']>;
|
|
19801
|
+
};
|
|
19802
|
+
export type Ve33PoolTotalVoted = {
|
|
19803
|
+
token: Scalars['String']['output'];
|
|
19804
|
+
weight: Scalars['String']['output'];
|
|
19805
|
+
};
|
|
19806
|
+
export type Ve33Portfolio = {
|
|
19807
|
+
apr: Ve33PortfolioApr;
|
|
19808
|
+
emissions: Scalars['BigDecimal']['output'];
|
|
19809
|
+
emissionsUSD: Scalars['BigDecimal']['output'];
|
|
19810
|
+
feeRate: Scalars['BigDecimal']['output'];
|
|
19811
|
+
feesToken0: Scalars['BigDecimal']['output'];
|
|
19812
|
+
feesToken1: Scalars['BigDecimal']['output'];
|
|
19813
|
+
feesUSD: Scalars['BigDecimal']['output'];
|
|
19814
|
+
gaugeAddress: Scalars['String']['output'];
|
|
19815
|
+
/** liquidity position id, 'Position #1000' */
|
|
19816
|
+
id: Scalars['String']['output'];
|
|
19817
|
+
incentives: Array<Maybe<Ve33Incentive>>;
|
|
19818
|
+
liquidityTokenBalance: Scalars['String']['output'];
|
|
19819
|
+
liquidityTokenBalanceUSD: Scalars['String']['output'];
|
|
19820
|
+
liquidityTokenInMining: Scalars['String']['output'];
|
|
19821
|
+
liquidityTokenInMiningUSD: Scalars['String']['output'];
|
|
19822
|
+
liquidityUSD: Scalars['String']['output'];
|
|
19823
|
+
locks: Array<Maybe<Ve33PortfolioLock>>;
|
|
19824
|
+
poolAddress: Scalars['String']['output'];
|
|
19825
|
+
/** Stable, Volatile, CL */
|
|
19826
|
+
tickSpacing: Scalars['Int']['output'];
|
|
19827
|
+
title: Scalars['String']['output'];
|
|
19828
|
+
token0Address: Scalars['String']['output'];
|
|
19829
|
+
token0Amount: Scalars['String']['output'];
|
|
19830
|
+
token0Decimals: Scalars['Int']['output'];
|
|
19831
|
+
token0LowerPrice: Scalars['String']['output'];
|
|
19832
|
+
token0Name: Scalars['String']['output'];
|
|
19833
|
+
token0Piece: Scalars['String']['output'];
|
|
19834
|
+
token0Symbol: Scalars['String']['output'];
|
|
19835
|
+
token0UpperPrice: Scalars['String']['output'];
|
|
19836
|
+
token1Address: Scalars['String']['output'];
|
|
19837
|
+
token1Amount: Scalars['String']['output'];
|
|
19838
|
+
token1Decimals: Scalars['Int']['output'];
|
|
19839
|
+
token1LowerPrice: Scalars['String']['output'];
|
|
19840
|
+
token1Name: Scalars['String']['output'];
|
|
19841
|
+
token1Piece: Scalars['String']['output'];
|
|
19842
|
+
token1Symbol: Scalars['String']['output'];
|
|
19843
|
+
token1UpperPrice: Scalars['String']['output'];
|
|
19844
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
19845
|
+
/** voting=Voting Rewards, liquidity=LP Rewards */
|
|
19846
|
+
type: Scalars['String']['output'];
|
|
19847
|
+
/** v2 or v3 */
|
|
19848
|
+
version: Scalars['String']['output'];
|
|
19849
|
+
};
|
|
19850
|
+
export type Ve33PortfolioApr = {
|
|
19851
|
+
fees: Scalars['BigDecimal']['output'];
|
|
19852
|
+
incentives: Scalars['BigDecimal']['output'];
|
|
19853
|
+
rewards: Scalars['BigDecimal']['output'];
|
|
19854
|
+
};
|
|
19855
|
+
export type Ve33PortfolioInput = {
|
|
19856
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
19857
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
19858
|
+
token_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
19859
|
+
type?: InputMaybe<Ve33VotePoolType>;
|
|
19860
|
+
user: Scalars['String']['input'];
|
|
19861
|
+
};
|
|
19862
|
+
export type Ve33PortfolioLock = {
|
|
19863
|
+
id: Scalars['String']['output'];
|
|
19864
|
+
lockedEnd: Scalars['BigInt']['output'];
|
|
19865
|
+
totalWeight: Scalars['BigDecimal']['output'];
|
|
19866
|
+
usd: Scalars['BigDecimal']['output'];
|
|
19867
|
+
userAddress: Scalars['String']['output'];
|
|
19868
|
+
value: Scalars['BigInt']['output'];
|
|
19869
|
+
votingPower: Scalars['BigInt']['output'];
|
|
19870
|
+
weight: Scalars['BigDecimal']['output'];
|
|
19871
|
+
};
|
|
19872
|
+
export type Ve33Tick = {
|
|
19873
|
+
id: Scalars['String']['output'];
|
|
19874
|
+
liquidityGross: Scalars['BigDecimal']['output'];
|
|
19875
|
+
liquidityNet: Scalars['BigDecimal']['output'];
|
|
19876
|
+
poolAddress: Scalars['String']['output'];
|
|
19877
|
+
price0: Scalars['BigDecimal']['output'];
|
|
19878
|
+
price1: Scalars['BigDecimal']['output'];
|
|
19879
|
+
protocolPosition?: Maybe<Scalars['String']['output']>;
|
|
19880
|
+
tickArrayLower?: Maybe<Scalars['String']['output']>;
|
|
19881
|
+
tickArrayUpper?: Maybe<Scalars['String']['output']>;
|
|
19882
|
+
tickIdx: Scalars['BigDecimal']['output'];
|
|
19883
|
+
};
|
|
19884
|
+
export type Ve33TicksDataResult = {
|
|
19885
|
+
first?: Maybe<Scalars['Int']['output']>;
|
|
19886
|
+
pool: Scalars['String']['output'];
|
|
19887
|
+
skip?: Maybe<Scalars['Int']['output']>;
|
|
19888
|
+
ticks: Array<Maybe<Ve33Tick>>;
|
|
19889
|
+
};
|
|
19890
|
+
export type Ve33TokenFilterPaginationInput = {
|
|
19891
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
19892
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
19893
|
+
token_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
19894
|
+
};
|
|
19895
|
+
export type Ve33UserInput = {
|
|
19896
|
+
user: Scalars['String']['input'];
|
|
19897
|
+
};
|
|
19898
|
+
export type Ve33UserVeMomoInfo = {
|
|
19899
|
+
totalVeMOMOCount: Scalars['Int']['output'];
|
|
19900
|
+
votedVeMOMOCount: Scalars['Int']['output'];
|
|
19901
|
+
};
|
|
19902
|
+
export type Ve33VotePool = {
|
|
19903
|
+
apr: Ve33PoolApr;
|
|
19904
|
+
feeRate: Scalars['BigDecimal']['output'];
|
|
19905
|
+
feesToken0: Scalars['BigDecimal']['output'];
|
|
19906
|
+
feesToken1: Scalars['BigDecimal']['output'];
|
|
19907
|
+
feesUSD: Scalars['BigDecimal']['output'];
|
|
19908
|
+
gaugeAddress: Scalars['String']['output'];
|
|
19909
|
+
id: Scalars['String']['output'];
|
|
19910
|
+
incentives: Array<Maybe<Ve33Incentive>>;
|
|
19911
|
+
tickSpacing: Scalars['Int']['output'];
|
|
19912
|
+
title: Scalars['String']['output'];
|
|
19913
|
+
token0Address: Scalars['String']['output'];
|
|
19914
|
+
token0Decimals: Scalars['Int']['output'];
|
|
19915
|
+
token0Name: Scalars['String']['output'];
|
|
19916
|
+
token0Symbol: Scalars['String']['output'];
|
|
19917
|
+
token1Address: Scalars['String']['output'];
|
|
19918
|
+
token1Decimals: Scalars['Int']['output'];
|
|
19919
|
+
token1Name: Scalars['String']['output'];
|
|
19920
|
+
token1Symbol: Scalars['String']['output'];
|
|
19921
|
+
totalValueLockedToken0: Scalars['BigDecimal']['output'];
|
|
19922
|
+
totalValueLockedToken1: Scalars['BigDecimal']['output'];
|
|
19923
|
+
totalValueLockedUSD: Scalars['BigDecimal']['output'];
|
|
19924
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
19925
|
+
/** v2 or v3 */
|
|
19926
|
+
version: Scalars['String']['output'];
|
|
19927
|
+
votes: Array<Maybe<Ve33PoolTotalVoted>>;
|
|
19928
|
+
};
|
|
19929
|
+
export type Ve33VotePoolInput = {
|
|
19930
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
19931
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
19932
|
+
token_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
19933
|
+
type?: InputMaybe<Ve33VotePoolType>;
|
|
19934
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
19935
|
+
};
|
|
19936
|
+
export type Ve33VotePoolType = 'All' | 'V2' | 'V3';
|
|
19937
|
+
export type Ve33_TokenVe33Token = {
|
|
19938
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
19939
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
19940
|
+
decimals?: Maybe<Scalars['Int']['output']>;
|
|
19941
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
19942
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19943
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
19944
|
+
slippage?: Maybe<Scalars['String']['output']>;
|
|
19945
|
+
symbol?: Maybe<Scalars['String']['output']>;
|
|
19946
|
+
};
|
|
19947
|
+
export type Ve33_TokenlistFilter = {
|
|
19948
|
+
chainId?: InputMaybe<Scalars['String']['input']>;
|
|
19949
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
19950
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
19951
|
+
};
|
|
19952
|
+
export type Ve33getTicksDataInput = {
|
|
19953
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
19954
|
+
pool: Scalars['String']['input'];
|
|
19955
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
19956
|
+
};
|
|
18035
19957
|
export type WithdrawFundHistory = {
|
|
18036
19958
|
chain: Scalars['String']['output'];
|
|
18037
19959
|
/** id hash-logindex */
|
|
@@ -18474,6 +20396,181 @@ export type TicksQuery = {
|
|
|
18474
20396
|
price1: any;
|
|
18475
20397
|
}>;
|
|
18476
20398
|
};
|
|
20399
|
+
export type FetchCpListQueryVariables = Exact<{
|
|
20400
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20401
|
+
where?: InputMaybe<CrowdPooling_Filter>;
|
|
20402
|
+
}>;
|
|
20403
|
+
export type FetchCpListQuery = {
|
|
20404
|
+
crowdPoolings: Array<{
|
|
20405
|
+
id: string;
|
|
20406
|
+
creator: any;
|
|
20407
|
+
bidStartTime: any;
|
|
20408
|
+
bidEndTime: any;
|
|
20409
|
+
freezeDuration: any;
|
|
20410
|
+
i: any;
|
|
20411
|
+
k: any;
|
|
20412
|
+
poolQuoteCap: any;
|
|
20413
|
+
poolQuote: any;
|
|
20414
|
+
investorsCount: any;
|
|
20415
|
+
totalBase: any;
|
|
20416
|
+
createTime: any;
|
|
20417
|
+
settled: boolean;
|
|
20418
|
+
totalShares: any;
|
|
20419
|
+
calmEndTime: any;
|
|
20420
|
+
version?: any | null;
|
|
20421
|
+
feeRate?: any | null;
|
|
20422
|
+
isOvercapStop?: boolean | null;
|
|
20423
|
+
tokenCliffRate?: any | null;
|
|
20424
|
+
tokenClaimDuration?: any | null;
|
|
20425
|
+
tokenVestingDuration?: any | null;
|
|
20426
|
+
dvm?: {
|
|
20427
|
+
id: string;
|
|
20428
|
+
} | null;
|
|
20429
|
+
baseToken: {
|
|
20430
|
+
id: string;
|
|
20431
|
+
symbol: string;
|
|
20432
|
+
name: string;
|
|
20433
|
+
decimals: any;
|
|
20434
|
+
};
|
|
20435
|
+
quoteToken: {
|
|
20436
|
+
id: string;
|
|
20437
|
+
symbol: string;
|
|
20438
|
+
name: string;
|
|
20439
|
+
decimals: any;
|
|
20440
|
+
};
|
|
20441
|
+
}>;
|
|
20442
|
+
};
|
|
20443
|
+
export type FetchCpDetailQueryVariables = Exact<{
|
|
20444
|
+
id: Scalars['ID']['input'];
|
|
20445
|
+
where?: InputMaybe<CrowdPooling_Filter>;
|
|
20446
|
+
}>;
|
|
20447
|
+
export type FetchCpDetailQuery = {
|
|
20448
|
+
crowdPooling?: {
|
|
20449
|
+
id: string;
|
|
20450
|
+
creator: any;
|
|
20451
|
+
bidStartTime: any;
|
|
20452
|
+
bidEndTime: any;
|
|
20453
|
+
freezeDuration: any;
|
|
20454
|
+
i: any;
|
|
20455
|
+
k: any;
|
|
20456
|
+
poolQuoteCap: any;
|
|
20457
|
+
poolQuote: any;
|
|
20458
|
+
investorsCount: any;
|
|
20459
|
+
totalBase: any;
|
|
20460
|
+
createTime: any;
|
|
20461
|
+
settled: boolean;
|
|
20462
|
+
totalShares: any;
|
|
20463
|
+
calmEndTime: any;
|
|
20464
|
+
version?: any | null;
|
|
20465
|
+
feeRate?: any | null;
|
|
20466
|
+
isOvercapStop?: boolean | null;
|
|
20467
|
+
tokenCliffRate?: any | null;
|
|
20468
|
+
tokenClaimDuration?: any | null;
|
|
20469
|
+
tokenVestingDuration?: any | null;
|
|
20470
|
+
dvm?: {
|
|
20471
|
+
id: string;
|
|
20472
|
+
} | null;
|
|
20473
|
+
baseToken: {
|
|
20474
|
+
id: string;
|
|
20475
|
+
symbol: string;
|
|
20476
|
+
name: string;
|
|
20477
|
+
decimals: any;
|
|
20478
|
+
};
|
|
20479
|
+
quoteToken: {
|
|
20480
|
+
id: string;
|
|
20481
|
+
symbol: string;
|
|
20482
|
+
name: string;
|
|
20483
|
+
decimals: any;
|
|
20484
|
+
};
|
|
20485
|
+
} | null;
|
|
20486
|
+
};
|
|
20487
|
+
export type FetchIopcpListQueryVariables = Exact<{
|
|
20488
|
+
where?: InputMaybe<Crowd_Pooling_Read_ServercrowdpoolingListFilter>;
|
|
20489
|
+
voteWhere?: InputMaybe<Crowd_Pooling_Read_ServercrowdpoolingVoteListFilter>;
|
|
20490
|
+
}>;
|
|
20491
|
+
export type FetchIopcpListQuery = {
|
|
20492
|
+
crowd_pooling_read_server_list?: Array<{
|
|
20493
|
+
address?: string | null;
|
|
20494
|
+
votes?: Array<{
|
|
20495
|
+
id?: number | null;
|
|
20496
|
+
} | null> | null;
|
|
20497
|
+
} | null> | null;
|
|
20498
|
+
crowd_pooling_read_server_voteList?: Array<{
|
|
20499
|
+
id?: number | null;
|
|
20500
|
+
account?: {
|
|
20501
|
+
address?: string | null;
|
|
20502
|
+
} | null;
|
|
20503
|
+
} | null> | null;
|
|
20504
|
+
};
|
|
20505
|
+
export type FetchBidPositionQueryVariables = Exact<{
|
|
20506
|
+
where?: InputMaybe<BidPosition_Filter>;
|
|
20507
|
+
}>;
|
|
20508
|
+
export type FetchBidPositionQuery = {
|
|
20509
|
+
bidPositions: Array<{
|
|
20510
|
+
shares: any;
|
|
20511
|
+
investedQuote: any;
|
|
20512
|
+
user: {
|
|
20513
|
+
id: string;
|
|
20514
|
+
};
|
|
20515
|
+
cp: {
|
|
20516
|
+
id: string;
|
|
20517
|
+
};
|
|
20518
|
+
}>;
|
|
20519
|
+
};
|
|
20520
|
+
export type FetchCpDayDataQueryVariables = Exact<{
|
|
20521
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20522
|
+
where?: InputMaybe<CrowdPoolingDayData_Filter>;
|
|
20523
|
+
}>;
|
|
20524
|
+
export type FetchCpDayDataQuery = {
|
|
20525
|
+
crowdPoolingDayDatas: Array<{
|
|
20526
|
+
date: number;
|
|
20527
|
+
investedQuote: any;
|
|
20528
|
+
investCount: any;
|
|
20529
|
+
newcome: any;
|
|
20530
|
+
investors: any;
|
|
20531
|
+
poolQuote: any;
|
|
20532
|
+
}>;
|
|
20533
|
+
};
|
|
20534
|
+
export type FetchCpHourDataQueryVariables = Exact<{
|
|
20535
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20536
|
+
where?: InputMaybe<CrowdPoolingHourData_Filter>;
|
|
20537
|
+
}>;
|
|
20538
|
+
export type FetchCpHourDataQuery = {
|
|
20539
|
+
crowdPoolingHourDatas: Array<{
|
|
20540
|
+
hour: number;
|
|
20541
|
+
investedQuote: any;
|
|
20542
|
+
investCount: any;
|
|
20543
|
+
newcome: any;
|
|
20544
|
+
investors: any;
|
|
20545
|
+
poolQuote: any;
|
|
20546
|
+
}>;
|
|
20547
|
+
};
|
|
20548
|
+
export type FetchCpBidsQueryVariables = Exact<{
|
|
20549
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20550
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
20551
|
+
where?: InputMaybe<BidHistory_Filter>;
|
|
20552
|
+
orderBy?: InputMaybe<BidHistory_OrderBy>;
|
|
20553
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
20554
|
+
}>;
|
|
20555
|
+
export type FetchCpBidsQuery = {
|
|
20556
|
+
bidHistories: Array<{
|
|
20557
|
+
id: string;
|
|
20558
|
+
timestamp: any;
|
|
20559
|
+
action: string;
|
|
20560
|
+
quote: any;
|
|
20561
|
+
fee: any;
|
|
20562
|
+
user: {
|
|
20563
|
+
id: string;
|
|
20564
|
+
};
|
|
20565
|
+
cp: {
|
|
20566
|
+
id: string;
|
|
20567
|
+
quoteToken: {
|
|
20568
|
+
id: string;
|
|
20569
|
+
symbol: string;
|
|
20570
|
+
};
|
|
20571
|
+
};
|
|
20572
|
+
}>;
|
|
20573
|
+
};
|
|
18477
20574
|
export type FetchMiningListQueryVariables = Exact<{
|
|
18478
20575
|
where?: InputMaybe<Miningmining_List_Filter>;
|
|
18479
20576
|
}>;
|
|
@@ -19277,6 +21374,13 @@ export declare class TypedDocumentString<TResult, TVariables> extends String imp
|
|
|
19277
21374
|
export declare const FetchErc20SwapCrossChainListDocument: TypedDocumentString<FetchErc20SwapCrossChainListQuery, FetchErc20SwapCrossChainListQueryVariables>;
|
|
19278
21375
|
export declare const FetchErc20ForecastSlippageDocument: TypedDocumentString<FetchErc20ForecastSlippageQuery, FetchErc20ForecastSlippageQueryVariables>;
|
|
19279
21376
|
export declare const TicksDocument: TypedDocumentString<TicksQuery, TicksQueryVariables>;
|
|
21377
|
+
export declare const FetchCpListDocument: TypedDocumentString<FetchCpListQuery, FetchCpListQueryVariables>;
|
|
21378
|
+
export declare const FetchCpDetailDocument: TypedDocumentString<FetchCpDetailQuery, FetchCpDetailQueryVariables>;
|
|
21379
|
+
export declare const FetchIopcpListDocument: TypedDocumentString<FetchIopcpListQuery, FetchIopcpListQueryVariables>;
|
|
21380
|
+
export declare const FetchBidPositionDocument: TypedDocumentString<FetchBidPositionQuery, FetchBidPositionQueryVariables>;
|
|
21381
|
+
export declare const FetchCpDayDataDocument: TypedDocumentString<FetchCpDayDataQuery, FetchCpDayDataQueryVariables>;
|
|
21382
|
+
export declare const FetchCpHourDataDocument: TypedDocumentString<FetchCpHourDataQuery, FetchCpHourDataQueryVariables>;
|
|
21383
|
+
export declare const FetchCpBidsDocument: TypedDocumentString<FetchCpBidsQuery, FetchCpBidsQueryVariables>;
|
|
19280
21384
|
export declare const FetchMiningListDocument: TypedDocumentString<FetchMiningListQuery, FetchMiningListQueryVariables>;
|
|
19281
21385
|
export declare const MiningListDocument: TypedDocumentString<MiningListQuery, MiningListQueryVariables>;
|
|
19282
21386
|
export declare const MyCreatedMiningListDocument: TypedDocumentString<MyCreatedMiningListQuery, MyCreatedMiningListQueryVariables>;
|