@poolzfinance/api4 1.12.1 → 1.12.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.
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare enum EPrivatTokenStatus {
3
2
  NOT_REQUESTED = 0,
4
3
  REQUESTED = 1,
@@ -8,7 +8,11 @@ export type FragmentType<TDocumentType extends DocumentTypeDecoration<any, any>>
8
8
  };
9
9
  } : never : never : never;
10
10
  export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>>): TType;
11
+ export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | undefined): TType | undefined;
12
+ export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null): TType | null;
11
13
  export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: FragmentType<DocumentTypeDecoration<TType, any>> | null | undefined): TType | null | undefined;
14
+ export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>>): Array<TType>;
15
+ export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: Array<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): Array<TType> | null | undefined;
12
16
  export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>>): ReadonlyArray<TType>;
13
17
  export declare function useFragment<TType>(_documentNode: DocumentTypeDecoration<TType, any>, fragmentType: ReadonlyArray<FragmentType<DocumentTypeDecoration<TType, any>>> | null | undefined): ReadonlyArray<TType> | null | undefined;
14
18
  export declare function makeFragmentData<F extends DocumentTypeDecoration<any, any>, FT extends ResultOf<F>>(data: FT, _fragment: F): FragmentType<F>;
@@ -9,187 +9,63 @@ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/
9
9
  * 3. It does not support dead code elimination, so it will add unused operations.
10
10
  *
11
11
  * Therefore it is highly recommended to use the babel or swc plugin for production.
