@clober/v2-sdk 0.0.1-b → 0.0.1-d
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/cjs/.graphclient/index.js +243 -0
- package/dist/cjs/.graphclient/index.js.map +1 -0
- package/dist/cjs/.graphclient/sources/clober-v2/introspectionSchema.js +14482 -0
- package/dist/cjs/.graphclient/sources/clober-v2/introspectionSchema.js.map +1 -0
- package/dist/cjs/.graphclient/sources/clober-v2/types.js +4 -0
- package/dist/cjs/.graphclient/sources/clober-v2/types.js.map +1 -0
- package/dist/cjs/abis/core/controller-abi.js +989 -0
- package/dist/cjs/abis/core/controller-abi.js.map +1 -0
- package/dist/cjs/abis/core/params-abi.js +62 -0
- package/dist/cjs/abis/core/params-abi.js.map +1 -0
- package/dist/cjs/apis/currency.js +87 -0
- package/dist/cjs/apis/currency.js.map +1 -0
- package/dist/cjs/apis/market.js +63 -0
- package/dist/cjs/apis/market.js.map +1 -0
- package/dist/cjs/apis/open-order.js +90 -0
- package/dist/cjs/apis/open-order.js.map +1 -0
- package/dist/cjs/approval.js +74 -0
- package/dist/cjs/approval.js.map +1 -0
- package/dist/cjs/call.js +545 -0
- package/dist/cjs/call.js.map +1 -0
- package/dist/cjs/constants/action.js +14 -0
- package/dist/cjs/constants/action.js.map +1 -0
- package/dist/cjs/constants/addresses.js +13 -0
- package/dist/cjs/constants/addresses.js.map +1 -0
- package/dist/cjs/constants/chain.js +13 -0
- package/dist/cjs/constants/chain.js.map +1 -0
- package/dist/cjs/constants/currency.js +12 -0
- package/dist/cjs/constants/currency.js.map +1 -0
- package/dist/cjs/constants/fee.js +7 -0
- package/dist/cjs/constants/fee.js.map +1 -0
- package/dist/cjs/constants/price.js +6 -0
- package/dist/cjs/constants/price.js.map +1 -0
- package/dist/cjs/constants/subgraph-url.js +8 -0
- package/dist/cjs/constants/subgraph-url.js.map +1 -0
- package/dist/cjs/index.js +22 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/model/book.js +130 -0
- package/dist/cjs/model/book.js.map +1 -0
- package/dist/cjs/model/currency.js +3 -0
- package/dist/cjs/model/currency.js.map +1 -0
- package/dist/cjs/model/depth.js +3 -0
- package/dist/cjs/model/depth.js.map +1 -0
- package/dist/cjs/model/fee-policy.js +42 -0
- package/dist/cjs/model/fee-policy.js.map +1 -0
- package/dist/cjs/model/market.js +215 -0
- package/dist/cjs/model/market.js.map +1 -0
- package/dist/cjs/model/open-order.js +3 -0
- package/dist/cjs/model/open-order.js.map +1 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/signature.js +178 -0
- package/dist/cjs/signature.js.map +1 -0
- package/dist/cjs/tsconfig.build.tsbuildinfo +1 -0
- package/dist/cjs/type.js +6 -0
- package/dist/cjs/type.js.map +1 -0
- package/dist/cjs/utils/approval.js +46 -0
- package/dist/cjs/utils/approval.js.map +1 -0
- package/dist/cjs/utils/book-id.js +25 -0
- package/dist/cjs/utils/book-id.js.map +1 -0
- package/dist/cjs/utils/build-transaction.js +31 -0
- package/dist/cjs/utils/build-transaction.js.map +1 -0
- package/dist/cjs/utils/decimals.js +17 -0
- package/dist/cjs/utils/decimals.js.map +1 -0
- package/dist/cjs/utils/market.js +53 -0
- package/dist/cjs/utils/market.js.map +1 -0
- package/dist/cjs/utils/math.js +83 -0
- package/dist/cjs/utils/math.js.map +1 -0
- package/dist/cjs/utils/prices.js +22 -0
- package/dist/cjs/utils/prices.js.map +1 -0
- package/dist/cjs/utils/tick.js +106 -0
- package/dist/cjs/utils/tick.js.map +1 -0
- package/dist/cjs/utils/time.js +9 -0
- package/dist/cjs/utils/time.js.map +1 -0
- package/dist/cjs/utils/unit.js +38 -0
- package/dist/cjs/utils/unit.js.map +1 -0
- package/dist/cjs/view.js +185 -0
- package/dist/cjs/view.js.map +1 -0
- package/dist/esm/.graphclient/index.js +233 -0
- package/dist/esm/.graphclient/index.js.map +1 -0
- package/dist/esm/.graphclient/sources/clober-v2/introspectionSchema.js +14480 -0
- package/dist/esm/.graphclient/sources/clober-v2/introspectionSchema.js.map +1 -0
- package/dist/esm/.graphclient/sources/clober-v2/types.js +3 -0
- package/dist/esm/.graphclient/sources/clober-v2/types.js.map +1 -0
- package/dist/esm/abis/core/controller-abi.js +986 -0
- package/dist/esm/abis/core/controller-abi.js.map +1 -0
- package/dist/esm/abis/core/params-abi.js +59 -0
- package/dist/esm/abis/core/params-abi.js.map +1 -0
- package/dist/esm/apis/currency.js +83 -0
- package/dist/esm/apis/currency.js.map +1 -0
- package/dist/esm/apis/market.js +59 -0
- package/dist/esm/apis/market.js.map +1 -0
- package/dist/esm/apis/open-order.js +85 -0
- package/dist/esm/apis/open-order.js.map +1 -0
- package/dist/esm/approval.js +70 -0
- package/dist/esm/approval.js.map +1 -0
- package/dist/esm/call.js +535 -0
- package/dist/esm/call.js.map +1 -0
- package/dist/esm/constants/action.js +11 -0
- package/dist/esm/constants/action.js.map +1 -0
- package/dist/esm/constants/addresses.js +10 -0
- package/dist/esm/constants/addresses.js.map +1 -0
- package/dist/esm/constants/chain.js +10 -0
- package/dist/esm/constants/chain.js.map +1 -0
- package/dist/esm/constants/currency.js +9 -0
- package/dist/esm/constants/currency.js.map +1 -0
- package/dist/esm/constants/fee.js +4 -0
- package/dist/esm/constants/fee.js.map +1 -0
- package/dist/esm/constants/price.js +3 -0
- package/dist/esm/constants/price.js.map +1 -0
- package/dist/esm/constants/subgraph-url.js +5 -0
- package/dist/esm/constants/subgraph-url.js.map +1 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/model/book.js +126 -0
- package/dist/esm/model/book.js.map +1 -0
- package/dist/esm/model/currency.js +2 -0
- package/dist/esm/model/currency.js.map +1 -0
- package/dist/esm/model/depth.js +2 -0
- package/dist/esm/model/depth.js.map +1 -0
- package/dist/esm/model/fee-policy.js +38 -0
- package/dist/esm/model/fee-policy.js.map +1 -0
- package/dist/esm/model/market.js +211 -0
- package/dist/esm/model/market.js.map +1 -0
- package/dist/esm/model/open-order.js +2 -0
- package/dist/esm/model/open-order.js.map +1 -0
- package/dist/esm/package.json +1 -0
- package/dist/esm/signature.js +174 -0
- package/dist/esm/signature.js.map +1 -0
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -0
- package/dist/esm/type.js +2 -0
- package/dist/esm/type.js.map +1 -0
- package/dist/esm/utils/approval.js +42 -0
- package/dist/esm/utils/approval.js.map +1 -0
- package/{src/utils/book-id.ts → dist/esm/utils/book-id.js} +9 -19
- package/dist/esm/utils/book-id.js.map +1 -0
- package/dist/esm/utils/build-transaction.js +27 -0
- package/dist/esm/utils/build-transaction.js.map +1 -0
- package/dist/esm/utils/decimals.js +12 -0
- package/dist/esm/utils/decimals.js.map +1 -0
- package/dist/esm/utils/market.js +49 -0
- package/dist/esm/utils/market.js.map +1 -0
- package/dist/esm/utils/math.js +78 -0
- package/dist/esm/utils/math.js.map +1 -0
- package/dist/esm/utils/prices.js +17 -0
- package/dist/esm/utils/prices.js.map +1 -0
- package/dist/esm/utils/tick.js +100 -0
- package/dist/esm/utils/tick.js.map +1 -0
- package/dist/esm/utils/time.js +5 -0
- package/dist/esm/utils/time.js.map +1 -0
- package/dist/esm/utils/unit.js +34 -0
- package/dist/esm/utils/unit.js.map +1 -0
- package/dist/esm/view.js +177 -0
- package/dist/esm/view.js.map +1 -0
- package/dist/types/.graphclient/index.d.ts +1281 -0
- package/dist/types/.graphclient/index.d.ts.map +1 -0
- package/dist/types/.graphclient/sources/clober-v2/introspectionSchema.d.ts +3 -0
- package/dist/types/.graphclient/sources/clober-v2/introspectionSchema.d.ts.map +1 -0
- package/dist/types/.graphclient/sources/clober-v2/types.d.ts +984 -0
- package/dist/types/.graphclient/sources/clober-v2/types.d.ts.map +1 -0
- package/dist/types/abis/core/controller-abi.d.ts +757 -0
- package/dist/types/abis/core/controller-abi.d.ts.map +1 -0
- package/dist/types/abis/core/params-abi.d.ts +21 -0
- package/dist/types/abis/core/params-abi.d.ts.map +1 -0
- package/dist/types/apis/currency.d.ts +4 -0
- package/dist/types/apis/currency.d.ts.map +1 -0
- package/dist/types/apis/market.d.ts +4 -0
- package/dist/types/apis/market.d.ts.map +1 -0
- package/dist/types/apis/open-order.d.ts +5 -0
- package/dist/types/apis/open-order.d.ts.map +1 -0
- package/dist/types/approval.d.ts +32 -0
- package/dist/types/approval.d.ts.map +1 -0
- package/dist/types/call.d.ts +234 -0
- package/dist/types/call.d.ts.map +1 -0
- package/dist/types/constants/action.d.ts +10 -0
- package/dist/types/constants/action.d.ts.map +1 -0
- package/dist/types/constants/addresses.d.ts +9 -0
- package/dist/types/constants/addresses.d.ts.map +1 -0
- package/dist/types/constants/chain.d.ts +9 -0
- package/dist/types/constants/chain.d.ts.map +1 -0
- package/dist/types/constants/currency.d.ts +8 -0
- package/dist/types/constants/currency.d.ts.map +1 -0
- package/dist/types/constants/fee.d.ts +4 -0
- package/dist/types/constants/fee.d.ts.map +1 -0
- package/dist/types/constants/price.d.ts +3 -0
- package/dist/types/constants/price.d.ts.map +1 -0
- package/dist/types/constants/subgraph-url.d.ts +5 -0
- package/dist/types/constants/subgraph-url.d.ts.map +1 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/model/book.d.ts +31 -0
- package/dist/types/model/book.d.ts.map +1 -0
- package/dist/types/model/currency.d.ts +7 -0
- package/dist/types/model/currency.d.ts.map +1 -0
- package/dist/types/model/depth.d.ts +11 -0
- package/dist/types/model/depth.d.ts.map +1 -0
- package/dist/types/model/fee-policy.d.ts +15 -0
- package/dist/types/model/fee-policy.d.ts.map +1 -0
- package/dist/types/model/market.d.ts +44 -0
- package/dist/types/model/market.d.ts.map +1 -0
- package/dist/types/model/open-order.d.ts +28 -0
- package/dist/types/model/open-order.d.ts.map +1 -0
- package/dist/types/signature.d.ts +40 -0
- package/dist/types/signature.d.ts.map +1 -0
- package/dist/types/type.d.ts +34 -0
- package/dist/types/type.d.ts.map +1 -0
- package/dist/types/utils/approval.d.ts +3 -0
- package/dist/types/utils/approval.d.ts.map +1 -0
- package/dist/types/utils/book-id.d.ts +2 -0
- package/dist/types/utils/book-id.d.ts.map +1 -0
- package/dist/types/utils/build-transaction.d.ts +5 -0
- package/dist/types/utils/build-transaction.d.ts.map +1 -0
- package/dist/types/utils/decimals.d.ts +3 -0
- package/dist/types/utils/decimals.d.ts.map +1 -0
- package/dist/types/utils/market.d.ts +7 -0
- package/dist/types/utils/market.d.ts.map +1 -0
- package/dist/types/utils/math.d.ts +3 -0
- package/dist/types/utils/math.d.ts.map +1 -0
- package/dist/types/utils/prices.d.ts +3 -0
- package/dist/types/utils/prices.d.ts.map +1 -0
- package/dist/types/utils/tick.d.ts +4 -0
- package/dist/types/utils/tick.d.ts.map +1 -0
- package/dist/types/utils/time.d.ts +2 -0
- package/dist/types/utils/time.d.ts.map +1 -0
- package/dist/types/utils/unit.d.ts +4 -0
- package/dist/types/utils/unit.d.ts.map +1 -0
- package/dist/types/view.d.ts +129 -0
- package/dist/types/view.d.ts.map +1 -0
- package/package.json +14 -6
- package/.eslintignore +0 -1
- package/.eslintrc.yaml +0 -34
- package/.github/workflows/ci.yaml +0 -88
- package/.github/workflows/deployer.yaml +0 -19
- package/.nvmrc +0 -1
- package/.prettierignore +0 -6
- package/.prettierrc +0 -7
- package/src/.graphclient/index.ts +0 -1695
- package/src/.graphclient/schema.graphql +0 -1116
- package/src/.graphclient/sources/clober-v2/introspectionSchema.ts +0 -14481
- package/src/.graphclient/sources/clober-v2/schema.graphql +0 -1116
- package/src/.graphclient/sources/clober-v2/types.ts +0 -1133
- package/src/.graphclientrc.yml +0 -12
- package/src/abis/core/controller-abi.ts +0 -985
- package/src/abis/core/params-abi.ts +0 -59
- package/src/apis/currency.ts +0 -92
- package/src/apis/graphql/books.graphql +0 -25
- package/src/apis/graphql/open-order.graphql +0 -29
- package/src/apis/graphql/open-orders.graphql +0 -29
- package/src/apis/market.ts +0 -85
- package/src/apis/open-order.ts +0 -145
- package/src/approval.ts +0 -82
- package/src/call.ts +0 -705
- package/src/constants/action.ts +0 -9
- package/src/constants/addresses.ts +0 -17
- package/src/constants/chain.ts +0 -12
- package/src/constants/currency.ts +0 -15
- package/src/constants/fee.ts +0 -4
- package/src/constants/price.ts +0 -3
- package/src/constants/subgraph-url.ts +0 -8
- package/src/index.ts +0 -5
- package/src/model/book.ts +0 -166
- package/src/model/currency.ts +0 -6
- package/src/model/depth.ts +0 -11
- package/src/model/fee-policy.ts +0 -51
- package/src/model/market.ts +0 -320
- package/src/model/open-order.ts +0 -16
- package/src/signature.ts +0 -196
- package/src/type.ts +0 -38
- package/src/utils/approval.ts +0 -48
- package/src/utils/build-transaction.ts +0 -39
- package/src/utils/decimals.ts +0 -22
- package/src/utils/market.ts +0 -74
- package/src/utils/math.ts +0 -117
- package/src/utils/prices.ts +0 -29
- package/src/utils/tick.ts +0 -104
- package/src/utils/time.ts +0 -6
- package/src/utils/unit.ts +0 -43
- package/src/view.ts +0 -258
- package/test/book-id.test.ts +0 -101
- package/test/fee-policy.test.ts +0 -228
- package/test/get-expected-input.test.ts +0 -206
- package/test/get-expected-output.test.ts +0 -206
- package/test/limit-order.test.ts +0 -279
- package/test/market-order.test.ts +0 -245
- package/test/market.test.ts +0 -68
- package/test/math.test.ts +0 -91
- package/test/open-order.test.ts +0 -112
- package/test/open.test.ts +0 -15
- package/test/tick.test.ts +0 -230
- package/test/tsconfig.json +0 -12
- package/test/utils/chain.ts +0 -12
- package/test/utils/constants.ts +0 -25
- package/test/utils/currency.ts +0 -44
- package/test/utils/depth.ts +0 -148
- package/test/utils/test-chain.ts +0 -26
- package/test/vitest.config.ts +0 -15
- package/tsconfig.base.json +0 -37
- package/tsconfig.build.json +0 -9
- package/tsconfig.json +0 -9
|
@@ -1,1133 +0,0 @@
|
|
|
1
|
-
// @ts-nocheck
|
|
2
|
-
|
|
3
|
-
import { InContextSdkMethod } from '@graphql-mesh/types';
|
|
4
|
-
import { MeshContext } from '@graphql-mesh/runtime';
|
|
5
|
-
|
|
6
|
-
export namespace CloberV2Types {
|
|
7
|
-
export type Maybe<T> = T | null;
|
|
8
|
-
export type InputMaybe<T> = Maybe<T>;
|
|
9
|
-
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
10
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
11
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
12
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
13
|
-
export type Scalars = {
|
|
14
|
-
ID: string;
|
|
15
|
-
String: string;
|
|
16
|
-
Boolean: boolean;
|
|
17
|
-
Int: number;
|
|
18
|
-
Float: number;
|
|
19
|
-
BigDecimal: any;
|
|
20
|
-
BigInt: any;
|
|
21
|
-
Bytes: any;
|
|
22
|
-
Int8: any;
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
export type BlockChangedFilter = {
|
|
26
|
-
number_gte: Scalars['Int'];
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export type Block_height = {
|
|
30
|
-
hash?: InputMaybe<Scalars['Bytes']>;
|
|
31
|
-
number?: InputMaybe<Scalars['Int']>;
|
|
32
|
-
number_gte?: InputMaybe<Scalars['Int']>;
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export type Book = {
|
|
36
|
-
id: Scalars['ID'];
|
|
37
|
-
base: Token;
|
|
38
|
-
quote: Token;
|
|
39
|
-
unit: Scalars['BigInt'];
|
|
40
|
-
makerPolicy: Scalars['BigInt'];
|
|
41
|
-
takerPolicy: Scalars['BigInt'];
|
|
42
|
-
hooks: Scalars['String'];
|
|
43
|
-
depths: Array<Depth>;
|
|
44
|
-
openOrders: Array<OpenOrder>;
|
|
45
|
-
latestTick: Scalars['BigInt'];
|
|
46
|
-
latestPrice: Scalars['BigInt'];
|
|
47
|
-
latestTimestamp: Scalars['BigInt'];
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
export type BookdepthsArgs = {
|
|
52
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
53
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
54
|
-
orderBy?: InputMaybe<Depth_orderBy>;
|
|
55
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
56
|
-
where?: InputMaybe<Depth_filter>;
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
export type BookopenOrdersArgs = {
|
|
61
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
62
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
63
|
-
orderBy?: InputMaybe<OpenOrder_orderBy>;
|
|
64
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
65
|
-
where?: InputMaybe<OpenOrder_filter>;
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
export type Book_filter = {
|
|
69
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
70
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
71
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
72
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
73
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
74
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
75
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
76
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
77
|
-
base?: InputMaybe<Scalars['String']>;
|
|
78
|
-
base_not?: InputMaybe<Scalars['String']>;
|
|
79
|
-
base_gt?: InputMaybe<Scalars['String']>;
|
|
80
|
-
base_lt?: InputMaybe<Scalars['String']>;
|
|
81
|
-
base_gte?: InputMaybe<Scalars['String']>;
|
|
82
|
-
base_lte?: InputMaybe<Scalars['String']>;
|
|
83
|
-
base_in?: InputMaybe<Array<Scalars['String']>>;
|
|
84
|
-
base_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
85
|
-
base_contains?: InputMaybe<Scalars['String']>;
|
|
86
|
-
base_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
87
|
-
base_not_contains?: InputMaybe<Scalars['String']>;
|
|
88
|
-
base_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
89
|
-
base_starts_with?: InputMaybe<Scalars['String']>;
|
|
90
|
-
base_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
91
|
-
base_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
92
|
-
base_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
93
|
-
base_ends_with?: InputMaybe<Scalars['String']>;
|
|
94
|
-
base_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
95
|
-
base_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
96
|
-
base_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
97
|
-
base_?: InputMaybe<Token_filter>;
|
|
98
|
-
quote?: InputMaybe<Scalars['String']>;
|
|
99
|
-
quote_not?: InputMaybe<Scalars['String']>;
|
|
100
|
-
quote_gt?: InputMaybe<Scalars['String']>;
|
|
101
|
-
quote_lt?: InputMaybe<Scalars['String']>;
|
|
102
|
-
quote_gte?: InputMaybe<Scalars['String']>;
|
|
103
|
-
quote_lte?: InputMaybe<Scalars['String']>;
|
|
104
|
-
quote_in?: InputMaybe<Array<Scalars['String']>>;
|
|
105
|
-
quote_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
106
|
-
quote_contains?: InputMaybe<Scalars['String']>;
|
|
107
|
-
quote_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
108
|
-
quote_not_contains?: InputMaybe<Scalars['String']>;
|
|
109
|
-
quote_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
110
|
-
quote_starts_with?: InputMaybe<Scalars['String']>;
|
|
111
|
-
quote_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
112
|
-
quote_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
113
|
-
quote_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
114
|
-
quote_ends_with?: InputMaybe<Scalars['String']>;
|
|
115
|
-
quote_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
116
|
-
quote_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
117
|
-
quote_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
118
|
-
quote_?: InputMaybe<Token_filter>;
|
|
119
|
-
unit?: InputMaybe<Scalars['BigInt']>;
|
|
120
|
-
unit_not?: InputMaybe<Scalars['BigInt']>;
|
|
121
|
-
unit_gt?: InputMaybe<Scalars['BigInt']>;
|
|
122
|
-
unit_lt?: InputMaybe<Scalars['BigInt']>;
|
|
123
|
-
unit_gte?: InputMaybe<Scalars['BigInt']>;
|
|
124
|
-
unit_lte?: InputMaybe<Scalars['BigInt']>;
|
|
125
|
-
unit_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
126
|
-
unit_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
127
|
-
makerPolicy?: InputMaybe<Scalars['BigInt']>;
|
|
128
|
-
makerPolicy_not?: InputMaybe<Scalars['BigInt']>;
|
|
129
|
-
makerPolicy_gt?: InputMaybe<Scalars['BigInt']>;
|
|
130
|
-
makerPolicy_lt?: InputMaybe<Scalars['BigInt']>;
|
|
131
|
-
makerPolicy_gte?: InputMaybe<Scalars['BigInt']>;
|
|
132
|
-
makerPolicy_lte?: InputMaybe<Scalars['BigInt']>;
|
|
133
|
-
makerPolicy_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
134
|
-
makerPolicy_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
135
|
-
takerPolicy?: InputMaybe<Scalars['BigInt']>;
|
|
136
|
-
takerPolicy_not?: InputMaybe<Scalars['BigInt']>;
|
|
137
|
-
takerPolicy_gt?: InputMaybe<Scalars['BigInt']>;
|
|
138
|
-
takerPolicy_lt?: InputMaybe<Scalars['BigInt']>;
|
|
139
|
-
takerPolicy_gte?: InputMaybe<Scalars['BigInt']>;
|
|
140
|
-
takerPolicy_lte?: InputMaybe<Scalars['BigInt']>;
|
|
141
|
-
takerPolicy_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
142
|
-
takerPolicy_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
143
|
-
hooks?: InputMaybe<Scalars['String']>;
|
|
144
|
-
hooks_not?: InputMaybe<Scalars['String']>;
|
|
145
|
-
hooks_gt?: InputMaybe<Scalars['String']>;
|
|
146
|
-
hooks_lt?: InputMaybe<Scalars['String']>;
|
|
147
|
-
hooks_gte?: InputMaybe<Scalars['String']>;
|
|
148
|
-
hooks_lte?: InputMaybe<Scalars['String']>;
|
|
149
|
-
hooks_in?: InputMaybe<Array<Scalars['String']>>;
|
|
150
|
-
hooks_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
151
|
-
hooks_contains?: InputMaybe<Scalars['String']>;
|
|
152
|
-
hooks_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
153
|
-
hooks_not_contains?: InputMaybe<Scalars['String']>;
|
|
154
|
-
hooks_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
155
|
-
hooks_starts_with?: InputMaybe<Scalars['String']>;
|
|
156
|
-
hooks_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
157
|
-
hooks_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
158
|
-
hooks_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
159
|
-
hooks_ends_with?: InputMaybe<Scalars['String']>;
|
|
160
|
-
hooks_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
161
|
-
hooks_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
162
|
-
hooks_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
163
|
-
depths_?: InputMaybe<Depth_filter>;
|
|
164
|
-
openOrders_?: InputMaybe<OpenOrder_filter>;
|
|
165
|
-
latestTick?: InputMaybe<Scalars['BigInt']>;
|
|
166
|
-
latestTick_not?: InputMaybe<Scalars['BigInt']>;
|
|
167
|
-
latestTick_gt?: InputMaybe<Scalars['BigInt']>;
|
|
168
|
-
latestTick_lt?: InputMaybe<Scalars['BigInt']>;
|
|
169
|
-
latestTick_gte?: InputMaybe<Scalars['BigInt']>;
|
|
170
|
-
latestTick_lte?: InputMaybe<Scalars['BigInt']>;
|
|
171
|
-
latestTick_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
172
|
-
latestTick_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
173
|
-
latestPrice?: InputMaybe<Scalars['BigInt']>;
|
|
174
|
-
latestPrice_not?: InputMaybe<Scalars['BigInt']>;
|
|
175
|
-
latestPrice_gt?: InputMaybe<Scalars['BigInt']>;
|
|
176
|
-
latestPrice_lt?: InputMaybe<Scalars['BigInt']>;
|
|
177
|
-
latestPrice_gte?: InputMaybe<Scalars['BigInt']>;
|
|
178
|
-
latestPrice_lte?: InputMaybe<Scalars['BigInt']>;
|
|
179
|
-
latestPrice_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
180
|
-
latestPrice_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
181
|
-
latestTimestamp?: InputMaybe<Scalars['BigInt']>;
|
|
182
|
-
latestTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
183
|
-
latestTimestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
184
|
-
latestTimestamp_lt?: InputMaybe<Scalars['BigInt']>;
|
|
185
|
-
latestTimestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
186
|
-
latestTimestamp_lte?: InputMaybe<Scalars['BigInt']>;
|
|
187
|
-
latestTimestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
188
|
-
latestTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
189
|
-
/** Filter for the block changed event. */
|
|
190
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
191
|
-
and?: InputMaybe<Array<InputMaybe<Book_filter>>>;
|
|
192
|
-
or?: InputMaybe<Array<InputMaybe<Book_filter>>>;
|
|
193
|
-
};
|
|
194
|
-
|
|
195
|
-
export type Book_orderBy =
|
|
196
|
-
| 'id'
|
|
197
|
-
| 'base'
|
|
198
|
-
| 'base__id'
|
|
199
|
-
| 'base__symbol'
|
|
200
|
-
| 'base__name'
|
|
201
|
-
| 'base__decimals'
|
|
202
|
-
| 'quote'
|
|
203
|
-
| 'quote__id'
|
|
204
|
-
| 'quote__symbol'
|
|
205
|
-
| 'quote__name'
|
|
206
|
-
| 'quote__decimals'
|
|
207
|
-
| 'unit'
|
|
208
|
-
| 'makerPolicy'
|
|
209
|
-
| 'takerPolicy'
|
|
210
|
-
| 'hooks'
|
|
211
|
-
| 'depths'
|
|
212
|
-
| 'openOrders'
|
|
213
|
-
| 'latestTick'
|
|
214
|
-
| 'latestPrice'
|
|
215
|
-
| 'latestTimestamp';
|
|
216
|
-
|
|
217
|
-
export type ChartLog = {
|
|
218
|
-
id: Scalars['ID'];
|
|
219
|
-
marketCode: Scalars['String'];
|
|
220
|
-
intervalType: Scalars['String'];
|
|
221
|
-
timestamp: Scalars['BigInt'];
|
|
222
|
-
open: Scalars['BigDecimal'];
|
|
223
|
-
high: Scalars['BigDecimal'];
|
|
224
|
-
low: Scalars['BigDecimal'];
|
|
225
|
-
close: Scalars['BigDecimal'];
|
|
226
|
-
baseVolume: Scalars['BigDecimal'];
|
|
227
|
-
};
|
|
228
|
-
|
|
229
|
-
export type ChartLog_filter = {
|
|
230
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
231
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
232
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
233
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
234
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
235
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
236
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
237
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
238
|
-
marketCode?: InputMaybe<Scalars['String']>;
|
|
239
|
-
marketCode_not?: InputMaybe<Scalars['String']>;
|
|
240
|
-
marketCode_gt?: InputMaybe<Scalars['String']>;
|
|
241
|
-
marketCode_lt?: InputMaybe<Scalars['String']>;
|
|
242
|
-
marketCode_gte?: InputMaybe<Scalars['String']>;
|
|
243
|
-
marketCode_lte?: InputMaybe<Scalars['String']>;
|
|
244
|
-
marketCode_in?: InputMaybe<Array<Scalars['String']>>;
|
|
245
|
-
marketCode_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
246
|
-
marketCode_contains?: InputMaybe<Scalars['String']>;
|
|
247
|
-
marketCode_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
248
|
-
marketCode_not_contains?: InputMaybe<Scalars['String']>;
|
|
249
|
-
marketCode_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
250
|
-
marketCode_starts_with?: InputMaybe<Scalars['String']>;
|
|
251
|
-
marketCode_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
252
|
-
marketCode_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
253
|
-
marketCode_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
254
|
-
marketCode_ends_with?: InputMaybe<Scalars['String']>;
|
|
255
|
-
marketCode_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
256
|
-
marketCode_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
257
|
-
marketCode_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
258
|
-
intervalType?: InputMaybe<Scalars['String']>;
|
|
259
|
-
intervalType_not?: InputMaybe<Scalars['String']>;
|
|
260
|
-
intervalType_gt?: InputMaybe<Scalars['String']>;
|
|
261
|
-
intervalType_lt?: InputMaybe<Scalars['String']>;
|
|
262
|
-
intervalType_gte?: InputMaybe<Scalars['String']>;
|
|
263
|
-
intervalType_lte?: InputMaybe<Scalars['String']>;
|
|
264
|
-
intervalType_in?: InputMaybe<Array<Scalars['String']>>;
|
|
265
|
-
intervalType_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
266
|
-
intervalType_contains?: InputMaybe<Scalars['String']>;
|
|
267
|
-
intervalType_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
268
|
-
intervalType_not_contains?: InputMaybe<Scalars['String']>;
|
|
269
|
-
intervalType_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
270
|
-
intervalType_starts_with?: InputMaybe<Scalars['String']>;
|
|
271
|
-
intervalType_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
272
|
-
intervalType_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
273
|
-
intervalType_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
274
|
-
intervalType_ends_with?: InputMaybe<Scalars['String']>;
|
|
275
|
-
intervalType_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
276
|
-
intervalType_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
277
|
-
intervalType_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
278
|
-
timestamp?: InputMaybe<Scalars['BigInt']>;
|
|
279
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
280
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']>;
|
|
281
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']>;
|
|
282
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']>;
|
|
283
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']>;
|
|
284
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
285
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
286
|
-
open?: InputMaybe<Scalars['BigDecimal']>;
|
|
287
|
-
open_not?: InputMaybe<Scalars['BigDecimal']>;
|
|
288
|
-
open_gt?: InputMaybe<Scalars['BigDecimal']>;
|
|
289
|
-
open_lt?: InputMaybe<Scalars['BigDecimal']>;
|
|
290
|
-
open_gte?: InputMaybe<Scalars['BigDecimal']>;
|
|
291
|
-
open_lte?: InputMaybe<Scalars['BigDecimal']>;
|
|
292
|
-
open_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
293
|
-
open_not_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
294
|
-
high?: InputMaybe<Scalars['BigDecimal']>;
|
|
295
|
-
high_not?: InputMaybe<Scalars['BigDecimal']>;
|
|
296
|
-
high_gt?: InputMaybe<Scalars['BigDecimal']>;
|
|
297
|
-
high_lt?: InputMaybe<Scalars['BigDecimal']>;
|
|
298
|
-
high_gte?: InputMaybe<Scalars['BigDecimal']>;
|
|
299
|
-
high_lte?: InputMaybe<Scalars['BigDecimal']>;
|
|
300
|
-
high_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
301
|
-
high_not_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
302
|
-
low?: InputMaybe<Scalars['BigDecimal']>;
|
|
303
|
-
low_not?: InputMaybe<Scalars['BigDecimal']>;
|
|
304
|
-
low_gt?: InputMaybe<Scalars['BigDecimal']>;
|
|
305
|
-
low_lt?: InputMaybe<Scalars['BigDecimal']>;
|
|
306
|
-
low_gte?: InputMaybe<Scalars['BigDecimal']>;
|
|
307
|
-
low_lte?: InputMaybe<Scalars['BigDecimal']>;
|
|
308
|
-
low_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
309
|
-
low_not_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
310
|
-
close?: InputMaybe<Scalars['BigDecimal']>;
|
|
311
|
-
close_not?: InputMaybe<Scalars['BigDecimal']>;
|
|
312
|
-
close_gt?: InputMaybe<Scalars['BigDecimal']>;
|
|
313
|
-
close_lt?: InputMaybe<Scalars['BigDecimal']>;
|
|
314
|
-
close_gte?: InputMaybe<Scalars['BigDecimal']>;
|
|
315
|
-
close_lte?: InputMaybe<Scalars['BigDecimal']>;
|
|
316
|
-
close_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
317
|
-
close_not_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
318
|
-
baseVolume?: InputMaybe<Scalars['BigDecimal']>;
|
|
319
|
-
baseVolume_not?: InputMaybe<Scalars['BigDecimal']>;
|
|
320
|
-
baseVolume_gt?: InputMaybe<Scalars['BigDecimal']>;
|
|
321
|
-
baseVolume_lt?: InputMaybe<Scalars['BigDecimal']>;
|
|
322
|
-
baseVolume_gte?: InputMaybe<Scalars['BigDecimal']>;
|
|
323
|
-
baseVolume_lte?: InputMaybe<Scalars['BigDecimal']>;
|
|
324
|
-
baseVolume_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
325
|
-
baseVolume_not_in?: InputMaybe<Array<Scalars['BigDecimal']>>;
|
|
326
|
-
/** Filter for the block changed event. */
|
|
327
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
328
|
-
and?: InputMaybe<Array<InputMaybe<ChartLog_filter>>>;
|
|
329
|
-
or?: InputMaybe<Array<InputMaybe<ChartLog_filter>>>;
|
|
330
|
-
};
|
|
331
|
-
|
|
332
|
-
export type ChartLog_orderBy =
|
|
333
|
-
| 'id'
|
|
334
|
-
| 'marketCode'
|
|
335
|
-
| 'intervalType'
|
|
336
|
-
| 'timestamp'
|
|
337
|
-
| 'open'
|
|
338
|
-
| 'high'
|
|
339
|
-
| 'low'
|
|
340
|
-
| 'close'
|
|
341
|
-
| 'baseVolume';
|
|
342
|
-
|
|
343
|
-
export type Depth = {
|
|
344
|
-
id: Scalars['ID'];
|
|
345
|
-
book: Book;
|
|
346
|
-
tick: Scalars['BigInt'];
|
|
347
|
-
price: Scalars['BigInt'];
|
|
348
|
-
rawAmount: Scalars['BigInt'];
|
|
349
|
-
baseAmount: Scalars['BigInt'];
|
|
350
|
-
quoteAmount: Scalars['BigInt'];
|
|
351
|
-
latestTakenOrderIndex: Scalars['BigInt'];
|
|
352
|
-
};
|
|
353
|
-
|
|
354
|
-
export type Depth_filter = {
|
|
355
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
356
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
357
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
358
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
359
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
360
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
361
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
362
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
363
|
-
book?: InputMaybe<Scalars['String']>;
|
|
364
|
-
book_not?: InputMaybe<Scalars['String']>;
|
|
365
|
-
book_gt?: InputMaybe<Scalars['String']>;
|
|
366
|
-
book_lt?: InputMaybe<Scalars['String']>;
|
|
367
|
-
book_gte?: InputMaybe<Scalars['String']>;
|
|
368
|
-
book_lte?: InputMaybe<Scalars['String']>;
|
|
369
|
-
book_in?: InputMaybe<Array<Scalars['String']>>;
|
|
370
|
-
book_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
371
|
-
book_contains?: InputMaybe<Scalars['String']>;
|
|
372
|
-
book_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
373
|
-
book_not_contains?: InputMaybe<Scalars['String']>;
|
|
374
|
-
book_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
375
|
-
book_starts_with?: InputMaybe<Scalars['String']>;
|
|
376
|
-
book_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
377
|
-
book_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
378
|
-
book_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
379
|
-
book_ends_with?: InputMaybe<Scalars['String']>;
|
|
380
|
-
book_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
381
|
-
book_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
382
|
-
book_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
383
|
-
book_?: InputMaybe<Book_filter>;
|
|
384
|
-
tick?: InputMaybe<Scalars['BigInt']>;
|
|
385
|
-
tick_not?: InputMaybe<Scalars['BigInt']>;
|
|
386
|
-
tick_gt?: InputMaybe<Scalars['BigInt']>;
|
|
387
|
-
tick_lt?: InputMaybe<Scalars['BigInt']>;
|
|
388
|
-
tick_gte?: InputMaybe<Scalars['BigInt']>;
|
|
389
|
-
tick_lte?: InputMaybe<Scalars['BigInt']>;
|
|
390
|
-
tick_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
391
|
-
tick_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
392
|
-
price?: InputMaybe<Scalars['BigInt']>;
|
|
393
|
-
price_not?: InputMaybe<Scalars['BigInt']>;
|
|
394
|
-
price_gt?: InputMaybe<Scalars['BigInt']>;
|
|
395
|
-
price_lt?: InputMaybe<Scalars['BigInt']>;
|
|
396
|
-
price_gte?: InputMaybe<Scalars['BigInt']>;
|
|
397
|
-
price_lte?: InputMaybe<Scalars['BigInt']>;
|
|
398
|
-
price_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
399
|
-
price_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
400
|
-
rawAmount?: InputMaybe<Scalars['BigInt']>;
|
|
401
|
-
rawAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
402
|
-
rawAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
403
|
-
rawAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
404
|
-
rawAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
405
|
-
rawAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
406
|
-
rawAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
407
|
-
rawAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
408
|
-
baseAmount?: InputMaybe<Scalars['BigInt']>;
|
|
409
|
-
baseAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
410
|
-
baseAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
411
|
-
baseAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
412
|
-
baseAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
413
|
-
baseAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
414
|
-
baseAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
415
|
-
baseAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
416
|
-
quoteAmount?: InputMaybe<Scalars['BigInt']>;
|
|
417
|
-
quoteAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
418
|
-
quoteAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
419
|
-
quoteAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
420
|
-
quoteAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
421
|
-
quoteAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
422
|
-
quoteAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
423
|
-
quoteAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
424
|
-
latestTakenOrderIndex?: InputMaybe<Scalars['BigInt']>;
|
|
425
|
-
latestTakenOrderIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
426
|
-
latestTakenOrderIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
427
|
-
latestTakenOrderIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
428
|
-
latestTakenOrderIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
429
|
-
latestTakenOrderIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
430
|
-
latestTakenOrderIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
431
|
-
latestTakenOrderIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
432
|
-
/** Filter for the block changed event. */
|
|
433
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
434
|
-
and?: InputMaybe<Array<InputMaybe<Depth_filter>>>;
|
|
435
|
-
or?: InputMaybe<Array<InputMaybe<Depth_filter>>>;
|
|
436
|
-
};
|
|
437
|
-
|
|
438
|
-
export type Depth_orderBy =
|
|
439
|
-
| 'id'
|
|
440
|
-
| 'book'
|
|
441
|
-
| 'book__id'
|
|
442
|
-
| 'book__unit'
|
|
443
|
-
| 'book__makerPolicy'
|
|
444
|
-
| 'book__takerPolicy'
|
|
445
|
-
| 'book__hooks'
|
|
446
|
-
| 'book__latestTick'
|
|
447
|
-
| 'book__latestPrice'
|
|
448
|
-
| 'book__latestTimestamp'
|
|
449
|
-
| 'tick'
|
|
450
|
-
| 'price'
|
|
451
|
-
| 'rawAmount'
|
|
452
|
-
| 'baseAmount'
|
|
453
|
-
| 'quoteAmount'
|
|
454
|
-
| 'latestTakenOrderIndex';
|
|
455
|
-
|
|
456
|
-
export type OpenOrder = {
|
|
457
|
-
id: Scalars['ID'];
|
|
458
|
-
book: Book;
|
|
459
|
-
tick: Scalars['BigInt'];
|
|
460
|
-
orderIndex: Scalars['BigInt'];
|
|
461
|
-
price: Scalars['BigInt'];
|
|
462
|
-
user: Scalars['String'];
|
|
463
|
-
txHash: Scalars['String'];
|
|
464
|
-
createdAt: Scalars['BigInt'];
|
|
465
|
-
rawAmount: Scalars['BigInt'];
|
|
466
|
-
baseAmount: Scalars['BigInt'];
|
|
467
|
-
quoteAmount: Scalars['BigInt'];
|
|
468
|
-
rawFilledAmount: Scalars['BigInt'];
|
|
469
|
-
baseFilledAmount: Scalars['BigInt'];
|
|
470
|
-
quoteFilledAmount: Scalars['BigInt'];
|
|
471
|
-
rawClaimedAmount: Scalars['BigInt'];
|
|
472
|
-
baseClaimedAmount: Scalars['BigInt'];
|
|
473
|
-
quoteClaimedAmount: Scalars['BigInt'];
|
|
474
|
-
rawClaimableAmount: Scalars['BigInt'];
|
|
475
|
-
baseClaimableAmount: Scalars['BigInt'];
|
|
476
|
-
quoteClaimableAmount: Scalars['BigInt'];
|
|
477
|
-
rawOpenAmount: Scalars['BigInt'];
|
|
478
|
-
baseOpenAmount: Scalars['BigInt'];
|
|
479
|
-
quoteOpenAmount: Scalars['BigInt'];
|
|
480
|
-
};
|
|
481
|
-
|
|
482
|
-
export type OpenOrder_filter = {
|
|
483
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
484
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
485
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
486
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
487
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
488
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
489
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
490
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
491
|
-
book?: InputMaybe<Scalars['String']>;
|
|
492
|
-
book_not?: InputMaybe<Scalars['String']>;
|
|
493
|
-
book_gt?: InputMaybe<Scalars['String']>;
|
|
494
|
-
book_lt?: InputMaybe<Scalars['String']>;
|
|
495
|
-
book_gte?: InputMaybe<Scalars['String']>;
|
|
496
|
-
book_lte?: InputMaybe<Scalars['String']>;
|
|
497
|
-
book_in?: InputMaybe<Array<Scalars['String']>>;
|
|
498
|
-
book_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
499
|
-
book_contains?: InputMaybe<Scalars['String']>;
|
|
500
|
-
book_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
501
|
-
book_not_contains?: InputMaybe<Scalars['String']>;
|
|
502
|
-
book_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
503
|
-
book_starts_with?: InputMaybe<Scalars['String']>;
|
|
504
|
-
book_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
505
|
-
book_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
506
|
-
book_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
507
|
-
book_ends_with?: InputMaybe<Scalars['String']>;
|
|
508
|
-
book_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
509
|
-
book_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
510
|
-
book_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
511
|
-
book_?: InputMaybe<Book_filter>;
|
|
512
|
-
tick?: InputMaybe<Scalars['BigInt']>;
|
|
513
|
-
tick_not?: InputMaybe<Scalars['BigInt']>;
|
|
514
|
-
tick_gt?: InputMaybe<Scalars['BigInt']>;
|
|
515
|
-
tick_lt?: InputMaybe<Scalars['BigInt']>;
|
|
516
|
-
tick_gte?: InputMaybe<Scalars['BigInt']>;
|
|
517
|
-
tick_lte?: InputMaybe<Scalars['BigInt']>;
|
|
518
|
-
tick_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
519
|
-
tick_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
520
|
-
orderIndex?: InputMaybe<Scalars['BigInt']>;
|
|
521
|
-
orderIndex_not?: InputMaybe<Scalars['BigInt']>;
|
|
522
|
-
orderIndex_gt?: InputMaybe<Scalars['BigInt']>;
|
|
523
|
-
orderIndex_lt?: InputMaybe<Scalars['BigInt']>;
|
|
524
|
-
orderIndex_gte?: InputMaybe<Scalars['BigInt']>;
|
|
525
|
-
orderIndex_lte?: InputMaybe<Scalars['BigInt']>;
|
|
526
|
-
orderIndex_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
527
|
-
orderIndex_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
528
|
-
price?: InputMaybe<Scalars['BigInt']>;
|
|
529
|
-
price_not?: InputMaybe<Scalars['BigInt']>;
|
|
530
|
-
price_gt?: InputMaybe<Scalars['BigInt']>;
|
|
531
|
-
price_lt?: InputMaybe<Scalars['BigInt']>;
|
|
532
|
-
price_gte?: InputMaybe<Scalars['BigInt']>;
|
|
533
|
-
price_lte?: InputMaybe<Scalars['BigInt']>;
|
|
534
|
-
price_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
535
|
-
price_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
536
|
-
user?: InputMaybe<Scalars['String']>;
|
|
537
|
-
user_not?: InputMaybe<Scalars['String']>;
|
|
538
|
-
user_gt?: InputMaybe<Scalars['String']>;
|
|
539
|
-
user_lt?: InputMaybe<Scalars['String']>;
|
|
540
|
-
user_gte?: InputMaybe<Scalars['String']>;
|
|
541
|
-
user_lte?: InputMaybe<Scalars['String']>;
|
|
542
|
-
user_in?: InputMaybe<Array<Scalars['String']>>;
|
|
543
|
-
user_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
544
|
-
user_contains?: InputMaybe<Scalars['String']>;
|
|
545
|
-
user_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
546
|
-
user_not_contains?: InputMaybe<Scalars['String']>;
|
|
547
|
-
user_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
548
|
-
user_starts_with?: InputMaybe<Scalars['String']>;
|
|
549
|
-
user_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
550
|
-
user_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
551
|
-
user_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
552
|
-
user_ends_with?: InputMaybe<Scalars['String']>;
|
|
553
|
-
user_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
554
|
-
user_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
555
|
-
user_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
556
|
-
txHash?: InputMaybe<Scalars['String']>;
|
|
557
|
-
txHash_not?: InputMaybe<Scalars['String']>;
|
|
558
|
-
txHash_gt?: InputMaybe<Scalars['String']>;
|
|
559
|
-
txHash_lt?: InputMaybe<Scalars['String']>;
|
|
560
|
-
txHash_gte?: InputMaybe<Scalars['String']>;
|
|
561
|
-
txHash_lte?: InputMaybe<Scalars['String']>;
|
|
562
|
-
txHash_in?: InputMaybe<Array<Scalars['String']>>;
|
|
563
|
-
txHash_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
564
|
-
txHash_contains?: InputMaybe<Scalars['String']>;
|
|
565
|
-
txHash_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
566
|
-
txHash_not_contains?: InputMaybe<Scalars['String']>;
|
|
567
|
-
txHash_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
568
|
-
txHash_starts_with?: InputMaybe<Scalars['String']>;
|
|
569
|
-
txHash_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
570
|
-
txHash_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
571
|
-
txHash_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
572
|
-
txHash_ends_with?: InputMaybe<Scalars['String']>;
|
|
573
|
-
txHash_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
574
|
-
txHash_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
575
|
-
txHash_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
576
|
-
createdAt?: InputMaybe<Scalars['BigInt']>;
|
|
577
|
-
createdAt_not?: InputMaybe<Scalars['BigInt']>;
|
|
578
|
-
createdAt_gt?: InputMaybe<Scalars['BigInt']>;
|
|
579
|
-
createdAt_lt?: InputMaybe<Scalars['BigInt']>;
|
|
580
|
-
createdAt_gte?: InputMaybe<Scalars['BigInt']>;
|
|
581
|
-
createdAt_lte?: InputMaybe<Scalars['BigInt']>;
|
|
582
|
-
createdAt_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
583
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
584
|
-
rawAmount?: InputMaybe<Scalars['BigInt']>;
|
|
585
|
-
rawAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
586
|
-
rawAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
587
|
-
rawAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
588
|
-
rawAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
589
|
-
rawAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
590
|
-
rawAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
591
|
-
rawAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
592
|
-
baseAmount?: InputMaybe<Scalars['BigInt']>;
|
|
593
|
-
baseAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
594
|
-
baseAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
595
|
-
baseAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
596
|
-
baseAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
597
|
-
baseAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
598
|
-
baseAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
599
|
-
baseAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
600
|
-
quoteAmount?: InputMaybe<Scalars['BigInt']>;
|
|
601
|
-
quoteAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
602
|
-
quoteAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
603
|
-
quoteAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
604
|
-
quoteAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
605
|
-
quoteAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
606
|
-
quoteAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
607
|
-
quoteAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
608
|
-
rawFilledAmount?: InputMaybe<Scalars['BigInt']>;
|
|
609
|
-
rawFilledAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
610
|
-
rawFilledAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
611
|
-
rawFilledAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
612
|
-
rawFilledAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
613
|
-
rawFilledAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
614
|
-
rawFilledAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
615
|
-
rawFilledAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
616
|
-
baseFilledAmount?: InputMaybe<Scalars['BigInt']>;
|
|
617
|
-
baseFilledAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
618
|
-
baseFilledAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
619
|
-
baseFilledAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
620
|
-
baseFilledAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
621
|
-
baseFilledAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
622
|
-
baseFilledAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
623
|
-
baseFilledAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
624
|
-
quoteFilledAmount?: InputMaybe<Scalars['BigInt']>;
|
|
625
|
-
quoteFilledAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
626
|
-
quoteFilledAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
627
|
-
quoteFilledAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
628
|
-
quoteFilledAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
629
|
-
quoteFilledAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
630
|
-
quoteFilledAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
631
|
-
quoteFilledAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
632
|
-
rawClaimedAmount?: InputMaybe<Scalars['BigInt']>;
|
|
633
|
-
rawClaimedAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
634
|
-
rawClaimedAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
635
|
-
rawClaimedAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
636
|
-
rawClaimedAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
637
|
-
rawClaimedAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
638
|
-
rawClaimedAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
639
|
-
rawClaimedAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
640
|
-
baseClaimedAmount?: InputMaybe<Scalars['BigInt']>;
|
|
641
|
-
baseClaimedAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
642
|
-
baseClaimedAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
643
|
-
baseClaimedAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
644
|
-
baseClaimedAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
645
|
-
baseClaimedAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
646
|
-
baseClaimedAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
647
|
-
baseClaimedAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
648
|
-
quoteClaimedAmount?: InputMaybe<Scalars['BigInt']>;
|
|
649
|
-
quoteClaimedAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
650
|
-
quoteClaimedAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
651
|
-
quoteClaimedAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
652
|
-
quoteClaimedAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
653
|
-
quoteClaimedAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
654
|
-
quoteClaimedAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
655
|
-
quoteClaimedAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
656
|
-
rawClaimableAmount?: InputMaybe<Scalars['BigInt']>;
|
|
657
|
-
rawClaimableAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
658
|
-
rawClaimableAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
659
|
-
rawClaimableAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
660
|
-
rawClaimableAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
661
|
-
rawClaimableAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
662
|
-
rawClaimableAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
663
|
-
rawClaimableAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
664
|
-
baseClaimableAmount?: InputMaybe<Scalars['BigInt']>;
|
|
665
|
-
baseClaimableAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
666
|
-
baseClaimableAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
667
|
-
baseClaimableAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
668
|
-
baseClaimableAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
669
|
-
baseClaimableAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
670
|
-
baseClaimableAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
671
|
-
baseClaimableAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
672
|
-
quoteClaimableAmount?: InputMaybe<Scalars['BigInt']>;
|
|
673
|
-
quoteClaimableAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
674
|
-
quoteClaimableAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
675
|
-
quoteClaimableAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
676
|
-
quoteClaimableAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
677
|
-
quoteClaimableAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
678
|
-
quoteClaimableAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
679
|
-
quoteClaimableAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
680
|
-
rawOpenAmount?: InputMaybe<Scalars['BigInt']>;
|
|
681
|
-
rawOpenAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
682
|
-
rawOpenAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
683
|
-
rawOpenAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
684
|
-
rawOpenAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
685
|
-
rawOpenAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
686
|
-
rawOpenAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
687
|
-
rawOpenAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
688
|
-
baseOpenAmount?: InputMaybe<Scalars['BigInt']>;
|
|
689
|
-
baseOpenAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
690
|
-
baseOpenAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
691
|
-
baseOpenAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
692
|
-
baseOpenAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
693
|
-
baseOpenAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
694
|
-
baseOpenAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
695
|
-
baseOpenAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
696
|
-
quoteOpenAmount?: InputMaybe<Scalars['BigInt']>;
|
|
697
|
-
quoteOpenAmount_not?: InputMaybe<Scalars['BigInt']>;
|
|
698
|
-
quoteOpenAmount_gt?: InputMaybe<Scalars['BigInt']>;
|
|
699
|
-
quoteOpenAmount_lt?: InputMaybe<Scalars['BigInt']>;
|
|
700
|
-
quoteOpenAmount_gte?: InputMaybe<Scalars['BigInt']>;
|
|
701
|
-
quoteOpenAmount_lte?: InputMaybe<Scalars['BigInt']>;
|
|
702
|
-
quoteOpenAmount_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
703
|
-
quoteOpenAmount_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
704
|
-
/** Filter for the block changed event. */
|
|
705
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
706
|
-
and?: InputMaybe<Array<InputMaybe<OpenOrder_filter>>>;
|
|
707
|
-
or?: InputMaybe<Array<InputMaybe<OpenOrder_filter>>>;
|
|
708
|
-
};
|
|
709
|
-
|
|
710
|
-
export type OpenOrder_orderBy =
|
|
711
|
-
| 'id'
|
|
712
|
-
| 'book'
|
|
713
|
-
| 'book__id'
|
|
714
|
-
| 'book__unit'
|
|
715
|
-
| 'book__makerPolicy'
|
|
716
|
-
| 'book__takerPolicy'
|
|
717
|
-
| 'book__hooks'
|
|
718
|
-
| 'book__latestTick'
|
|
719
|
-
| 'book__latestPrice'
|
|
720
|
-
| 'book__latestTimestamp'
|
|
721
|
-
| 'tick'
|
|
722
|
-
| 'orderIndex'
|
|
723
|
-
| 'price'
|
|
724
|
-
| 'user'
|
|
725
|
-
| 'txHash'
|
|
726
|
-
| 'createdAt'
|
|
727
|
-
| 'rawAmount'
|
|
728
|
-
| 'baseAmount'
|
|
729
|
-
| 'quoteAmount'
|
|
730
|
-
| 'rawFilledAmount'
|
|
731
|
-
| 'baseFilledAmount'
|
|
732
|
-
| 'quoteFilledAmount'
|
|
733
|
-
| 'rawClaimedAmount'
|
|
734
|
-
| 'baseClaimedAmount'
|
|
735
|
-
| 'quoteClaimedAmount'
|
|
736
|
-
| 'rawClaimableAmount'
|
|
737
|
-
| 'baseClaimableAmount'
|
|
738
|
-
| 'quoteClaimableAmount'
|
|
739
|
-
| 'rawOpenAmount'
|
|
740
|
-
| 'baseOpenAmount'
|
|
741
|
-
| 'quoteOpenAmount';
|
|
742
|
-
|
|
743
|
-
/** Defines the order direction, either ascending or descending */
|
|
744
|
-
export type OrderDirection =
|
|
745
|
-
| 'asc'
|
|
746
|
-
| 'desc';
|
|
747
|
-
|
|
748
|
-
export type Query = {
|
|
749
|
-
token?: Maybe<Token>;
|
|
750
|
-
tokens: Array<Token>;
|
|
751
|
-
book?: Maybe<Book>;
|
|
752
|
-
books: Array<Book>;
|
|
753
|
-
depth?: Maybe<Depth>;
|
|
754
|
-
depths: Array<Depth>;
|
|
755
|
-
openOrder?: Maybe<OpenOrder>;
|
|
756
|
-
openOrders: Array<OpenOrder>;
|
|
757
|
-
chartLog?: Maybe<ChartLog>;
|
|
758
|
-
chartLogs: Array<ChartLog>;
|
|
759
|
-
/** Access to subgraph metadata */
|
|
760
|
-
_meta?: Maybe<_Meta_>;
|
|
761
|
-
};
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
export type QuerytokenArgs = {
|
|
765
|
-
id: Scalars['ID'];
|
|
766
|
-
block?: InputMaybe<Block_height>;
|
|
767
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
768
|
-
};
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
export type QuerytokensArgs = {
|
|
772
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
773
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
774
|
-
orderBy?: InputMaybe<Token_orderBy>;
|
|
775
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
776
|
-
where?: InputMaybe<Token_filter>;
|
|
777
|
-
block?: InputMaybe<Block_height>;
|
|
778
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
779
|
-
};
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
export type QuerybookArgs = {
|
|
783
|
-
id: Scalars['ID'];
|
|
784
|
-
block?: InputMaybe<Block_height>;
|
|
785
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
786
|
-
};
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
export type QuerybooksArgs = {
|
|
790
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
791
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
792
|
-
orderBy?: InputMaybe<Book_orderBy>;
|
|
793
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
794
|
-
where?: InputMaybe<Book_filter>;
|
|
795
|
-
block?: InputMaybe<Block_height>;
|
|
796
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
797
|
-
};
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
export type QuerydepthArgs = {
|
|
801
|
-
id: Scalars['ID'];
|
|
802
|
-
block?: InputMaybe<Block_height>;
|
|
803
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
804
|
-
};
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
export type QuerydepthsArgs = {
|
|
808
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
809
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
810
|
-
orderBy?: InputMaybe<Depth_orderBy>;
|
|
811
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
812
|
-
where?: InputMaybe<Depth_filter>;
|
|
813
|
-
block?: InputMaybe<Block_height>;
|
|
814
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
815
|
-
};
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
export type QueryopenOrderArgs = {
|
|
819
|
-
id: Scalars['ID'];
|
|
820
|
-
block?: InputMaybe<Block_height>;
|
|
821
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
822
|
-
};
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
export type QueryopenOrdersArgs = {
|
|
826
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
827
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
828
|
-
orderBy?: InputMaybe<OpenOrder_orderBy>;
|
|
829
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
830
|
-
where?: InputMaybe<OpenOrder_filter>;
|
|
831
|
-
block?: InputMaybe<Block_height>;
|
|
832
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
833
|
-
};
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
export type QuerychartLogArgs = {
|
|
837
|
-
id: Scalars['ID'];
|
|
838
|
-
block?: InputMaybe<Block_height>;
|
|
839
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
840
|
-
};
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
export type QuerychartLogsArgs = {
|
|
844
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
845
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
846
|
-
orderBy?: InputMaybe<ChartLog_orderBy>;
|
|
847
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
848
|
-
where?: InputMaybe<ChartLog_filter>;
|
|
849
|
-
block?: InputMaybe<Block_height>;
|
|
850
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
851
|
-
};
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
export type Query_metaArgs = {
|
|
855
|
-
block?: InputMaybe<Block_height>;
|
|
856
|
-
};
|
|
857
|
-
|
|
858
|
-
export type Subscription = {
|
|
859
|
-
token?: Maybe<Token>;
|
|
860
|
-
tokens: Array<Token>;
|
|
861
|
-
book?: Maybe<Book>;
|
|
862
|
-
books: Array<Book>;
|
|
863
|
-
depth?: Maybe<Depth>;
|
|
864
|
-
depths: Array<Depth>;
|
|
865
|
-
openOrder?: Maybe<OpenOrder>;
|
|
866
|
-
openOrders: Array<OpenOrder>;
|
|
867
|
-
chartLog?: Maybe<ChartLog>;
|
|
868
|
-
chartLogs: Array<ChartLog>;
|
|
869
|
-
/** Access to subgraph metadata */
|
|
870
|
-
_meta?: Maybe<_Meta_>;
|
|
871
|
-
};
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
export type SubscriptiontokenArgs = {
|
|
875
|
-
id: Scalars['ID'];
|
|
876
|
-
block?: InputMaybe<Block_height>;
|
|
877
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
878
|
-
};
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
export type SubscriptiontokensArgs = {
|
|
882
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
883
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
884
|
-
orderBy?: InputMaybe<Token_orderBy>;
|
|
885
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
886
|
-
where?: InputMaybe<Token_filter>;
|
|
887
|
-
block?: InputMaybe<Block_height>;
|
|
888
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
889
|
-
};
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
export type SubscriptionbookArgs = {
|
|
893
|
-
id: Scalars['ID'];
|
|
894
|
-
block?: InputMaybe<Block_height>;
|
|
895
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
896
|
-
};
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
export type SubscriptionbooksArgs = {
|
|
900
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
901
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
902
|
-
orderBy?: InputMaybe<Book_orderBy>;
|
|
903
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
904
|
-
where?: InputMaybe<Book_filter>;
|
|
905
|
-
block?: InputMaybe<Block_height>;
|
|
906
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
907
|
-
};
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
export type SubscriptiondepthArgs = {
|
|
911
|
-
id: Scalars['ID'];
|
|
912
|
-
block?: InputMaybe<Block_height>;
|
|
913
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
914
|
-
};
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
export type SubscriptiondepthsArgs = {
|
|
918
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
919
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
920
|
-
orderBy?: InputMaybe<Depth_orderBy>;
|
|
921
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
922
|
-
where?: InputMaybe<Depth_filter>;
|
|
923
|
-
block?: InputMaybe<Block_height>;
|
|
924
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
925
|
-
};
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
export type SubscriptionopenOrderArgs = {
|
|
929
|
-
id: Scalars['ID'];
|
|
930
|
-
block?: InputMaybe<Block_height>;
|
|
931
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
932
|
-
};
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
export type SubscriptionopenOrdersArgs = {
|
|
936
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
937
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
938
|
-
orderBy?: InputMaybe<OpenOrder_orderBy>;
|
|
939
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
940
|
-
where?: InputMaybe<OpenOrder_filter>;
|
|
941
|
-
block?: InputMaybe<Block_height>;
|
|
942
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
943
|
-
};
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
export type SubscriptionchartLogArgs = {
|
|
947
|
-
id: Scalars['ID'];
|
|
948
|
-
block?: InputMaybe<Block_height>;
|
|
949
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
950
|
-
};
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
export type SubscriptionchartLogsArgs = {
|
|
954
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
955
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
956
|
-
orderBy?: InputMaybe<ChartLog_orderBy>;
|
|
957
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
958
|
-
where?: InputMaybe<ChartLog_filter>;
|
|
959
|
-
block?: InputMaybe<Block_height>;
|
|
960
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
961
|
-
};
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
export type Subscription_metaArgs = {
|
|
965
|
-
block?: InputMaybe<Block_height>;
|
|
966
|
-
};
|
|
967
|
-
|
|
968
|
-
export type Token = {
|
|
969
|
-
id: Scalars['ID'];
|
|
970
|
-
symbol: Scalars['String'];
|
|
971
|
-
name: Scalars['String'];
|
|
972
|
-
decimals: Scalars['BigInt'];
|
|
973
|
-
};
|
|
974
|
-
|
|
975
|
-
export type Token_filter = {
|
|
976
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
977
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
978
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
979
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
980
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
981
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
982
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
983
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
984
|
-
symbol?: InputMaybe<Scalars['String']>;
|
|
985
|
-
symbol_not?: InputMaybe<Scalars['String']>;
|
|
986
|
-
symbol_gt?: InputMaybe<Scalars['String']>;
|
|
987
|
-
symbol_lt?: InputMaybe<Scalars['String']>;
|
|
988
|
-
symbol_gte?: InputMaybe<Scalars['String']>;
|
|
989
|
-
symbol_lte?: InputMaybe<Scalars['String']>;
|
|
990
|
-
symbol_in?: InputMaybe<Array<Scalars['String']>>;
|
|
991
|
-
symbol_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
992
|
-
symbol_contains?: InputMaybe<Scalars['String']>;
|
|
993
|
-
symbol_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
994
|
-
symbol_not_contains?: InputMaybe<Scalars['String']>;
|
|
995
|
-
symbol_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
996
|
-
symbol_starts_with?: InputMaybe<Scalars['String']>;
|
|
997
|
-
symbol_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
998
|
-
symbol_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
999
|
-
symbol_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1000
|
-
symbol_ends_with?: InputMaybe<Scalars['String']>;
|
|
1001
|
-
symbol_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1002
|
-
symbol_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
1003
|
-
symbol_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1004
|
-
name?: InputMaybe<Scalars['String']>;
|
|
1005
|
-
name_not?: InputMaybe<Scalars['String']>;
|
|
1006
|
-
name_gt?: InputMaybe<Scalars['String']>;
|
|
1007
|
-
name_lt?: InputMaybe<Scalars['String']>;
|
|
1008
|
-
name_gte?: InputMaybe<Scalars['String']>;
|
|
1009
|
-
name_lte?: InputMaybe<Scalars['String']>;
|
|
1010
|
-
name_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1011
|
-
name_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1012
|
-
name_contains?: InputMaybe<Scalars['String']>;
|
|
1013
|
-
name_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
1014
|
-
name_not_contains?: InputMaybe<Scalars['String']>;
|
|
1015
|
-
name_not_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
1016
|
-
name_starts_with?: InputMaybe<Scalars['String']>;
|
|
1017
|
-
name_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1018
|
-
name_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
1019
|
-
name_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1020
|
-
name_ends_with?: InputMaybe<Scalars['String']>;
|
|
1021
|
-
name_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1022
|
-
name_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
1023
|
-
name_not_ends_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1024
|
-
decimals?: InputMaybe<Scalars['BigInt']>;
|
|
1025
|
-
decimals_not?: InputMaybe<Scalars['BigInt']>;
|
|
1026
|
-
decimals_gt?: InputMaybe<Scalars['BigInt']>;
|
|
1027
|
-
decimals_lt?: InputMaybe<Scalars['BigInt']>;
|
|
1028
|
-
decimals_gte?: InputMaybe<Scalars['BigInt']>;
|
|
1029
|
-
decimals_lte?: InputMaybe<Scalars['BigInt']>;
|
|
1030
|
-
decimals_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1031
|
-
decimals_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1032
|
-
/** Filter for the block changed event. */
|
|
1033
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1034
|
-
and?: InputMaybe<Array<InputMaybe<Token_filter>>>;
|
|
1035
|
-
or?: InputMaybe<Array<InputMaybe<Token_filter>>>;
|
|
1036
|
-
};
|
|
1037
|
-
|
|
1038
|
-
export type Token_orderBy =
|
|
1039
|
-
| 'id'
|
|
1040
|
-
| 'symbol'
|
|
1041
|
-
| 'name'
|
|
1042
|
-
| 'decimals';
|
|
1043
|
-
|
|
1044
|
-
export type _Block_ = {
|
|
1045
|
-
/** The hash of the block */
|
|
1046
|
-
hash?: Maybe<Scalars['Bytes']>;
|
|
1047
|
-
/** The block number */
|
|
1048
|
-
number: Scalars['Int'];
|
|
1049
|
-
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
1050
|
-
timestamp?: Maybe<Scalars['Int']>;
|
|
1051
|
-
};
|
|
1052
|
-
|
|
1053
|
-
/** The type for the top-level _meta field */
|
|
1054
|
-
export type _Meta_ = {
|
|
1055
|
-
/**
|
|
1056
|
-
* Information about a specific subgraph block. The hash of the block
|
|
1057
|
-
* will be null if the _meta field has a block constraint that asks for
|
|
1058
|
-
* a block number. It will be filled if the _meta field has no block constraint
|
|
1059
|
-
* and therefore asks for the latest block
|
|
1060
|
-
*
|
|
1061
|
-
*/
|
|
1062
|
-
block: _Block_;
|
|
1063
|
-
/** The deployment ID */
|
|
1064
|
-
deployment: Scalars['String'];
|
|
1065
|
-
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
1066
|
-
hasIndexingErrors: Scalars['Boolean'];
|
|
1067
|
-
};
|
|
1068
|
-
|
|
1069
|
-
export type _SubgraphErrorPolicy_ =
|
|
1070
|
-
/** Data will be returned even if the subgraph has indexing errors */
|
|
1071
|
-
| 'allow'
|
|
1072
|
-
/** If the subgraph has indexing errors, data will be omitted. The default. */
|
|
1073
|
-
| 'deny';
|
|
1074
|
-
|
|
1075
|
-
export type QuerySdk = {
|
|
1076
|
-
/** null **/
|
|
1077
|
-
token: InContextSdkMethod<Query['token'], QuerytokenArgs, MeshContext>,
|
|
1078
|
-
/** null **/
|
|
1079
|
-
tokens: InContextSdkMethod<Query['tokens'], QuerytokensArgs, MeshContext>,
|
|
1080
|
-
/** null **/
|
|
1081
|
-
book: InContextSdkMethod<Query['book'], QuerybookArgs, MeshContext>,
|
|
1082
|
-
/** null **/
|
|
1083
|
-
books: InContextSdkMethod<Query['books'], QuerybooksArgs, MeshContext>,
|
|
1084
|
-
/** null **/
|
|
1085
|
-
depth: InContextSdkMethod<Query['depth'], QuerydepthArgs, MeshContext>,
|
|
1086
|
-
/** null **/
|
|
1087
|
-
depths: InContextSdkMethod<Query['depths'], QuerydepthsArgs, MeshContext>,
|
|
1088
|
-
/** null **/
|
|
1089
|
-
openOrder: InContextSdkMethod<Query['openOrder'], QueryopenOrderArgs, MeshContext>,
|
|
1090
|
-
/** null **/
|
|
1091
|
-
openOrders: InContextSdkMethod<Query['openOrders'], QueryopenOrdersArgs, MeshContext>,
|
|
1092
|
-
/** null **/
|
|
1093
|
-
chartLog: InContextSdkMethod<Query['chartLog'], QuerychartLogArgs, MeshContext>,
|
|
1094
|
-
/** null **/
|
|
1095
|
-
chartLogs: InContextSdkMethod<Query['chartLogs'], QuerychartLogsArgs, MeshContext>,
|
|
1096
|
-
/** Access to subgraph metadata **/
|
|
1097
|
-
_meta: InContextSdkMethod<Query['_meta'], Query_metaArgs, MeshContext>
|
|
1098
|
-
};
|
|
1099
|
-
|
|
1100
|
-
export type MutationSdk = {
|
|
1101
|
-
|
|
1102
|
-
};
|
|
1103
|
-
|
|
1104
|
-
export type SubscriptionSdk = {
|
|
1105
|
-
/** null **/
|
|
1106
|
-
token: InContextSdkMethod<Subscription['token'], SubscriptiontokenArgs, MeshContext>,
|
|
1107
|
-
/** null **/
|
|
1108
|
-
tokens: InContextSdkMethod<Subscription['tokens'], SubscriptiontokensArgs, MeshContext>,
|
|
1109
|
-
/** null **/
|
|
1110
|
-
book: InContextSdkMethod<Subscription['book'], SubscriptionbookArgs, MeshContext>,
|
|
1111
|
-
/** null **/
|
|
1112
|
-
books: InContextSdkMethod<Subscription['books'], SubscriptionbooksArgs, MeshContext>,
|
|
1113
|
-
/** null **/
|
|
1114
|
-
depth: InContextSdkMethod<Subscription['depth'], SubscriptiondepthArgs, MeshContext>,
|
|
1115
|
-
/** null **/
|
|
1116
|
-
depths: InContextSdkMethod<Subscription['depths'], SubscriptiondepthsArgs, MeshContext>,
|
|
1117
|
-
/** null **/
|
|
1118
|
-
openOrder: InContextSdkMethod<Subscription['openOrder'], SubscriptionopenOrderArgs, MeshContext>,
|
|
1119
|
-
/** null **/
|
|
1120
|
-
openOrders: InContextSdkMethod<Subscription['openOrders'], SubscriptionopenOrdersArgs, MeshContext>,
|
|
1121
|
-
/** null **/
|
|
1122
|
-
chartLog: InContextSdkMethod<Subscription['chartLog'], SubscriptionchartLogArgs, MeshContext>,
|
|
1123
|
-
/** null **/
|
|
1124
|
-
chartLogs: InContextSdkMethod<Subscription['chartLogs'], SubscriptionchartLogsArgs, MeshContext>,
|
|
1125
|
-
/** Access to subgraph metadata **/
|
|
1126
|
-
_meta: InContextSdkMethod<Subscription['_meta'], Subscription_metaArgs, MeshContext>
|
|
1127
|
-
};
|
|
1128
|
-
|
|
1129
|
-
export type Context = {
|
|
1130
|
-
["clober-v2"]: { Query: QuerySdk, Mutation: MutationSdk, Subscription: SubscriptionSdk },
|
|
1131
|
-
["url"]: Scalars['ID']
|
|
1132
|
-
};
|
|
1133
|
-
}
|