@poolzfinance/api4 1.12.0 → 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.
- package/dist/endpoints/adminCreatePoolzBackId.d.ts +8 -0
- package/dist/endpoints/adminListOfCollateral.d.ts +4 -4
- package/dist/endpoints/adminWriteAllocation.d.ts +7 -0
- package/dist/endpoints/boostProxy.d.ts +1 -1
- package/dist/endpoints/dispenser.d.ts +2 -2
- package/dist/endpoints/getGeneratedToken.d.ts +2 -2
- package/dist/endpoints/investProvider.d.ts +2 -2
- package/dist/endpoints/investedERC20.d.ts +1 -1
- package/dist/endpoints/myData.d.ts +7 -7
- package/dist/endpoints/seasonPass.d.ts +10 -10
- package/dist/endpoints/signupV2.d.ts +4 -4
- package/dist/endpoints/signupV3.d.ts +4 -4
- package/dist/endpoints/tokenRefundsNFT.d.ts +2 -2
- package/dist/endpoints/vaults.d.ts +3 -3
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -6
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/IAPI4ProviderProps.d.ts +0 -1
- package/dist/types/graphql/fragment-masking.d.ts +4 -0
- package/dist/types/graphql/gql.d.ts +65 -219
- package/dist/types/graphql/graphql.d.ts +119 -341
- package/package.json +5 -5
- package/dist/endpoints/myLinkTelegram.d.ts +0 -7
- package/dist/endpoints/onBoardingCheckTx.d.ts +0 -9
- package/dist/endpoints/onBoardingData.d.ts +0 -5
- package/dist/endpoints/onBoardingProjects.d.ts +0 -4
- package/dist/endpoints/onBoardingSetAllocation.d.ts +0 -11
|
@@ -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,205 +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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
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}":
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
"\n
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
"\n query
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
"\n query
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
"\n
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
"\n
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
"\n mutation
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
"\n
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
"\n query
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
"\n query
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
"\n mutation
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
"\n query
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
"\n
|
|
62
|
-
|
|
63
|
-
}
|
|
64
|
-
"\n
|
|
65
|
-
|
|
66
|
-
}
|
|
67
|
-
"\n query MyQuery {\n time\n}": DocumentNode<types.MyQueryQuery, types.Exact<{
|
|
68
|
-
[key: string]: never;
|
|
69
|
-
}>>;
|
|
70
|
-
"\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}": DocumentNode<types.GenerateTokenFromSignatureMutation, types.Exact<{
|
|
71
|
-
eip4361message: string;
|
|
72
|
-
signature: string;
|
|
73
|
-
}>>;
|
|
74
|
-
"\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n }\n }\n": DocumentNode<types.GenerateMyInvestSignatureQuery, types.Exact<{
|
|
75
|
-
projectId: string;
|
|
76
|
-
weiAmount: string;
|
|
77
|
-
}>>;
|
|
78
|
-
"\n query InvestedErc20($investedErc20Id: Int!) {\n investedErc20(id: $investedErc20Id) {\n Wallet\n AmountIn\n TokenOut\n }\n}": DocumentNode<types.InvestedErc20Query, types.Exact<{
|
|
79
|
-
investedErc20Id: number;
|
|
80
|
-
}>>;
|
|
81
|
-
"\n query getLeaderboardByAddress($address: String) {\n leaderBoard(address: $address) {\n Amount\n Owner\n Rank\n }\n}": DocumentNode<types.GetLeaderboardByAddressQuery, types.Exact<{
|
|
82
|
-
address?: types.InputMaybe<string> | undefined;
|
|
83
|
-
}>>;
|
|
84
|
-
"\n query getLeaderboard {\n leaderBoard {\n Rank\n Owner\n Amount\n }\n}": DocumentNode<types.GetLeaderboardQuery, types.Exact<{
|
|
85
|
-
[key: string]: never;
|
|
86
|
-
}>>;
|
|
87
|
-
"\n mutation Logout {\n logout\n }\n": DocumentNode<types.LogoutMutation, types.Exact<{
|
|
88
|
-
[key: string]: never;
|
|
89
|
-
}>>;
|
|
90
|
-
"\n mutation setMyAgree {\n setMyAgree\n}": DocumentNode<types.SetMyAgreeMutation, types.Exact<{
|
|
91
|
-
[key: string]: never;
|
|
92
|
-
}>>;
|
|
93
|
-
"\n query MyData {\n myData {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n EvmWallets\n }\n}": DocumentNode<types.MyDataQuery, types.Exact<{
|
|
94
|
-
[key: string]: never;
|
|
95
|
-
}>>;
|
|
96
|
-
"\n mutation AddEvmWallet($wallet: String!) {\n addEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": DocumentNode<types.AddEvmWalletMutation, types.Exact<{
|
|
97
|
-
wallet: string;
|
|
98
|
-
}>>;
|
|
99
|
-
"\n mutation DeleteEvmWallet($wallet: String!) {\n deleteEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": DocumentNode<types.DeleteEvmWalletMutation, types.Exact<{
|
|
100
|
-
wallet: string;
|
|
101
|
-
}>>;
|
|
102
|
-
"\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<{
|
|
103
|
-
chainName: string;
|
|
104
|
-
wallet: string;
|
|
105
|
-
}>>;
|
|
106
|
-
"\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<{
|
|
107
|
-
chainName: string;
|
|
108
|
-
}>>;
|
|
109
|
-
"\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<{
|
|
110
|
-
chainName: string;
|
|
111
|
-
wallet: string;
|
|
112
|
-
}>>;
|
|
113
|
-
"\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<{
|
|
114
|
-
[key: string]: never;
|
|
115
|
-
}>>;
|
|
116
|
-
"\n mutation MyLinkTelegram($dataOnAuth: DataOnAuth!) {\n myLinkTelegram(dataOnAuth: $dataOnAuth)\n}": DocumentNode<types.MyLinkTelegramMutation, types.Exact<{
|
|
117
|
-
dataOnAuth: types.DataOnAuth;
|
|
118
|
-
}>>;
|
|
119
|
-
"\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": DocumentNode<types.KycQuery, types.Exact<{
|
|
120
|
-
[key: string]: never;
|
|
121
|
-
}>>;
|
|
122
|
-
"\n query MyRole {\n myRole\n}": DocumentNode<types.MyRoleQuery, types.Exact<{
|
|
123
|
-
[key: string]: never;
|
|
124
|
-
}>>;
|
|
125
|
-
"\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }": DocumentNode<types.SignUpCheckQuery, types.Exact<{
|
|
126
|
-
poolIDs: number | number[];
|
|
127
|
-
}>>;
|
|
128
|
-
"\n mutation OnboardingCheckTx($chatId:Long!, $dataOnAuth: DataOnAuth!, $tokenTransfer: OnboardingTokenTransfer!) {\n onboardingCheckTx(chatId: $chatId, dataOnAuth: $dataOnAuth, tokenTransfer: $tokenTransfer) {\n Success\n ErrorMessage\n }\n}": DocumentNode<types.OnboardingCheckTxMutation, types.Exact<{
|
|
129
|
-
chatId: any;
|
|
130
|
-
dataOnAuth: types.DataOnAuth;
|
|
131
|
-
tokenTransfer: types.OnboardingTokenTransfer;
|
|
132
|
-
}>>;
|
|
133
|
-
"\nquery OnboardingData($dataOnAuth: DataOnAuth!, $chatId:Long!) {\n onboardingData(dataOnAuth: $dataOnAuth, chatId: $chatId) {\n TokenAddress\n ChainId\n TokenTransfers {\n Amount\n TxHash\n Timestamp\n }\n TokenAllocations {\n StartDate\n FinishDate\n Ratio\n }\n }\n}": DocumentNode<types.OnboardingDataQuery, types.Exact<{
|
|
134
|
-
dataOnAuth: types.DataOnAuth;
|
|
135
|
-
chatId: any;
|
|
136
|
-
}>>;
|
|
137
|
-
"\nquery OnboardingProjects($dataOnAuth: DataOnAuth!) {\n onboardingProjects(dataOnAuth: $dataOnAuth)\n {\n ChatId\n ChatTitle\n }\n}": DocumentNode<types.OnboardingProjectsQuery, types.Exact<{
|
|
138
|
-
dataOnAuth: types.DataOnAuth;
|
|
139
|
-
}>>;
|
|
140
|
-
"\n mutation OnboardingSetAllocation($dataOnAuth: DataOnAuth!, $chatId: Long!, $tokenAllocation: [OnboardingTokenAllocation!]!, $chainId: Long!, $tokenAddress: String!) {\n onboardingSetAllocation(dataOnAuth: $dataOnAuth, chatId: $chatId, chainId: $chainId, tokenAddress: $tokenAddress, tokenAllocation: $tokenAllocation) {\n Success\n ErrorMessage\n }\n}": DocumentNode<types.OnboardingSetAllocationMutation, types.Exact<{
|
|
141
|
-
dataOnAuth: types.DataOnAuth;
|
|
142
|
-
chatId: any;
|
|
143
|
-
tokenAllocation: types.OnboardingTokenAllocation | types.OnboardingTokenAllocation[];
|
|
144
|
-
chainId: any;
|
|
145
|
-
tokenAddress: string;
|
|
146
|
-
}>>;
|
|
147
|
-
"\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }": DocumentNode<types.PoolxPriceQuery, types.Exact<{
|
|
148
|
-
[key: string]: never;
|
|
149
|
-
}>>;
|
|
150
|
-
"\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<{
|
|
151
|
-
[key: string]: never;
|
|
152
|
-
}>>;
|
|
153
|
-
"\n query SeasonPass {\n seasonPass {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.SeasonPassQuery, types.Exact<{
|
|
154
|
-
[key: string]: never;
|
|
155
|
-
}>>;
|
|
156
|
-
"\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<{
|
|
157
|
-
Owner: string;
|
|
158
|
-
Amount: number;
|
|
159
|
-
ValidUntil: number;
|
|
160
|
-
Note: string;
|
|
161
|
-
}>>;
|
|
162
|
-
"\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<{
|
|
163
|
-
Owner: string;
|
|
164
|
-
Amount: number;
|
|
165
|
-
ValidUntil: number;
|
|
166
|
-
Note: string;
|
|
167
|
-
}>>;
|
|
168
|
-
"\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<{
|
|
169
|
-
owner: string;
|
|
170
|
-
note: string;
|
|
171
|
-
}>>;
|
|
172
|
-
"\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": DocumentNode<types.MySignUpV2Query, types.Exact<{
|
|
173
|
-
projectIDs: number | number[];
|
|
174
|
-
}>>;
|
|
175
|
-
"\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<{
|
|
176
|
-
projectId: number;
|
|
177
|
-
minPoolxAmount: number;
|
|
178
|
-
}>>;
|
|
179
|
-
"\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": DocumentNode<types.ProjectSignUpV2Mutation, types.Exact<{
|
|
180
|
-
projectId: number;
|
|
181
|
-
}>>;
|
|
182
|
-
"\n query MySignUpV3($projectIDs: [String!]!) {\n mySignUpV3(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": DocumentNode<types.MySignUpV3Query, types.Exact<{
|
|
183
|
-
projectIDs: string | string[];
|
|
184
|
-
}>>;
|
|
185
|
-
"\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<{
|
|
186
|
-
projectId: string;
|
|
187
|
-
minPoolxAmount: number;
|
|
188
|
-
}>>;
|
|
189
|
-
"\n mutation ProjectSignUpV3($projectId: String!) {\n projectSignUpV3(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": DocumentNode<types.ProjectSignUpV3Mutation, types.Exact<{
|
|
190
|
-
projectId: string;
|
|
191
|
-
}>>;
|
|
192
|
-
"\nquery SimpleUrlShortener($input: TxHashChainIdInput!) {\n simpleUrlShortener(input: $input) {\n ShortUrl\n ContainerText\n UrlToScan\n XPostText\n }\n}": DocumentNode<types.SimpleUrlShortenerQuery, types.Exact<{
|
|
193
|
-
input: types.TxHashChainIdInput;
|
|
194
|
-
}>>;
|
|
195
|
-
"\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<{
|
|
196
|
-
[key: string]: never;
|
|
197
|
-
}>>;
|
|
198
|
-
"\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<{
|
|
199
|
-
hashKey: string;
|
|
200
|
-
}>>;
|
|
201
|
-
"\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<{
|
|
202
|
-
chainId: number;
|
|
203
|
-
poolId: number;
|
|
204
|
-
}>>;
|
|
205
|
-
"\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<{
|
|
206
|
-
chainId?: types.InputMaybe<number> | undefined;
|
|
207
|
-
tokenAddress?: types.InputMaybe<string> | undefined;
|
|
208
|
-
fetchBalance?: types.InputMaybe<boolean> | undefined;
|
|
209
|
-
}>>;
|
|
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;
|
|
210
67
|
};
|
|
68
|
+
declare const documents: Documents;
|
|
211
69
|
/**
|
|
212
70
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
213
71
|
*
|
|
@@ -225,10 +83,18 @@ export declare function gql(source: string): unknown;
|
|
|
225
83
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
226
84
|
*/
|
|
227
85
|
export declare function gql(source: "\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 documents)["\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}"];
|
|
86
|
+
/**
|
|
87
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
88
|
+
*/
|
|
89
|
+
export declare function gql(source: "\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId) {\n ProjectId\n PoolzBackId\n }\n }\n"): (typeof documents)["\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId) {\n ProjectId\n PoolzBackId\n }\n }\n"];
|
|
228
90
|
/**
|
|
229
91
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
230
92
|
*/
|
|
231
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"];
|
|
232
98
|
/**
|
|
233
99
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
234
100
|
*/
|
|
@@ -292,7 +158,7 @@ export declare function gql(source: "\nmutation GenerateTokenFromSignature($eip4
|
|
|
292
158
|
/**
|
|
293
159
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
294
160
|
*/
|
|
295
|
-
export declare function gql(source: "\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n }\n }\n"): (typeof documents)["\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n }\n }\n"];
|
|
161
|
+
export declare function gql(source: "\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n PoolzBackId\n }\n }\n"): (typeof documents)["\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n PoolzBackId\n }\n }\n"];
|
|
296
162
|
/**
|
|
297
163
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
298
164
|
*/
|
|
@@ -341,10 +207,6 @@ export declare function gql(source: "\n mutation UpdateNonEvmWallet($chainName:
|
|
|
341
207
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
342
208
|
*/
|
|
343
209
|
export declare function gql(source: "\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 documents)["\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}"];
|
|
344
|
-
/**
|
|
345
|
-
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
346
|
-
*/
|
|
347
|
-
export declare function gql(source: "\n mutation MyLinkTelegram($dataOnAuth: DataOnAuth!) {\n myLinkTelegram(dataOnAuth: $dataOnAuth)\n}"): (typeof documents)["\n mutation MyLinkTelegram($dataOnAuth: DataOnAuth!) {\n myLinkTelegram(dataOnAuth: $dataOnAuth)\n}"];
|
|
348
210
|
/**
|
|
349
211
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
350
212
|
*/
|
|
@@ -357,22 +219,6 @@ export declare function gql(source: "\n query MyRole {\n myRole\n}"): (typeo
|
|
|
357
219
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
358
220
|
*/
|
|
359
221
|
export declare function gql(source: "\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }"): (typeof documents)["\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }"];
|
|
360
|
-
/**
|
|
361
|
-
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
362
|
-
*/
|
|
363
|
-
export declare function gql(source: "\n mutation OnboardingCheckTx($chatId:Long!, $dataOnAuth: DataOnAuth!, $tokenTransfer: OnboardingTokenTransfer!) {\n onboardingCheckTx(chatId: $chatId, dataOnAuth: $dataOnAuth, tokenTransfer: $tokenTransfer) {\n Success\n ErrorMessage\n }\n}"): (typeof documents)["\n mutation OnboardingCheckTx($chatId:Long!, $dataOnAuth: DataOnAuth!, $tokenTransfer: OnboardingTokenTransfer!) {\n onboardingCheckTx(chatId: $chatId, dataOnAuth: $dataOnAuth, tokenTransfer: $tokenTransfer) {\n Success\n ErrorMessage\n }\n}"];
|
|
364
|
-
/**
|
|
365
|
-
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
366
|
-
*/
|
|
367
|
-
export declare function gql(source: "\nquery OnboardingData($dataOnAuth: DataOnAuth!, $chatId:Long!) {\n onboardingData(dataOnAuth: $dataOnAuth, chatId: $chatId) {\n TokenAddress\n ChainId\n TokenTransfers {\n Amount\n TxHash\n Timestamp\n }\n TokenAllocations {\n StartDate\n FinishDate\n Ratio\n }\n }\n}"): (typeof documents)["\nquery OnboardingData($dataOnAuth: DataOnAuth!, $chatId:Long!) {\n onboardingData(dataOnAuth: $dataOnAuth, chatId: $chatId) {\n TokenAddress\n ChainId\n TokenTransfers {\n Amount\n TxHash\n Timestamp\n }\n TokenAllocations {\n StartDate\n FinishDate\n Ratio\n }\n }\n}"];
|
|
368
|
-
/**
|
|
369
|
-
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
370
|
-
*/
|
|
371
|
-
export declare function gql(source: "\nquery OnboardingProjects($dataOnAuth: DataOnAuth!) {\n onboardingProjects(dataOnAuth: $dataOnAuth)\n {\n ChatId\n ChatTitle\n }\n}"): (typeof documents)["\nquery OnboardingProjects($dataOnAuth: DataOnAuth!) {\n onboardingProjects(dataOnAuth: $dataOnAuth)\n {\n ChatId\n ChatTitle\n }\n}"];
|
|
372
|
-
/**
|
|
373
|
-
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
374
|
-
*/
|
|
375
|
-
export declare function gql(source: "\n mutation OnboardingSetAllocation($dataOnAuth: DataOnAuth!, $chatId: Long!, $tokenAllocation: [OnboardingTokenAllocation!]!, $chainId: Long!, $tokenAddress: String!) {\n onboardingSetAllocation(dataOnAuth: $dataOnAuth, chatId: $chatId, chainId: $chainId, tokenAddress: $tokenAddress, tokenAllocation: $tokenAllocation) {\n Success\n ErrorMessage\n }\n}"): (typeof documents)["\n mutation OnboardingSetAllocation($dataOnAuth: DataOnAuth!, $chatId: Long!, $tokenAllocation: [OnboardingTokenAllocation!]!, $chainId: Long!, $tokenAddress: String!) {\n onboardingSetAllocation(dataOnAuth: $dataOnAuth, chatId: $chatId, chainId: $chainId, tokenAddress: $tokenAddress, tokenAllocation: $tokenAllocation) {\n Success\n ErrorMessage\n }\n}"];
|
|
376
222
|
/**
|
|
377
223
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
378
224
|
*/
|