12
- */
13
- declare const documents: {
14
- "\nmutation AdminCleanCache {\n adminCleanCache {\n result {\n id\n }\n messages {\n code\n message\n }\n errors {\n code\n message\n }\n success\n }\n}": DocumentNode<types.AdminCleanCacheMutation, types.Exact<{
15
- [key: string]: never;
16
- }>>;
17
- "\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId) {\n ProjectId\n PoolzBackId\n }\n }\n": DocumentNode<types.AdminCreatePoolzBackIdMutation, types.Exact<{
18
- projectId: string;
19
- poolzBackId: number;
20
- }>>;
21
- "\n query AdminListOfCollateral($chainId: Int!, $collateralAddress: String!, $limit: Int!, $page: Int!) {\n adminListOfCollateral(\n chainId: $chainId\n collateralAddress: $collateralAddress\n limit: $limit\n page: $page\n ) {\n PoolId\n TokenAmountInWei\n MainCoinAmountInWei\n FinishTime\n }\n}": DocumentNode<types.AdminListOfCollateralQuery, types.Exact<{
22
- chainId: number;
23
- collateralAddress: string;
24
- limit: number;
25
- page: number;
26
- }>>;
27
- "\n query GetApprovedContracts($onlyApproved: Boolean!) {\n approvedContracts(onlyApproved: $onlyApproved) {\n ContractAddress\n Status\n }\n }": DocumentNode<types.GetApprovedContractsQuery, types.Exact<{
28
- onlyApproved: boolean;
29
- }>>;
30
- "\n query AdminAutoSignUp($note: String) {\n adminAutoSignUp(note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.AdminAutoSignUpQuery, types.Exact<{
31
- note?: types.InputMaybe<string> | undefined;
32
- }>>;
33
- "\n query AdminAutoSignUpAll{\n adminAutoSignUp{\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.AdminAutoSignUpAllQuery, types.Exact<{
34
- [key: string]: never;
35
- }>>;
36
- "\n mutation addAutoSignUp($address: String!, $poolzAmount: Float!, $note: String!) {\n addAutoSignUp(address: $address, poolzAmount: $poolzAmount, note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.AddAutoSignUpMutation, types.Exact<{
37
- address: string;
38
- poolzAmount: number;
39
- note: string;
40
- }>>;
41
- "\n mutation updateAutoSignUp($address: String!, $poolzAmount: Float!, $note: String!) {\n updateAutoSignUp(address: $address, poolzAmount: $poolzAmount, note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.UpdateAutoSignUpMutation, types.Exact<{
42
- address: string;
43
- poolzAmount: number;
44
- note: string;
45
- }>>;
46
- "\n mutation deleteAutoSignUp($address: String!) {\n deleteAutoSignUp(address: $address) {\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.DeleteAutoSignUpMutation, types.Exact<{
47
- address: string;
48
- }>>;
49
- "\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}": DocumentNode<types.BoostProxyDataQuery, types.Exact<{
50
- campaignCodes: string | string[];
51
- }>>;
52
- "\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}": DocumentNode<types.BoostProxyUsersQuery, types.Exact<{
53
- campaignCodes: string | string[];
54
- }>>;
55
- "\n query DaoSenderHistory($page: Int!) {\n daoSenderHistory(page: $page) {\n items {\n ChainId\n TxHash\n Token\n UserCount\n TotalAmount\n }\n currentPage\n totalPages\n }\n }\n": DocumentNode<types.DaoSenderHistoryQuery, types.Exact<{
56
- page: number;
57
- }>>;
58
- "\n mutation AdminCreateAsset($Request: CreateAssetRequest!) {\n adminCreateAsset(\n request: $Request\n ) {\n StatusCode\n }\n}": DocumentNode<types.AdminCreateAssetMutation, types.Exact<{
59
- Request: types.CreateAssetRequest;
60
- }>>;
61
- "\n query MyAssets($limit: Int!, $page: Int!) {\n myAssets(limit: $limit, page: $page) {\n TotalAssets\n Assets {\n UserAddress\n RefundFinishTime\n WithdrawalDetail {\n ChainId\n PoolId\n Builders {\n ProviderAddress\n WeiAmount\n StartTime\n FinishTime\n }\n }\n RefundDetail {\n ChainId\n PoolId\n Builders {\n ProviderAddress\n WeiAmount\n StartTime\n FinishTime\n }\n }\n }\n }\n}": DocumentNode<types.MyAssetsQuery, types.Exact<{
62
- limit: number;
63
- page: number;
64
- }>>;
65
- "\n query RetrieveSignature($request: RetrieveSignatureRequest!) {\n retrieveSignature(request: $request) {\n ValidUntil\n Receiver\n ChainId\n PoolId\n Signature\n IsRefund\n Builders {\n ProviderAddress\n WeiAmount\n StartTime\n FinishTime\n }\n }\n}": DocumentNode<types.RetrieveSignatureQuery, types.Exact<{
66
- request: types.RetrieveSignatureRequest;
67
- }>>;
68
- "\n mutation GenerateSignature($request: GenerateSignatureRequest!) {\n generateSignature(request: $request) {\n ValidFrom\n CurrentTime\n }\n}": DocumentNode<types.GenerateSignatureMutation, types.Exact<{
69
- request: types.GenerateSignatureRequest;
70
- }>>;
71
- "\n query MyQuery {\n time\n}": DocumentNode<types.MyQueryQuery, types.Exact<{
72
- [key: string]: never;
73
- }>>;
74
- "\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}": DocumentNode<types.GenerateTokenFromSignatureMutation, types.Exact<{
75
- eip4361message: string;
76
- signature: string;
77
- }>>;
78
- "\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n PoolzBackId\n }\n }\n": DocumentNode<types.GenerateMyInvestSignatureQuery, types.Exact<{
79
- projectId: string;
80
- weiAmount: string;
81
- }>>;
82
- "\n query InvestedErc20($investedErc20Id: Int!) {\n investedErc20(id: $investedErc20Id) {\n Wallet\n AmountIn\n TokenOut\n }\n}": DocumentNode<types.InvestedErc20Query, types.Exact<{
83
- investedErc20Id: number;
84
- }>>;
85
- "\n query getLeaderboardByAddress($address: String) {\n leaderBoard(address: $address) {\n Amount\n Owner\n Rank\n }\n}": DocumentNode<types.GetLeaderboardByAddressQuery, types.Exact<{
86
- address?: types.InputMaybe<string> | undefined;
87
- }>>;
88
- "\n query getLeaderboard {\n leaderBoard {\n Rank\n Owner\n Amount\n }\n}": DocumentNode<types.GetLeaderboardQuery, types.Exact<{
89
- [key: string]: never;
90
- }>>;
91
- "\n mutation Logout {\n logout\n }\n": DocumentNode<types.LogoutMutation, types.Exact<{
92
- [key: string]: never;
93
- }>>;
94
- "\n mutation setMyAgree {\n setMyAgree\n}": DocumentNode<types.SetMyAgreeMutation, types.Exact<{
95
- [key: string]: never;
96
- }>>;
97
- "\n query MyData {\n myData {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n EvmWallets\n }\n}": DocumentNode<types.MyDataQuery, types.Exact<{
98
- [key: string]: never;
99
- }>>;
100
- "\n mutation AddEvmWallet($wallet: String!) {\n addEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": DocumentNode<types.AddEvmWalletMutation, types.Exact<{
101
- wallet: string;
102
- }>>;
103
- "\n mutation DeleteEvmWallet($wallet: String!) {\n deleteEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": DocumentNode<types.DeleteEvmWalletMutation, types.Exact<{
104
- wallet: string;
105
- }>>;
106
- "\n mutation AddNonEvmWallet($chainName: String!, $wallet: String!) {\n addNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n EvmWallet\n }\n}": DocumentNode<types.AddNonEvmWalletMutation, types.Exact<{
107
- chainName: string;
108
- wallet: string;
109
- }>>;
110
- "\n mutation DeleteNonEvmWallet($chainName: String!) {\n deleteNonEvmWallet(chainName: $chainName) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": DocumentNode<types.DeleteNonEvmWalletMutation, types.Exact<{
111
- chainName: string;
112
- }>>;
113
- "\n mutation UpdateNonEvmWallet($chainName: String!, $wallet: String!) {\n updateNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": DocumentNode<types.UpdateNonEvmWalletMutation, types.Exact<{
114
- chainName: string;
115
- wallet: string;
116
- }>>;
117
- "\n query MyInvested {\n myInvestmentsErc20 {\n ChainId\n TxHash\n BlockSignedAt\n Amount\n Token\n Id\n }\n myInvestmentsETH {\n ChainId\n TxHash\n BlockSignedAt\n Amount\n Id\n }\n}": DocumentNode<types.MyInvestedQuery, types.Exact<{
118
- [key: string]: never;
119
- }>>;
120
- "\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": DocumentNode<types.KycQuery, types.Exact<{
121
- [key: string]: never;
122
- }>>;
123
- "\n query MyRole {\n myRole\n}": DocumentNode<types.MyRoleQuery, types.Exact<{
124
- [key: string]: never;
125
- }>>;
126
- "\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }": DocumentNode<types.SignUpCheckQuery, types.Exact<{
127
- poolIDs: number | number[];
128
- }>>;
129
- "\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }": DocumentNode<types.PoolxPriceQuery, types.Exact<{
130
- [key: string]: never;
131
- }>>;
132
- "\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV3_01\n PancakeSwapV3\n Mexc\n }\n }\n }\n": DocumentNode<types.GetPoolxTokenomicsQuery, types.Exact<{
133
- [key: string]: never;
134
- }>>;
135
- "\n query SeasonPass {\n seasonPass {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.SeasonPassQuery, types.Exact<{
136
- [key: string]: never;
137
- }>>;
138
- "\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.CreateSeasonPassMutation, types.Exact<{
139
- Owner: string;
140
- Amount: number;
141
- ValidUntil: number;
142
- Note: string;
143
- }>>;
144
- "\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.UpdateSeasonPassMutation, types.Exact<{
145
- Owner: string;
146
- Amount: number;
147
- ValidUntil: number;
148
- Note: string;
149
- }>>;
150
- "\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.DeleteSeasonPassMutation, types.Exact<{
151
- owner: string;
152
- note: string;
153
- }>>;
154
- "\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": DocumentNode<types.MySignUpV2Query, types.Exact<{
155
- projectIDs: number | number[];
156
- }>>;
157
- "\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": DocumentNode<types.AdminSignUpV2Query, types.Exact<{
158
- projectId: number;
159
- minPoolxAmount: number;
160
- }>>;
161
- "\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": DocumentNode<types.ProjectSignUpV2Mutation, types.Exact<{
162
- projectId: number;
163
- }>>;
164
- "\n query MySignUpV3($projectIDs: [String!]!) {\n mySignUpV3(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": DocumentNode<types.MySignUpV3Query, types.Exact<{
165
- projectIDs: string | string[];
166
- }>>;
167
- "\n query AdminSignUpV3($projectId: String!, $minPoolxAmount: Int!) {\n adminSignUpV3(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": DocumentNode<types.AdminSignUpV3Query, types.Exact<{
168
- projectId: string;
169
- minPoolxAmount: number;
170
- }>>;
171
- "\n mutation ProjectSignUpV3($projectId: String!) {\n projectSignUpV3(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": DocumentNode<types.ProjectSignUpV3Mutation, types.Exact<{
172
- projectId: string;
173
- }>>;
174
- "\nquery SimpleUrlShortener($input: TxHashChainIdInput!) {\n simpleUrlShortener(input: $input) {\n ShortUrl\n ContainerText\n UrlToScan\n XPostText\n }\n}": DocumentNode<types.SimpleUrlShortenerQuery, types.Exact<{
175
- input: types.TxHashChainIdInput;
176
- }>>;
177
- "\nquery Status {\n status {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n Active\n StartingBlock\n EndingBlock\n ResponseType\n }\n }\n }": DocumentNode<types.StatusQuery, types.Exact<{
178
- [key: string]: never;
179
- }>>;
180
- "\n query TokenInfo($hashKey: String!) {\n tokenInfo(hashKey: $hashKey) {\n Address\n ChainId\n Decimals\n Name\n Symbol\n TotalSupply\n }\n }\n": DocumentNode<types.TokenInfoQuery, types.Exact<{
181
- hashKey: string;
182
- }>>;
183
- "\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n TokensRefunded {\n TokenId\n Amount\n }\n TokenOut {\n TokenId\n Amount\n }\n }\n}": DocumentNode<types.TokenRefundsNftQuery, types.Exact<{
184
- chainId: number;
185
- poolId: number;
186
- }>>;
187
- "\n query Data($chainId: Int, $tokenAddress: String, $fetchBalance: Boolean) {\n vaults(chainId: $chainId, tokenAddress: $tokenAddress, fetchBalance: $fetchBalance) {\n Data {\n VaultId\n VaultAddress\n VaultCreationTx\n TokenAddress\n TokenName\n TokenSymbol\n TokenDecimals\n Balance {\n BalanceOfToken\n FetchTime\n }\n }\n ChainId\n }\n }\n": DocumentNode<types.DataQuery, types.Exact<{
188
- chainId?: types.InputMaybe<number> | undefined;
189
- tokenAddress?: types.InputMaybe<string> | undefined;
190
- fetchBalance?: types.InputMaybe<boolean> | undefined;
191
- }>>;
12
+ * Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
13
+ */
14
+ type Documents = {
15
+ "\nmutation AdminCleanCache {\n adminCleanCache {\n result {\n id\n }\n messages {\n code\n message\n }\n errors {\n code\n message\n }\n success\n }\n}": typeof types.AdminCleanCacheDocument;
16
+ "\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId) {\n ProjectId\n PoolzBackId\n }\n }\n": typeof types.AdminCreatePoolzBackIdDocument;
17
+ "\n query AdminListOfCollateral($chainId: Int!, $collateralAddress: String!, $limit: Int!, $page: Int!) {\n adminListOfCollateral(\n chainId: $chainId\n collateralAddress: $collateralAddress\n limit: $limit\n page: $page\n ) {\n PoolId\n TokenAmountInWei\n MainCoinAmountInWei\n FinishTime\n }\n}": typeof types.AdminListOfCollateralDocument;
18
+ "\n mutation AdminWriteAllocation($input: AdminWriteAllocation!) {\n adminWriteAllocation(input: $input)\n }\n": typeof types.AdminWriteAllocationDocument;
19
+ "\n query GetApprovedContracts($onlyApproved: Boolean!) {\n approvedContracts(onlyApproved: $onlyApproved) {\n ContractAddress\n Status\n }\n }": typeof types.GetApprovedContractsDocument;
20
+ "\n query AdminAutoSignUp($note: String) {\n adminAutoSignUp(note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": typeof types.AdminAutoSignUpDocument;
21
+ "\n query AdminAutoSignUpAll{\n adminAutoSignUp{\n Address\n PoolzAmount\n Note\n }\n }": typeof types.AdminAutoSignUpAllDocument;
22
+ "\n mutation addAutoSignUp($address: String!, $poolzAmount: Float!, $note: String!) {\n addAutoSignUp(address: $address, poolzAmount: $poolzAmount, note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": typeof types.AddAutoSignUpDocument;
23
+ "\n mutation updateAutoSignUp($address: String!, $poolzAmount: Float!, $note: String!) {\n updateAutoSignUp(address: $address, poolzAmount: $poolzAmount, note: $note) {\n Address\n PoolzAmount\n Note\n }\n }": typeof types.UpdateAutoSignUpDocument;
24
+ "\n mutation deleteAutoSignUp($address: String!) {\n deleteAutoSignUp(address: $address) {\n Address\n PoolzAmount\n Note\n }\n }": typeof types.DeleteAutoSignUpDocument;
25
+ "\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}": typeof types.BoostProxyDataDocument;
26
+ "\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}": typeof types.BoostProxyUsersDocument;
27
+ "\n query DaoSenderHistory($page: Int!) {\n daoSenderHistory(page: $page) {\n items {\n ChainId\n TxHash\n Token\n UserCount\n TotalAmount\n }\n currentPage\n totalPages\n }\n }\n": typeof types.DaoSenderHistoryDocument;
28
+ "\n mutation AdminCreateAsset($Request: CreateAssetRequest!) {\n adminCreateAsset(\n request: $Request\n ) {\n StatusCode\n }\n}": typeof types.AdminCreateAssetDocument;
29
+ "\n query MyAssets($limit: Int!, $page: Int!) {\n myAssets(limit: $limit, page: $page) {\n TotalAssets\n Assets {\n UserAddress\n RefundFinishTime\n WithdrawalDetail {\n ChainId\n PoolId\n Builders {\n ProviderAddress\n WeiAmount\n StartTime\n FinishTime\n }\n }\n RefundDetail {\n ChainId\n PoolId\n Builders {\n ProviderAddress\n WeiAmount\n StartTime\n FinishTime\n }\n }\n }\n }\n}": typeof types.MyAssetsDocument;
30
+ "\n query RetrieveSignature($request: RetrieveSignatureRequest!) {\n retrieveSignature(request: $request) {\n ValidUntil\n Receiver\n ChainId\n PoolId\n Signature\n IsRefund\n Builders {\n ProviderAddress\n WeiAmount\n StartTime\n FinishTime\n }\n }\n}": typeof types.RetrieveSignatureDocument;
31
+ "\n mutation GenerateSignature($request: GenerateSignatureRequest!) {\n generateSignature(request: $request) {\n ValidFrom\n CurrentTime\n }\n}": typeof types.GenerateSignatureDocument;
32
+ "\n query MyQuery {\n time\n}": typeof types.MyQueryDocument;
33
+ "\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}": typeof types.GenerateTokenFromSignatureDocument;
34
+ "\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n PoolzBackId\n }\n }\n": typeof types.GenerateMyInvestSignatureDocument;
35
+ "\n query InvestedErc20($investedErc20Id: Int!) {\n investedErc20(id: $investedErc20Id) {\n Wallet\n AmountIn\n TokenOut\n }\n}": typeof types.InvestedErc20Document;
36
+ "\n query getLeaderboardByAddress($address: String) {\n leaderBoard(address: $address) {\n Amount\n Owner\n Rank\n }\n}": typeof types.GetLeaderboardByAddressDocument;
37
+ "\n query getLeaderboard {\n leaderBoard {\n Rank\n Owner\n Amount\n }\n}": typeof types.GetLeaderboardDocument;
38
+ "\n mutation Logout {\n logout\n }\n": typeof types.LogoutDocument;
39
+ "\n mutation setMyAgree {\n setMyAgree\n}": typeof types.SetMyAgreeDocument;
40
+ "\n query MyData {\n myData {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n EvmWallets\n }\n}": typeof types.MyDataDocument;
41
+ "\n mutation AddEvmWallet($wallet: String!) {\n addEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": typeof types.AddEvmWalletDocument;
42
+ "\n mutation DeleteEvmWallet($wallet: String!) {\n deleteEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": typeof types.DeleteEvmWalletDocument;
43
+ "\n mutation AddNonEvmWallet($chainName: String!, $wallet: String!) {\n addNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n EvmWallet\n }\n}": typeof types.AddNonEvmWalletDocument;
44
+ "\n mutation DeleteNonEvmWallet($chainName: String!) {\n deleteNonEvmWallet(chainName: $chainName) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": typeof types.DeleteNonEvmWalletDocument;
45
+ "\n mutation UpdateNonEvmWallet($chainName: String!, $wallet: String!) {\n updateNonEvmWallet(chainName: $chainName, wallet: $wallet) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": typeof types.UpdateNonEvmWalletDocument;
46
+ "\n query MyInvested {\n myInvestmentsErc20 {\n ChainId\n TxHash\n BlockSignedAt\n Amount\n Token\n Id\n }\n myInvestmentsETH {\n ChainId\n TxHash\n BlockSignedAt\n Amount\n Id\n }\n}": typeof types.MyInvestedDocument;
47
+ "\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": typeof types.KycDocument;
48
+ "\n query MyRole {\n myRole\n}": typeof types.MyRoleDocument;
49
+ "\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }": typeof types.SignUpCheckDocument;
50
+ "\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }": typeof types.PoolxPriceDocument;
51
+ "\n query GetPoolxTokenomics {\n poolxTokenomics {\n CirculatingSupply\n Locked\n Data {\n TotalSupply\n BuyBack\n LockedDealV2\n DelayVault\n DelayVaultV2\n Reserved\n }\n Trade {\n Sum\n Huobi\n GateIO\n PancakeSwapV3_01\n PancakeSwapV3\n Mexc\n }\n }\n }\n": typeof types.GetPoolxTokenomicsDocument;
52
+ "\n query SeasonPass {\n seasonPass {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": typeof types.SeasonPassDocument;
53
+ "\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": typeof types.CreateSeasonPassDocument;
54
+ "\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": typeof types.UpdateSeasonPassDocument;
55
+ "\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": typeof types.DeleteSeasonPassDocument;
56
+ "\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": typeof types.MySignUpV2Document;
57
+ "\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": typeof types.AdminSignUpV2Document;
58
+ "\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": typeof types.ProjectSignUpV2Document;
59
+ "\n query MySignUpV3($projectIDs: [String!]!) {\n mySignUpV3(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": typeof types.MySignUpV3Document;
60
+ "\n query AdminSignUpV3($projectId: String!, $minPoolxAmount: Int!) {\n adminSignUpV3(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": typeof types.AdminSignUpV3Document;
61
+ "\n mutation ProjectSignUpV3($projectId: String!) {\n projectSignUpV3(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": typeof types.ProjectSignUpV3Document;
62
+ "\nquery SimpleUrlShortener($input: TxHashChainIdInput!) {\n simpleUrlShortener(input: $input) {\n ShortUrl\n ContainerText\n UrlToScan\n XPostText\n }\n}": typeof types.SimpleUrlShortenerDocument;
63
+ "\nquery Status {\n status {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n Active\n StartingBlock\n EndingBlock\n ResponseType\n }\n }\n }": typeof types.StatusDocument;
64
+ "\n query TokenInfo($hashKey: String!) {\n tokenInfo(hashKey: $hashKey) {\n Address\n ChainId\n Decimals\n Name\n Symbol\n TotalSupply\n }\n }\n": typeof types.TokenInfoDocument;
65
+ "\n query TokenRefundsNFT($chainId: Int!, $poolId: Int!) {\n tokenRefundsNFT(chainId: $chainId, poolId: $poolId) {\n TxHash\n BlockSignedAt\n From\n TokensRefunded {\n TokenId\n Amount\n }\n TokenOut {\n TokenId\n Amount\n }\n }\n}": typeof types.TokenRefundsNftDocument;
66
+ "\n query Data($chainId: Int, $tokenAddress: String, $fetchBalance: Boolean) {\n vaults(chainId: $chainId, tokenAddress: $tokenAddress, fetchBalance: $fetchBalance) {\n Data {\n VaultId\n VaultAddress\n VaultCreationTx\n TokenAddress\n TokenName\n TokenSymbol\n TokenDecimals\n Balance {\n BalanceOfToken\n FetchTime\n }\n }\n ChainId\n }\n }\n": typeof types.DataDocument;
192
67
  };
