@poolzfinance/api4 1.12.1 → 1.12.3
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 +2 -2
- 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/myAllowcation.d.ts +6 -0
- 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 -1
- 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 +70 -180
- package/dist/types/graphql/graphql.d.ts +98 -179
- package/package.json +5 -5
|
@@ -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,65 @@ 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
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
"\n query
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
"\n
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
"\n query
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
"\n
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
"\n
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
"\n mutation
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
"\n mutation
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
"\n query
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
"\n query
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
"\n
|
|
56
|
-
|
|
57
|
-
}
|
|
58
|
-
"\n
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
"\n query
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
"\
|
|
66
|
-
|
|
67
|
-
}
|
|
68
|
-
"\n
|
|
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 query MyAllocation($projectId: String!) {\n myAllocation(projectId: $projectId) {\n Amount\n StartTime\n EndTime\n PoolzBackId\n }\n }": typeof types.MyAllocationDocument;
|
|
40
|
+
"\n query MyUpcomingAllocation($projectIDs: [String!]!) {\n myUpcomingAllocation(projectIDs: $projectIDs) {\n ProjectId\n PoolzBackId\n Amount\n }\n }": typeof types.MyUpcomingAllocationDocument;
|
|
41
|
+
"\n mutation setMyAgree {\n setMyAgree\n}": typeof types.SetMyAgreeDocument;
|
|
42
|
+
"\n query MyData {\n myData {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n EvmWallets\n }\n}": typeof types.MyDataDocument;
|
|
43
|
+
"\n mutation AddEvmWallet($wallet: String!) {\n addEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": typeof types.AddEvmWalletDocument;
|
|
44
|
+
"\n mutation DeleteEvmWallet($wallet: String!) {\n deleteEvmWallet(wallet: $wallet) {\n EvmWallet\n }\n}": typeof types.DeleteEvmWalletDocument;
|
|
45
|
+
"\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;
|
|
46
|
+
"\n mutation DeleteNonEvmWallet($chainName: String!) {\n deleteNonEvmWallet(chainName: $chainName) {\n Agree\n NonEvmWallet {\n ChainName\n Wallet\n }\n }\n}": typeof types.DeleteNonEvmWalletDocument;
|
|
47
|
+
"\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;
|
|
48
|
+
"\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;
|
|
49
|
+
"\n query KYC {\n myProxyKYC {\n Proxy\n RequestStatus\n Status\n }\n}": typeof types.KycDocument;
|
|
50
|
+
"\n query MyRole {\n myRole\n}": typeof types.MyRoleDocument;
|
|
51
|
+
"\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }": typeof types.SignUpCheckDocument;
|
|
52
|
+
"\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }": typeof types.PoolxPriceDocument;
|
|
53
|
+
"\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;
|
|
54
|
+
"\n query SeasonPass {\n seasonPass {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": typeof types.SeasonPassDocument;
|
|
55
|
+
"\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;
|
|
56
|
+
"\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;
|
|
57
|
+
"\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;
|
|
58
|
+
"\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": typeof types.MySignUpV2Document;
|
|
59
|
+
"\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": typeof types.AdminSignUpV2Document;
|
|
60
|
+
"\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": typeof types.ProjectSignUpV2Document;
|
|
61
|
+
"\n query MySignUpV3($projectIDs: [String!]!) {\n mySignUpV3(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": typeof types.MySignUpV3Document;
|
|
62
|
+
"\n query AdminSignUpV3($projectId: String!, $minPoolxAmount: Int!) {\n adminSignUpV3(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": typeof types.AdminSignUpV3Document;
|
|
63
|
+
"\n mutation ProjectSignUpV3($projectId: String!) {\n projectSignUpV3(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": typeof types.ProjectSignUpV3Document;
|
|
64
|
+
"\nquery SimpleUrlShortener($input: TxHashChainIdInput!) {\n simpleUrlShortener(input: $input) {\n ShortUrl\n ContainerText\n UrlToScan\n XPostText\n }\n}": typeof types.SimpleUrlShortenerDocument;
|
|
65
|
+
"\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;
|
|
66
|
+
"\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;
|
|
67
|
+
"\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;
|
|
68
|
+
"\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
69
|
};
|
|
70
|
+
declare const documents: Documents;
|
|
193
71
|
/**
|
|
194
72
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
195
73
|
*
|
|
@@ -215,6 +93,10 @@ export declare function gql(source: "\n mutation AdminCreatePoolzBackId($projec
|
|
|
215
93
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
216
94
|
*/
|
|
217
95
|
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}"];
|
|
96
|
+
/**
|
|
97
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
98
|
+
*/
|
|
99
|
+
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
100
|
/**
|
|
219
101
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
220
102
|
*/
|
|
@@ -295,6 +177,14 @@ export declare function gql(source: "\n query getLeaderboard {\n leaderBoard
|
|
|
295
177
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
296
178
|
*/
|
|
297
179
|
export declare function gql(source: "\n mutation Logout {\n logout\n }\n"): (typeof documents)["\n mutation Logout {\n logout\n }\n"];
|
|
180
|
+
/**
|
|
181
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
182
|
+
*/
|
|
183
|
+
export declare function gql(source: "\n query MyAllocation($projectId: String!) {\n myAllocation(projectId: $projectId) {\n Amount\n StartTime\n EndTime\n PoolzBackId\n }\n }"): (typeof documents)["\n query MyAllocation($projectId: String!) {\n myAllocation(projectId: $projectId) {\n Amount\n StartTime\n EndTime\n PoolzBackId\n }\n }"];
|
|
184
|
+
/**
|
|
185
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
186
|
+
*/
|
|
187
|
+
export declare function gql(source: "\n query MyUpcomingAllocation($projectIDs: [String!]!) {\n myUpcomingAllocation(projectIDs: $projectIDs) {\n ProjectId\n PoolzBackId\n Amount\n }\n }"): (typeof documents)["\n query MyUpcomingAllocation($projectIDs: [String!]!) {\n myUpcomingAllocation(projectIDs: $projectIDs) {\n ProjectId\n PoolzBackId\n Amount\n }\n }"];
|
|
298
188
|
/**
|
|
299
189
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
300
190
|
*/
|