@poolzfinance/api4 1.11.6 → 1.11.8
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/poolxPrice.d.ts +3 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -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/graphql/gql.d.ts +7 -0
- package/dist/types/graphql/graphql.d.ts +20 -0
- package/package.json +1 -1
|
@@ -87,6 +87,9 @@ declare const documents: {
|
|
|
87
87
|
"\n query SignUpCheck($poolIDs: [Int!]!) {\n mySignUpCheck(poolIDs: $poolIDs) {\n PoolId\n SignUp\n }\n }": DocumentNode<types.SignUpCheckQuery, types.Exact<{
|
|
88
88
|
poolIDs: number | number[];
|
|
89
89
|
}>>;
|
|
90
|
+
"\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }": DocumentNode<types.PoolxPriceQuery, types.Exact<{
|
|
91
|
+
[key: string]: never;
|
|
92
|
+
}>>;
|
|
90
93
|
"\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 PancakeSwapV2\n PancakeSwapV3\n Mexc\n }\n }\n }\n": DocumentNode<types.GetPoolxTokenomicsQuery, types.Exact<{
|
|
91
94
|
[key: string]: never;
|
|
92
95
|
}>>;
|
|
@@ -210,6 +213,10 @@ export declare function gql(source: "\n query MyRole {\n myRole\n}"): (typeo
|
|
|
210
213
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
211
214
|
*/
|
|
212
215
|
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 }"];
|
|
216
|
+
/**
|
|
217
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
218
|
+
*/
|
|
219
|
+
export declare function gql(source: "\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }"): (typeof documents)["\n query PoolxPrice {\n poolxPrice {\n Price\n Timestamp\n }\n }"];
|
|
213
220
|
/**
|
|
214
221
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
215
222
|
*/
|
|
@@ -301,6 +301,11 @@ export type NonEvmWallet = {
|
|
|
301
301
|
ChainName: Scalars['String']['output'];
|
|
302
302
|
Wallet: Scalars['String']['output'];
|
|
303
303
|
};
|
|
304
|
+
export type PoolxPrice = {
|
|
305
|
+
__typename?: 'PoolxPrice';
|
|
306
|
+
Price: Scalars['Float']['output'];
|
|
307
|
+
Timestamp: Scalars['Int']['output'];
|
|
308
|
+
};
|
|
304
309
|
export type PoolxTokenomics = {
|
|
305
310
|
__typename?: 'PoolxTokenomics';
|
|
306
311
|
CirculatingSupply: Scalars['Float']['output'];
|
|
@@ -350,6 +355,7 @@ export type Query = {
|
|
|
350
355
|
myRole: Scalars['String']['output'];
|
|
351
356
|
mySignUpCheck: Array<SignUpCheck>;
|
|
352
357
|
mySignup: Array<MySignUp>;
|
|
358
|
+
poolxPrice: PoolxPrice;
|
|
353
359
|
poolxTokenomics: PoolxTokenomics;
|
|
354
360
|
signUp: Array<SignUp>;
|
|
355
361
|
signUpAllocation?: Maybe<Array<SignUpAllocation>>;
|
|
@@ -843,6 +849,17 @@ export type SignUpCheckQuery = {
|
|
|
843
849
|
SignUp?: boolean | null;
|
|
844
850
|
}>;
|
|
845
851
|
};
|
|
852
|
+
export type PoolxPriceQueryVariables = Exact<{
|
|
853
|
+
[key: string]: never;
|
|
854
|
+
}>;
|
|
855
|
+
export type PoolxPriceQuery = {
|
|
856
|
+
__typename?: 'Query';
|
|
857
|
+
poolxPrice: {
|
|
858
|
+
__typename?: 'PoolxPrice';
|
|
859
|
+
Price: number;
|
|
860
|
+
Timestamp: number;
|
|
861
|
+
};
|
|
862
|
+
};
|
|
846
863
|
export type GetPoolxTokenomicsQueryVariables = Exact<{
|
|
847
864
|
[key: string]: never;
|
|
848
865
|
}>;
|
|
@@ -1019,6 +1036,9 @@ export declare const MyRoleDocument: DocumentNode<MyRoleQuery, Exact<{
|
|
|
1019
1036
|
export declare const SignUpCheckDocument: DocumentNode<SignUpCheckQuery, Exact<{
|
|
1020
1037
|
poolIDs: Array<Scalars['Int']['input']> | Scalars['Int']['input'];
|
|
1021
1038
|
}>>;
|
|
1039
|
+
export declare const PoolxPriceDocument: DocumentNode<PoolxPriceQuery, Exact<{
|
|
1040
|
+
[key: string]: never;
|
|
1041
|
+
}>>;
|
|
1022
1042
|
export declare const GetPoolxTokenomicsDocument: DocumentNode<GetPoolxTokenomicsQuery, Exact<{
|
|
1023
1043
|
[key: string]: never;
|
|
1024
1044
|
}>>;
|