68
+ declare const documents: Documents;
193
69
  /**
194
70
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
195
71
  *
@@ -215,6 +91,10 @@ export declare function gql(source: "\n mutation AdminCreatePoolzBackId($projec
215
91
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
216
92
  */
217
93
  export declare function gql(source: "\n query AdminListOfCollateral($chainId: Int!, $collateralAddress: String!, $limit: Int!, $page: Int!) {\n adminListOfCollateral(\n chainId: $chainId\n collateralAddress: $collateralAddress\n limit: $limit\n page: $page\n ) {\n PoolId\n TokenAmountInWei\n MainCoinAmountInWei\n FinishTime\n }\n}"): (typeof documents)["\n query AdminListOfCollateral($chainId: Int!, $collateralAddress: String!, $limit: Int!, $page: Int!) {\n adminListOfCollateral(\n chainId: $chainId\n collateralAddress: $collateralAddress\n limit: $limit\n page: $page\n ) {\n PoolId\n TokenAmountInWei\n MainCoinAmountInWei\n FinishTime\n }\n}"];
94
+ /**
95
+ * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
96
+ */
97
+ export declare function gql(source: "\n mutation AdminWriteAllocation($input: AdminWriteAllocation!) {\n adminWriteAllocation(input: $input)\n }\n"): (typeof documents)["\n mutation AdminWriteAllocation($input: AdminWriteAllocation!) {\n adminWriteAllocation(input: $input)\n }\n"];
218
98
  /**
219
99
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
220
100
  */
