@dodoex/api 3.4.0 → 3.5.0-cp.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,5 +32,6 @@ export declare enum ChainId {
32
32
  HEMI = 43111,
33
33
  PHAROS_TESTNET = 688688,
34
34
  PHAROS_ATLANTIC_TESTNET = 688689,
35
- STABLE_TESTNET = 2201
35
+ STABLE_TESTNET = 2201,
36
+ STABLE = 988
36
37
  }
@@ -10,6 +10,34 @@ export declare function graphql(source: '\n query FetchErc20ForecastSlippage(
10
10
  * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
11
11
  */
12
12
  export declare function graphql(source: '\n query Ticks($where: Tick_filter, $skip: Int, $first: Int) {\n ticks(where: $where, skip: $skip, first: $first) {\n id\n poolAddress\n tickIdx\n liquidityNet\n price0\n price1\n }\n }\n'): typeof import('./graphql').TicksDocument;
13
+ /**
14
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
15
+ */
16
+ export declare function graphql(source: '\n query FetchCPList($first: Int, $where: CrowdPooling_filter) {\n crowdPoolings(\n first: $first\n where: $where\n orderBy: bidStartTime\n orderDirection: desc\n ) {\n id\n creator\n bidStartTime\n bidEndTime\n freezeDuration\n i\n k\n poolQuoteCap\n poolQuote\n investorsCount\n totalBase\n createTime\n settled\n totalShares\n calmEndTime\n dvm {\n id\n }\n baseToken {\n id\n symbol\n name\n decimals\n }\n quoteToken {\n id\n symbol\n name\n decimals\n }\n version\n feeRate\n isOvercapStop\n tokenCliffRate\n tokenClaimDuration\n tokenVestingDuration\n }\n }\n '): typeof import('./graphql').FetchCpListDocument;
17
+ /**
18
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
19
+ */
20
+ export declare function graphql(source: '\n query FetchCPDetail($id: ID!, $where: CrowdPooling_filter) {\n crowdPooling(id: $id, where: $where) {\n id\n creator\n bidStartTime\n bidEndTime\n freezeDuration\n i\n k\n poolQuoteCap\n poolQuote\n investorsCount\n totalBase\n createTime\n settled\n totalShares\n calmEndTime\n dvm {\n id\n }\n baseToken {\n id\n symbol\n name\n decimals\n }\n quoteToken {\n id\n symbol\n name\n decimals\n }\n version\n feeRate\n isOvercapStop\n tokenCliffRate\n tokenClaimDuration\n tokenVestingDuration\n }\n }\n '): typeof import('./graphql').FetchCpDetailDocument;
21
+ /**
22
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
23
+ */
24
+ export declare function graphql(source: '\n query FetchIOPCPList(\n $where: Crowd_pooling_read_servercrowdpoolingListFilter\n $voteWhere: Crowd_pooling_read_servercrowdpoolingVoteListFilter\n ) {\n crowd_pooling_read_server_list(where: $where) {\n address\n votes {\n id\n }\n }\n crowd_pooling_read_server_voteList(where: $voteWhere) {\n id\n account {\n address\n }\n }\n }\n '): typeof import('./graphql').FetchIopcpListDocument;
25
+ /**
26
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
27
+ */
28
+ export declare function graphql(source: '\n query FetchBidPosition($where: BidPosition_filter) {\n bidPositions(where: $where, orderBy: lastTxTime, orderDirection: desc) {\n user {\n id\n }\n cp {\n id\n }\n shares\n investedQuote\n }\n }\n '): typeof import('./graphql').FetchBidPositionDocument;
29
+ /**
30
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
31
+ */
32
+ export declare function graphql(source: '\n query FetchCPDayData($first: Int, $where: CrowdPoolingDayData_filter) {\n crowdPoolingDayDatas(\n first: $first\n where: $where\n orderBy: date\n orderDirection: asc\n ) {\n date\n investedQuote\n investCount\n newcome\n investors\n poolQuote\n }\n }\n '): typeof import('./graphql').FetchCpDayDataDocument;
33
+ /**
34
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
35
+ */
36
+ export declare function graphql(source: '\n query FetchCPHourData($first: Int, $where: CrowdPoolingHourData_filter) {\n crowdPoolingHourDatas(\n first: $first\n where: $where\n orderBy: hour\n orderDirection: asc\n ) {\n hour\n investedQuote\n investCount\n newcome\n investors\n poolQuote\n }\n }\n '): typeof import('./graphql').FetchCpHourDataDocument;
37
+ /**
38
+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
39
+ */
40
+ export declare function graphql(source: '\n query FetchCPBids(\n $first: Int\n $skip: Int\n $where: BidHistory_filter\n $orderBy: BidHistory_orderBy\n $orderDirection: OrderDirection\n ) {\n bidHistories(\n first: $first\n skip: $skip\n where: $where\n orderBy: $orderBy\n orderDirection: $orderDirection\n ) {\n id\n timestamp\n user {\n id\n }\n action\n cp {\n id\n quoteToken {\n id\n symbol\n }\n }\n quote\n fee\n }\n }\n '): typeof import('./graphql').FetchCpBidsDocument;
13
41
  /**
14
42
  * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
15
43
  */