@@ -102,7 +102,6 @@ export type AdminCreatePoolzBackId = {
102
102
  export type AdminGetAllocation = {
103
103
  __typename?: 'AdminGetAllocation';
104
104
  Amount: Scalars['Float']['output'];
105
- PhaseId: Scalars['String']['output'];
106
105
  UserAddress: Scalars['String']['output'];
107
106
  };
108
107
  export type AdminKycProxy = {
@@ -551,6 +550,12 @@ export type MySignUpV3 = {
551
550
  ProjectId: Scalars['String']['output'];
552
551
  SignedUp: Scalars['Boolean']['output'];
553
552
  };
553
+ export type MyUpcomingAllocation = {
554
+ __typename?: 'MyUpcomingAllocation';
555
+ Amount: Scalars['Float']['output'];
556
+ PoolzBackId: Scalars['Int']['output'];
557
+ ProjectId: Scalars['String']['output'];
558
+ };
554
559
  export type NonEvmWallet = {
555
560
  __typename?: 'NonEvmWallet';
556
561
  ChainName: Scalars['String']['output'];
@@ -645,6 +650,7 @@ export type Query = {
645
650
  mySignUpV3: Array<MySignUpV3>;
646
651
  /** @deprecated Old system. Please use new endpoints from API4.SignUp. */
647
652
  mySignup: Array<MySignUp>;
653
+ myUpcomingAllocation: Array<MyUpcomingAllocation>;
648
654
  poolxPrice: PoolxPrice;
649
655
  poolxTokenomics: PoolxTokenomics;
650
656
  retrieveSignature: RetrieveSignatureResponse;
@@ -679,6 +685,7 @@ export type QueryAdminAutoSignUpArgs = {
679
685
  note?: InputMaybe<Scalars['String']['input']>;
680
686
  };
681
687
  export type QueryAdminGetAllocationArgs = {
688
+ phaseId: Scalars['String']['input'];
682
689
  projectId: Scalars['String']['input'];
683
690
  };
684
691
  export type QueryAdminKycProxyArgs = {
@@ -766,6 +773,9 @@ export type QueryMySignUpV2Args = {
766
773
  export type QueryMySignUpV3Args = {
767
774
  projectIDs: Array<Scalars['String']['input']>;
768
775
  };
776
+ export type QueryMyUpcomingAllocationArgs = {
777
+ projectIDs: Array<Scalars['String']['input']>;
778
+ };
769
779
  export type QueryRetrieveSignatureArgs = {
770
780
  request: RetrieveSignatureRequest;
771
781
  };
@@ -1094,6 +1104,13 @@ export type AdminListOfCollateralQuery = {
1094
1104
  FinishTime: number;
1095
1105
  }>;
1096
1106
  };
1107
+ export type AdminWriteAllocationMutationVariables = Exact<{
1108
+ input: AdminWriteAllocation;
1109
+ }>;
1110
+ export type AdminWriteAllocationMutation = {
1111
+ __typename?: 'Mutation';
1112
+ adminWriteAllocation: number;
1113
+ };
1097
1114
  export type GetApprovedContractsQueryVariables = Exact<{
1098
1115
  onlyApproved: Scalars['Boolean']['input'];
1099
1116
  }>;
@@ -1797,181 +1814,55 @@ export type DataQuery = {
1797
1814
  }>;
1798
1815
  }>;
1799
1816
  };
1800
- export declare const AdminCleanCacheDocument: DocumentNode<AdminCleanCacheMutation, Exact<{
1801
- [key: string]: never;
1802
- }>>;
1803
- export declare const AdminCreatePoolzBackIdDocument: DocumentNode<AdminCreatePoolzBackIdMutation, Exact<{
1804
- projectId: Scalars['String']['input'];
1805
- poolzBackId: Scalars['Int']['input'];
1806
- }>>;
1807
- export declare const AdminListOfCollateralDocument: DocumentNode<AdminListOfCollateralQuery, Exact<{
1808
- chainId: Scalars['Int']['input'];
1809
- collateralAddress: Scalars['String']['input'];
1810
- limit: Scalars['Int']['input'];
1811
- page: Scalars['Int']['input'];
1812
- }>>;
1813
- export declare const GetApprovedContractsDocument: DocumentNode<GetApprovedContractsQuery, Exact<{
1814
- onlyApproved: Scalars['Boolean']['input'];
1815
- }>>;
1816
- export declare const AdminAutoSignUpDocument: DocumentNode<AdminAutoSignUpQuery, Exact<{
1817
- note?: InputMaybe<string> | undefined;
1818
- }>>;
1819
- export declare const AdminAutoSignUpAllDocument: DocumentNode<AdminAutoSignUpAllQuery, Exact<{
1820
- [key: string]: never;
1821
- }>>;
1822
- export declare const AddAutoSignUpDocument: DocumentNode<AddAutoSignUpMutation, Exact<{
1823
- address: Scalars['String']['input'];
1824
- poolzAmount: Scalars['Float']['input'];
1825
- note: Scalars['String']['input'];
1826
- }>>;
1827
- export declare const UpdateAutoSignUpDocument: DocumentNode<UpdateAutoSignUpMutation, Exact<{
1828
- address: Scalars['String']['input'];
1829
- poolzAmount: Scalars['Float']['input'];
1830
- note: Scalars['String']['input'];
1831
- }>>;
1832
- export declare const DeleteAutoSignUpDocument: DocumentNode<DeleteAutoSignUpMutation, Exact<{
1833
- address: Scalars['String']['input'];
1834
- }>>;
1835
- export declare const BoostProxyDataDocument: DocumentNode<BoostProxyDataQuery, Exact<{
1836
- campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
1837
- }>>;
1838
- export declare const BoostProxyUsersDocument: DocumentNode<BoostProxyUsersQuery, Exact<{
1839
- campaignCodes: Array<Scalars['String']['input']> | Scalars['String']['input'];
1840
- }>>;
1841
- export declare const DaoSenderHistoryDocument: DocumentNode<DaoSenderHistoryQuery, Exact<{
1842
- page: Scalars['Int']['input'];
1843
- }>>;
1844
- export declare const AdminCreateAssetDocument: DocumentNode<AdminCreateAssetMutation, Exact<{
1845
- Request: CreateAssetRequest;
1846
- }>>;
1847
- export declare const MyAssetsDocument: DocumentNode<MyAssetsQuery, Exact<{
1848
- limit: Scalars['Int']['input'];
1849
- page: Scalars['Int']['input'];
1850
- }>>;
1851
- export declare const RetrieveSignatureDocument: DocumentNode<RetrieveSignatureQuery, Exact<{
1852
- request: RetrieveSignatureRequest;
1853
- }>>;
1854
- export declare const GenerateSignatureDocument: DocumentNode<GenerateSignatureMutation, Exact<{
1855
- request: GenerateSignatureRequest;
1856
- }>>;
1857
- export declare const MyQueryDocument: DocumentNode<MyQueryQuery, Exact<{
1858
- [key: string]: never;
1859
- }>>;
1860
- export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTokenFromSignatureMutation, Exact<{
1861
- eip4361message: Scalars['String']['input'];
1862
- signature: Scalars['String']['input'];
1863
- }>>;
1864
- export declare const GenerateMyInvestSignatureDocument: DocumentNode<GenerateMyInvestSignatureQuery, Exact<{
1865
- projectId: Scalars['String']['input'];
1866
- weiAmount: Scalars['String']['input'];
1867
- }>>;
1868
- export declare const InvestedErc20Document: DocumentNode<InvestedErc20Query, Exact<{
1869
- investedErc20Id: Scalars['Int']['input'];
1870
- }>>;
1871
- export declare const GetLeaderboardByAddressDocument: DocumentNode<GetLeaderboardByAddressQuery, Exact<{
1872
- address?: InputMaybe<string> | undefined;
1873
- }>>;
1874
- export declare const GetLeaderboardDocument: DocumentNode<GetLeaderboardQuery, Exact<{
1875
- [key: string]: never;
1876
- }>>;
1877
- export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
1878
- [key: string]: never;
1879
- }>>;
1880
- export declare const SetMyAgreeDocument: DocumentNode<SetMyAgreeMutation, Exact<{
1881
- [key: string]: never;
1882
- }>>;
1883
- export declare const MyDataDocument: DocumentNode<MyDataQuery, Exact<{
1884
- [key: string]: never;
1885
- }>>;
1886
- export declare const AddEvmWalletDocument: DocumentNode<AddEvmWalletMutation, Exact<{
1887
- wallet: Scalars['String']['input'];
1888
- }>>;
1889
- export declare const DeleteEvmWalletDocument: DocumentNode<DeleteEvmWalletMutation, Exact<{
1890
- wallet: Scalars['String']['input'];
1891
- }>>;
1892
- export declare const AddNonEvmWalletDocument: DocumentNode<AddNonEvmWalletMutation, Exact<{
1893
- chainName: Scalars['String']['input'];
1894
- wallet: Scalars['String']['input'];
1895
- }>>;
1896
- export declare const DeleteNonEvmWalletDocument: DocumentNode<DeleteNonEvmWalletMutation, Exact<{
1897
- chainName: Scalars['String']['input'];
1898
- }>>;
1899
- export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWalletMutation, Exact<{
1900
- chainName: Scalars['String']['input'];
1901
- wallet: Scalars['String']['input'];
1902
- }>>;
1903
- export declare const MyInvestedDocument: DocumentNode<MyInvestedQuery, Exact<{
1904
- [key: string]: never;
1905
- }>>;
1906
- export declare const KycDocument: DocumentNode<KycQuery, Exact<{
1907
- [key: string]: never;
1908
- }>>;
1909
- export declare const MyRoleDocument: DocumentNode<MyRoleQuery, Exact<{
1910
- [key: string]: never;
1911
- }>>;
1912
- export declare const SignUpCheckDocument: DocumentNode<SignUpCheckQuery, Exact<{
1913
- poolIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
1914
- }>>;
1915
- export declare const PoolxPriceDocument: DocumentNode<PoolxPriceQuery, Exact<{
1916
- [key: string]: never;
1917
- }>>;
1918
- export declare const GetPoolxTokenomicsDocument: DocumentNode<GetPoolxTokenomicsQuery, Exact<{
1919
- [key: string]: never;
1920
- }>>;
1921
- export declare const SeasonPassDocument: DocumentNode<SeasonPassQuery, Exact<{
1922
- [key: string]: never;
1923
- }>>;
1924
- export declare const CreateSeasonPassDocument: DocumentNode<CreateSeasonPassMutation, Exact<{
1925
- Owner: Scalars['String']['input'];
1926
- Amount: Scalars['Float']['input'];
1927
- ValidUntil: Scalars['Int']['input'];
1928
- Note: Scalars['String']['input'];
1929
- }>>;
1930
- export declare const UpdateSeasonPassDocument: DocumentNode<UpdateSeasonPassMutation, Exact<{
1931
- Owner: Scalars['String']['input'];
1932
- Amount: Scalars['Float']['input'];
1933
- ValidUntil: Scalars['Int']['input'];
1934
- Note: Scalars['String']['input'];
1935
- }>>;
1936
- export declare const DeleteSeasonPassDocument: DocumentNode<DeleteSeasonPassMutation, Exact<{
1937
- owner: Scalars['String']['input'];
1938
- note: Scalars['String']['input'];
1939
- }>>;
1940
- export declare const MySignUpV2Document: DocumentNode<MySignUpV2Query, Exact<{
1941
- projectIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
1942
- }>>;
1943
- export declare const AdminSignUpV2Document: DocumentNode<AdminSignUpV2Query, Exact<{
1944
- projectId: Scalars['Int']['input'];
1945
- minPoolxAmount: Scalars['Int']['input'];
1946
- }>>;
1947
- export declare const ProjectSignUpV2Document: DocumentNode<ProjectSignUpV2Mutation, Exact<{
1948
- projectId: Scalars['Int']['input'];
1949
- }>>;
1950
- export declare const MySignUpV3Document: DocumentNode<MySignUpV3Query, Exact<{
1951
- projectIDs: Array<Scalars['String']['input']> | Scalars['String']['input'];
1952
- }>>;
1953
- export declare const AdminSignUpV3Document: DocumentNode<AdminSignUpV3Query, Exact<{
1954
- projectId: Scalars['String']['input'];
1955
- minPoolxAmount: Scalars['Int']['input'];
1956
- }>>;
1957
- export declare const ProjectSignUpV3Document: DocumentNode<ProjectSignUpV3Mutation, Exact<{
1958
- projectId: Scalars['String']['input'];
1959
- }>>;
1960
- export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, Exact<{
1961
- input: TxHashChainIdInput;
1962
- }>>;
1963
- export declare const StatusDocument: DocumentNode<StatusQuery, Exact<{
1964
- [key: string]: never;
1965
- }>>;
1966
- export declare const TokenInfoDocument: DocumentNode<TokenInfoQuery, Exact<{
1967
- hashKey: Scalars['String']['input'];
1968
- }>>;
1969
- export declare const TokenRefundsNftDocument: DocumentNode<TokenRefundsNftQuery, Exact<{
1970
- chainId: Scalars['Int']['input'];
1971
- poolId: Scalars['Int']['input'];
1972
- }>>;
1973
- export declare const DataDocument: DocumentNode<DataQuery, Exact<{
1974
- chainId?: InputMaybe<number> | undefined;
1975
- tokenAddress?: InputMaybe<string> | undefined;
1976
- fetchBalance?: InputMaybe<boolean> | undefined;
1977
- }>>;
1817
+ export declare const AdminCleanCacheDocument: DocumentNode<AdminCleanCacheMutation, AdminCleanCacheMutationVariables>;
1818
+ export declare const AdminCreatePoolzBackIdDocument: DocumentNode<AdminCreatePoolzBackIdMutation, AdminCreatePoolzBackIdMutationVariables>;
1819
+ export declare const AdminListOfCollateralDocument: DocumentNode<AdminListOfCollateralQuery, AdminListOfCollateralQueryVariables>;
1820
+ export declare const AdminWriteAllocationDocument: DocumentNode<AdminWriteAllocationMutation, AdminWriteAllocationMutationVariables>;
1821
+ export declare const GetApprovedContractsDocument: DocumentNode<GetApprovedContractsQuery, GetApprovedContractsQueryVariables>;
1822
+ export declare const AdminAutoSignUpDocument: DocumentNode<AdminAutoSignUpQuery, AdminAutoSignUpQueryVariables>;
1823
+ export declare const AdminAutoSignUpAllDocument: DocumentNode<AdminAutoSignUpAllQuery, AdminAutoSignUpAllQueryVariables>;
1824
+ export declare const AddAutoSignUpDocument: DocumentNode<AddAutoSignUpMutation, AddAutoSignUpMutationVariables>;
1825
+ export declare const UpdateAutoSignUpDocument: DocumentNode<UpdateAutoSignUpMutation, UpdateAutoSignUpMutationVariables>;
1826
+ export declare const DeleteAutoSignUpDocument: DocumentNode<DeleteAutoSignUpMutation, DeleteAutoSignUpMutationVariables>;
1827
+ export declare const BoostProxyDataDocument: DocumentNode<BoostProxyDataQuery, BoostProxyDataQueryVariables>;
1828
+ export declare const BoostProxyUsersDocument: DocumentNode<BoostProxyUsersQuery, BoostProxyUsersQueryVariables>;
1829
+ export declare const DaoSenderHistoryDocument: DocumentNode<DaoSenderHistoryQuery, DaoSenderHistoryQueryVariables>;
1830
+ export declare const AdminCreateAssetDocument: DocumentNode<AdminCreateAssetMutation, AdminCreateAssetMutationVariables>;
1831
+ export declare const MyAssetsDocument: DocumentNode<MyAssetsQuery, MyAssetsQueryVariables>;
1832
+ export declare const RetrieveSignatureDocument: DocumentNode<RetrieveSignatureQuery, RetrieveSignatureQueryVariables>;
1833
+ export declare const GenerateSignatureDocument: DocumentNode<GenerateSignatureMutation, GenerateSignatureMutationVariables>;
1834
+ export declare const MyQueryDocument: DocumentNode<MyQueryQuery, MyQueryQueryVariables>;
1835
+ export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTokenFromSignatureMutation, GenerateTokenFromSignatureMutationVariables>;
1836
+ export declare const GenerateMyInvestSignatureDocument: DocumentNode<GenerateMyInvestSignatureQuery, GenerateMyInvestSignatureQueryVariables>;
1837
+ export declare const InvestedErc20Document: DocumentNode<InvestedErc20Query, InvestedErc20QueryVariables>;
1838
+ export declare const GetLeaderboardByAddressDocument: DocumentNode<GetLeaderboardByAddressQuery, GetLeaderboardByAddressQueryVariables>;
1839
+ export declare const GetLeaderboardDocument: DocumentNode<GetLeaderboardQuery, GetLeaderboardQueryVariables>;
1840
+ export declare const LogoutDocument: DocumentNode<LogoutMutation, LogoutMutationVariables>;
1841
+ export declare const SetMyAgreeDocument: DocumentNode<SetMyAgreeMutation, SetMyAgreeMutationVariables>;
1842
+ export declare const MyDataDocument: DocumentNode<MyDataQuery, MyDataQueryVariables>;
1843
+ export declare const AddEvmWalletDocument: DocumentNode<AddEvmWalletMutation, AddEvmWalletMutationVariables>;
1844
+ export declare const DeleteEvmWalletDocument: DocumentNode<DeleteEvmWalletMutation, DeleteEvmWalletMutationVariables>;
1845
+ export declare const AddNonEvmWalletDocument: DocumentNode<AddNonEvmWalletMutation, AddNonEvmWalletMutationVariables>;
1846
+ export declare const DeleteNonEvmWalletDocument: DocumentNode<DeleteNonEvmWalletMutation, DeleteNonEvmWalletMutationVariables>;
1847
+ export declare const UpdateNonEvmWalletDocument: DocumentNode<UpdateNonEvmWalletMutation, UpdateNonEvmWalletMutationVariables>;
1848
+ export declare const MyInvestedDocument: DocumentNode<MyInvestedQuery, MyInvestedQueryVariables>;
1849
+ export declare const KycDocument: DocumentNode<KycQuery, KycQueryVariables>;
1850
+ export declare const MyRoleDocument: DocumentNode<MyRoleQuery, MyRoleQueryVariables>;
1851
+ export declare const SignUpCheckDocument: DocumentNode<SignUpCheckQuery, SignUpCheckQueryVariables>;
1852
+ export declare const PoolxPriceDocument: DocumentNode<PoolxPriceQuery, PoolxPriceQueryVariables>;
1853
+ export declare const GetPoolxTokenomicsDocument: DocumentNode<GetPoolxTokenomicsQuery, GetPoolxTokenomicsQueryVariables>;
1854
+ export declare const SeasonPassDocument: DocumentNode<SeasonPassQuery, SeasonPassQueryVariables>;
1855
+ export declare const CreateSeasonPassDocument: DocumentNode<CreateSeasonPassMutation, CreateSeasonPassMutationVariables>;
1856
+ export declare const UpdateSeasonPassDocument: DocumentNode<UpdateSeasonPassMutation, UpdateSeasonPassMutationVariables>;
1857
+ export declare const DeleteSeasonPassDocument: DocumentNode<DeleteSeasonPassMutation, DeleteSeasonPassMutationVariables>;
1858
+ export declare const MySignUpV2Document: DocumentNode<MySignUpV2Query, MySignUpV2QueryVariables>;
1859
+ export declare const AdminSignUpV2Document: DocumentNode<AdminSignUpV2Query, AdminSignUpV2QueryVariables>;
1860
+ export declare const ProjectSignUpV2Document: DocumentNode<ProjectSignUpV2Mutation, ProjectSignUpV2MutationVariables>;
1861
+ export declare const MySignUpV3Document: DocumentNode<MySignUpV3Query, MySignUpV3QueryVariables>;
1862
+ export declare const AdminSignUpV3Document: DocumentNode<AdminSignUpV3Query, AdminSignUpV3QueryVariables>;
1863
+ export declare const ProjectSignUpV3Document: DocumentNode<ProjectSignUpV3Mutation, ProjectSignUpV3MutationVariables>;
1864
+ export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, SimpleUrlShortenerQueryVariables>;
1865
+ export declare const StatusDocument: DocumentNode<StatusQuery, StatusQueryVariables>;
1866
+ export declare const TokenInfoDocument: DocumentNode<TokenInfoQuery, TokenInfoQueryVariables>;
1867
+ export declare const TokenRefundsNftDocument: DocumentNode<TokenRefundsNftQuery, TokenRefundsNftQueryVariables>;
1868
+ export declare const DataDocument: DocumentNode<DataQuery, DataQueryVariables>;