@dodoex/api 3.0.0-beta.4 → 3.0.0-taiko.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chainConfig/chain.d.ts +2 -1
- package/dist/chainConfig/index.d.ts +1 -0
- package/dist/chainConfig/platform.d.ts +4 -0
- package/dist/cjs/chainConfig/chain.d.ts +2 -1
- package/dist/cjs/chainConfig/index.d.ts +1 -0
- package/dist/cjs/chainConfig/platform.d.ts +4 -0
- package/dist/cjs/gql/gql.d.ts +8 -0
- package/dist/cjs/gql/graphql.d.ts +755 -1515
- package/dist/cjs/helper/RestApiRequests.d.ts +2 -2
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.d.ts +3 -1
- package/dist/cjs/services/SwapWidgetApi.d.ts +208 -3
- package/dist/cjs/services/TokenApi/index.d.ts +16 -0
- package/dist/cjs/services/swap/SwapApi.d.ts +8 -0
- package/dist/cjs/services/swap/graphqlQuery.d.ts +5 -0
- package/dist/cjs/services/system/SystemApi.d.ts +8 -0
- package/dist/cjs/services/system/graphqlQuery.d.ts +5 -0
- package/dist/gql/gql.d.ts +8 -0
- package/dist/gql/graphql.d.ts +755 -1515
- package/dist/helper/RestApiRequests.d.ts +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/services/SwapWidgetApi.d.ts +208 -3
- package/dist/services/TokenApi/index.d.ts +16 -0
- package/dist/services/swap/SwapApi.d.ts +8 -0
- package/dist/services/swap/graphqlQuery.d.ts +5 -0
- package/dist/services/system/SystemApi.d.ts +8 -0
- package/dist/services/system/graphqlQuery.d.ts +5 -0
- package/package.json +1 -1
|
@@ -61,6 +61,10 @@ export declare type Scalars = {
|
|
|
61
61
|
input: any;
|
|
62
62
|
output: any;
|
|
63
63
|
};
|
|
64
|
+
Dodochain_earnBytes: {
|
|
65
|
+
input: any;
|
|
66
|
+
output: any;
|
|
67
|
+
};
|
|
64
68
|
/**
|
|
65
69
|
* 8 bytes signed integer
|
|
66
70
|
*
|
|
@@ -77,44 +81,17 @@ export declare type Scalars = {
|
|
|
77
81
|
input: any;
|
|
78
82
|
output: any;
|
|
79
83
|
};
|
|
80
|
-
/**
|
|
81
|
-
* A string representation of microseconds UNIX timestamp (16 digits)
|
|
82
|
-
*
|
|
83
|
-
*/
|
|
84
|
-
Timestamp: {
|
|
85
|
-
input: any;
|
|
86
|
-
output: any;
|
|
87
|
-
};
|
|
88
84
|
};
|
|
89
85
|
export declare type Account = {
|
|
90
|
-
approvalsOwner: Array<Approval>;
|
|
91
|
-
approvalsSpender: Array<Approval>;
|
|
92
86
|
/** balances */
|
|
93
87
|
balances: Array<Balance>;
|
|
94
88
|
chain: Scalars['String']['output'];
|
|
95
89
|
/** createdAt */
|
|
96
90
|
createdAt: Scalars['BigInt']['output'];
|
|
97
91
|
id: Scalars['ID']['output'];
|
|
98
|
-
transfersFrom: Array<Transfer>;
|
|
99
|
-
transfersOperator: Array<Transfer>;
|
|
100
|
-
transfersTo: Array<Transfer>;
|
|
101
92
|
/** updatedAt */
|
|
102
93
|
updatedAt: Scalars['BigInt']['output'];
|
|
103
94
|
};
|
|
104
|
-
export declare type AccountApprovalsOwnerArgs = {
|
|
105
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
106
|
-
orderBy?: InputMaybe<Approval_OrderBy>;
|
|
107
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
108
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
109
|
-
where?: InputMaybe<Approval_Filter>;
|
|
110
|
-
};
|
|
111
|
-
export declare type AccountApprovalsSpenderArgs = {
|
|
112
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113
|
-
orderBy?: InputMaybe<Approval_OrderBy>;
|
|
114
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
115
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
116
|
-
where?: InputMaybe<Approval_Filter>;
|
|
117
|
-
};
|
|
118
95
|
export declare type AccountBalancesArgs = {
|
|
119
96
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120
97
|
orderBy?: InputMaybe<Balance_OrderBy>;
|
|
@@ -122,33 +99,10 @@ export declare type AccountBalancesArgs = {
|
|
|
122
99
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
123
100
|
where?: InputMaybe<Balance_Filter>;
|
|
124
101
|
};
|
|
125
|
-
export declare type AccountTransfersFromArgs = {
|
|
126
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
128
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
129
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
130
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
131
|
-
};
|
|
132
|
-
export declare type AccountTransfersOperatorArgs = {
|
|
133
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
135
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
136
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
137
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
138
|
-
};
|
|
139
|
-
export declare type AccountTransfersToArgs = {
|
|
140
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
142
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
143
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
144
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
145
|
-
};
|
|
146
102
|
export declare type Account_Filter = {
|
|
147
103
|
/** Filter for the block changed event. */
|
|
148
104
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
149
105
|
and?: InputMaybe<Array<InputMaybe<Account_Filter>>>;
|
|
150
|
-
approvalsOwner_?: InputMaybe<Approval_Filter>;
|
|
151
|
-
approvalsSpender_?: InputMaybe<Approval_Filter>;
|
|
152
106
|
balances_?: InputMaybe<Balance_Filter>;
|
|
153
107
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
154
108
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -184,9 +138,6 @@ export declare type Account_Filter = {
|
|
|
184
138
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
185
139
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
186
140
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
187
|
-
transfersFrom_?: InputMaybe<Transfer_Filter>;
|
|
188
|
-
transfersOperator_?: InputMaybe<Transfer_Filter>;
|
|
189
|
-
transfersTo_?: InputMaybe<Transfer_Filter>;
|
|
190
141
|
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
191
142
|
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
192
143
|
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -196,7 +147,7 @@ export declare type Account_Filter = {
|
|
|
196
147
|
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
197
148
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
198
149
|
};
|
|
199
|
-
export declare type Account_OrderBy = '
|
|
150
|
+
export declare type Account_OrderBy = 'balances' | 'chain' | 'createdAt' | 'id' | 'updatedAt';
|
|
200
151
|
export declare type AchievementAchievementDetail = {
|
|
201
152
|
completed_count?: Maybe<Scalars['Int']['output']>;
|
|
202
153
|
finish_rate?: Maybe<Scalars['String']['output']>;
|
|
@@ -456,18 +407,11 @@ export declare type AggregateFragment_Filter = {
|
|
|
456
407
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
457
408
|
};
|
|
458
409
|
export declare type AggregateFragment_OrderBy = 'chain' | 'createdAt' | 'creator' | 'filterAdmin' | 'filterAdmin__controller' | 'filterAdmin__createdAt' | 'filterAdmin__decimals' | 'filterAdmin__feeRate' | 'filterAdmin__id' | 'filterAdmin__initSupply' | 'filterAdmin__maintainer' | 'filterAdmin__name' | 'filterAdmin__owner' | 'filterAdmin__symbol' | 'filterAdmin__totalSupply' | 'filterAdmin__updatedAt' | 'fragment' | 'fragment__buyoutTimestamp' | 'fragment__createdAt' | 'fragment__decimals' | 'fragment__dvm' | 'fragment__feeDistributor' | 'fragment__id' | 'fragment__initialized' | 'fragment__isBuyOut' | 'fragment__name' | 'fragment__quote' | 'fragment__symbol' | 'fragment__totalSupply' | 'fragment__updatedAt' | 'fragment__vaultPreOwner' | 'id' | 'nftCount' | 'timestamp' | 'type' | 'updatedAt';
|
|
459
|
-
export declare type Aggregation_Interval = 'day' | 'hour';
|
|
460
410
|
export declare type All = {
|
|
461
411
|
chain: Scalars['String']['output'];
|
|
462
412
|
id: Scalars['ID']['output'];
|
|
463
|
-
numOwners: Scalars['BigInt']['output'];
|
|
464
|
-
numTokenContracts: Scalars['BigInt']['output'];
|
|
465
|
-
numTokens: Scalars['BigInt']['output'];
|
|
466
413
|
};
|
|
467
414
|
export declare type All_Filter = {
|
|
468
|
-
/** Filter for the block changed event. */
|
|
469
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
470
|
-
and?: InputMaybe<Array<InputMaybe<All_Filter>>>;
|
|
471
415
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
472
416
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
473
417
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -490,36 +434,11 @@ export declare type All_Filter = {
|
|
|
490
434
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
491
435
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
492
436
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
493
|
-
numOwners?: InputMaybe<Scalars['BigInt']['input']>;
|
|
494
|
-
numOwners_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
495
|
-
numOwners_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
496
|
-
numOwners_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
497
|
-
numOwners_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
498
|
-
numOwners_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
499
|
-
numOwners_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
500
|
-
numOwners_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
501
|
-
numTokenContracts?: InputMaybe<Scalars['BigInt']['input']>;
|
|
502
|
-
numTokenContracts_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
503
|
-
numTokenContracts_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
504
|
-
numTokenContracts_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
505
|
-
numTokenContracts_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
506
|
-
numTokenContracts_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
507
|
-
numTokenContracts_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
508
|
-
numTokenContracts_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
509
|
-
numTokens?: InputMaybe<Scalars['BigInt']['input']>;
|
|
510
|
-
numTokens_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
511
|
-
numTokens_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
512
|
-
numTokens_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
513
|
-
numTokens_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
514
|
-
numTokens_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
515
|
-
numTokens_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
516
|
-
numTokens_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
517
|
-
or?: InputMaybe<Array<InputMaybe<All_Filter>>>;
|
|
518
437
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
519
438
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
520
439
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
521
440
|
};
|
|
522
|
-
export declare type All_OrderBy = 'chain' | 'id'
|
|
441
|
+
export declare type All_OrderBy = 'chain' | 'id';
|
|
523
442
|
export declare type AnnouncementAnnouncement = {
|
|
524
443
|
endAt?: Maybe<Scalars['String']['output']>;
|
|
525
444
|
id?: Maybe<Scalars['Int']['output']>;
|
|
@@ -543,20 +462,11 @@ export declare type AnnouncementMetadata = {
|
|
|
543
462
|
landingPageDisplay?: Maybe<Scalars['Boolean']['output']>;
|
|
544
463
|
theme?: Maybe<Scalars['String']['output']>;
|
|
545
464
|
};
|
|
546
|
-
export declare type Approval =
|
|
465
|
+
export declare type Approval = {
|
|
547
466
|
chain: Scalars['String']['output'];
|
|
548
467
|
id: Scalars['ID']['output'];
|
|
549
|
-
owner: Account;
|
|
550
|
-
spender: Account;
|
|
551
|
-
timestamp: Scalars['BigInt']['output'];
|
|
552
|
-
token: Token;
|
|
553
|
-
transaction: Transaction;
|
|
554
|
-
value: Scalars['BigInt']['output'];
|
|
555
468
|
};
|
|
556
469
|
export declare type Approval_Filter = {
|
|
557
|
-
/** Filter for the block changed event. */
|
|
558
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
559
|
-
and?: InputMaybe<Array<InputMaybe<Approval_Filter>>>;
|
|
560
470
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
561
471
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
562
472
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -579,112 +489,11 @@ export declare type Approval_Filter = {
|
|
|
579
489
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
580
490
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
581
491
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
582
|
-
or?: InputMaybe<Array<InputMaybe<Approval_Filter>>>;
|
|
583
|
-
owner?: InputMaybe<Scalars['String']['input']>;
|
|
584
|
-
owner_?: InputMaybe<Account_Filter>;
|
|
585
|
-
owner_contains?: InputMaybe<Scalars['String']['input']>;
|
|
586
|
-
owner_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
587
|
-
owner_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
588
|
-
owner_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
589
|
-
owner_gt?: InputMaybe<Scalars['String']['input']>;
|
|
590
|
-
owner_gte?: InputMaybe<Scalars['String']['input']>;
|
|
591
|
-
owner_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
592
|
-
owner_lt?: InputMaybe<Scalars['String']['input']>;
|
|
593
|
-
owner_lte?: InputMaybe<Scalars['String']['input']>;
|
|
594
|
-
owner_not?: InputMaybe<Scalars['String']['input']>;
|
|
595
|
-
owner_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
596
|
-
owner_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
597
|
-
owner_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
598
|
-
owner_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
599
|
-
owner_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
600
|
-
owner_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
601
|
-
owner_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
602
|
-
owner_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
603
|
-
owner_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
604
492
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
605
493
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
606
494
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
607
|
-
spender?: InputMaybe<Scalars['String']['input']>;
|
|
608
|
-
spender_?: InputMaybe<Account_Filter>;
|
|
609
|
-
spender_contains?: InputMaybe<Scalars['String']['input']>;
|
|
610
|
-
spender_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
611
|
-
spender_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
612
|
-
spender_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
613
|
-
spender_gt?: InputMaybe<Scalars['String']['input']>;
|
|
614
|
-
spender_gte?: InputMaybe<Scalars['String']['input']>;
|
|
615
|
-
spender_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
616
|
-
spender_lt?: InputMaybe<Scalars['String']['input']>;
|
|
617
|
-
spender_lte?: InputMaybe<Scalars['String']['input']>;
|
|
618
|
-
spender_not?: InputMaybe<Scalars['String']['input']>;
|
|
619
|
-
spender_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
620
|
-
spender_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
-
spender_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
622
|
-
spender_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
623
|
-
spender_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
624
|
-
spender_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
625
|
-
spender_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
626
|
-
spender_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
627
|
-
spender_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
628
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
629
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
630
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
631
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
632
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
633
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
634
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
635
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
636
|
-
token?: InputMaybe<Scalars['String']['input']>;
|
|
637
|
-
token_?: InputMaybe<Token_Filter>;
|
|
638
|
-
token_contains?: InputMaybe<Scalars['String']['input']>;
|
|
639
|
-
token_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
640
|
-
token_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
641
|
-
token_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
642
|
-
token_gt?: InputMaybe<Scalars['String']['input']>;
|
|
643
|
-
token_gte?: InputMaybe<Scalars['String']['input']>;
|
|
644
|
-
token_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
645
|
-
token_lt?: InputMaybe<Scalars['String']['input']>;
|
|
646
|
-
token_lte?: InputMaybe<Scalars['String']['input']>;
|
|
647
|
-
token_not?: InputMaybe<Scalars['String']['input']>;
|
|
648
|
-
token_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
649
|
-
token_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
650
|
-
token_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
651
|
-
token_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
652
|
-
token_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
653
|
-
token_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
654
|
-
token_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
655
|
-
token_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
656
|
-
token_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
657
|
-
transaction?: InputMaybe<Scalars['String']['input']>;
|
|
658
|
-
transaction_?: InputMaybe<Transaction_Filter>;
|
|
659
|
-
transaction_contains?: InputMaybe<Scalars['String']['input']>;
|
|
660
|
-
transaction_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
661
|
-
transaction_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
662
|
-
transaction_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
663
|
-
transaction_gt?: InputMaybe<Scalars['String']['input']>;
|
|
664
|
-
transaction_gte?: InputMaybe<Scalars['String']['input']>;
|
|
665
|
-
transaction_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
666
|
-
transaction_lt?: InputMaybe<Scalars['String']['input']>;
|
|
667
|
-
transaction_lte?: InputMaybe<Scalars['String']['input']>;
|
|
668
|
-
transaction_not?: InputMaybe<Scalars['String']['input']>;
|
|
669
|
-
transaction_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
670
|
-
transaction_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
671
|
-
transaction_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
672
|
-
transaction_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
673
|
-
transaction_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
674
|
-
transaction_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
675
|
-
transaction_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
676
|
-
transaction_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
677
|
-
transaction_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
678
|
-
value?: InputMaybe<Scalars['BigInt']['input']>;
|
|
679
|
-
value_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
680
|
-
value_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
681
|
-
value_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
682
|
-
value_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
683
|
-
value_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
684
|
-
value_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
685
|
-
value_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
686
495
|
};
|
|
687
|
-
export declare type Approval_OrderBy = 'chain' | 'id'
|
|
496
|
+
export declare type Approval_OrderBy = 'chain' | 'id';
|
|
688
497
|
export declare type AuctionAuctionActive = {
|
|
689
498
|
baseTokenSoldTokenAmount?: Maybe<Scalars['String']['output']>;
|
|
690
499
|
baseTokenTotalAmount?: Maybe<Scalars['String']['output']>;
|
|
@@ -1139,30 +948,13 @@ export declare type Balance = {
|
|
|
1139
948
|
id: Scalars['ID']['output'];
|
|
1140
949
|
/** nft */
|
|
1141
950
|
nft: Nft;
|
|
1142
|
-
token: Token;
|
|
1143
951
|
/** token id */
|
|
1144
952
|
tokenID: Scalars['BigInt']['output'];
|
|
1145
|
-
transfersFrom: Array<Transfer>;
|
|
1146
|
-
transfersTo: Array<Transfer>;
|
|
1147
953
|
/** updatedAt */
|
|
1148
954
|
updatedAt: Scalars['BigInt']['output'];
|
|
1149
955
|
/** token value */
|
|
1150
956
|
value: Scalars['BigInt']['output'];
|
|
1151
957
|
};
|
|
1152
|
-
export declare type BalanceTransfersFromArgs = {
|
|
1153
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1154
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
1155
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1156
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1157
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
1158
|
-
};
|
|
1159
|
-
export declare type BalanceTransfersToArgs = {
|
|
1160
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1161
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
1162
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
1163
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1164
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
1165
|
-
};
|
|
1166
958
|
export declare type Balance_Filter = {
|
|
1167
959
|
/** Filter for the block changed event. */
|
|
1168
960
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
@@ -1243,7 +1035,6 @@ export declare type Balance_Filter = {
|
|
|
1243
1035
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1244
1036
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
1245
1037
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
1246
|
-
token?: InputMaybe<Scalars['String']['input']>;
|
|
1247
1038
|
tokenID?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1248
1039
|
tokenID_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1249
1040
|
tokenID_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1252,28 +1043,6 @@ export declare type Balance_Filter = {
|
|
|
1252
1043
|
tokenID_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1253
1044
|
tokenID_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1254
1045
|
tokenID_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1255
|
-
token_?: InputMaybe<Token_Filter>;
|
|
1256
|
-
token_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1257
|
-
token_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1258
|
-
token_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1259
|
-
token_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1260
|
-
token_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1261
|
-
token_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1262
|
-
token_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1263
|
-
token_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1264
|
-
token_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1265
|
-
token_not?: InputMaybe<Scalars['String']['input']>;
|
|
1266
|
-
token_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1267
|
-
token_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1268
|
-
token_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1269
|
-
token_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1270
|
-
token_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1271
|
-
token_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1272
|
-
token_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1273
|
-
token_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1274
|
-
token_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1275
|
-
transfersFrom_?: InputMaybe<Transfer_Filter>;
|
|
1276
|
-
transfersTo_?: InputMaybe<Transfer_Filter>;
|
|
1277
1046
|
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1278
1047
|
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1279
1048
|
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1291,7 +1060,7 @@ export declare type Balance_Filter = {
|
|
|
1291
1060
|
value_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1292
1061
|
value_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1293
1062
|
};
|
|
1294
|
-
export declare type Balance_OrderBy = 'account' | 'account__createdAt' | 'account__id' | 'account__updatedAt' | 'chain' | 'createdAt' | 'id' | 'nft' | 'nft__address' | 'nft__createdAt' | 'nft__id' | 'nft__type' | 'nft__updatedAt' | 'nft__uri' | '
|
|
1063
|
+
export declare type Balance_OrderBy = 'account' | 'account__createdAt' | 'account__id' | 'account__updatedAt' | 'chain' | 'createdAt' | 'id' | 'nft' | 'nft__address' | 'nft__createdAt' | 'nft__id' | 'nft__type' | 'nft__updatedAt' | 'nft__uri' | 'tokenID' | 'updatedAt' | 'value';
|
|
1295
1064
|
export declare type BidHistory = {
|
|
1296
1065
|
/** action :bid、cancle */
|
|
1297
1066
|
action: Scalars['String']['output'];
|
|
@@ -1572,195 +1341,14 @@ export declare type BidPosition_Filter = {
|
|
|
1572
1341
|
user_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1573
1342
|
};
|
|
1574
1343
|
export declare type BidPosition_OrderBy = 'chain' | 'claimed' | 'cp' | 'id' | 'investedQuote' | 'lastTxTime' | 'shares' | 'updatedAt' | 'user';
|
|
1575
|
-
export declare type Block = {
|
|
1576
|
-
author?: Maybe<Scalars['String']['output']>;
|
|
1577
|
-
difficulty?: Maybe<Scalars['BigInt']['output']>;
|
|
1578
|
-
gasLimit?: Maybe<Scalars['BigInt']['output']>;
|
|
1579
|
-
gasUsed?: Maybe<Scalars['BigInt']['output']>;
|
|
1580
|
-
id: Scalars['ID']['output'];
|
|
1581
|
-
number: Scalars['BigInt']['output'];
|
|
1582
|
-
parentHash?: Maybe<Scalars['String']['output']>;
|
|
1583
|
-
receiptsRoot?: Maybe<Scalars['String']['output']>;
|
|
1584
|
-
size?: Maybe<Scalars['BigInt']['output']>;
|
|
1585
|
-
stateRoot?: Maybe<Scalars['String']['output']>;
|
|
1586
|
-
timestamp: Scalars['BigInt']['output'];
|
|
1587
|
-
totalDifficulty?: Maybe<Scalars['BigInt']['output']>;
|
|
1588
|
-
transactionsRoot?: Maybe<Scalars['String']['output']>;
|
|
1589
|
-
unclesHash?: Maybe<Scalars['String']['output']>;
|
|
1590
|
-
};
|
|
1591
1344
|
export declare type BlockChangedFilter = {
|
|
1592
1345
|
number_gte: Scalars['Int']['input'];
|
|
1593
1346
|
};
|
|
1594
|
-
export declare type Block_Filter = {
|
|
1595
|
-
author?: InputMaybe<Scalars['String']['input']>;
|
|
1596
|
-
author_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1597
|
-
author_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1598
|
-
author_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1599
|
-
author_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1600
|
-
author_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1601
|
-
author_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1602
|
-
author_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1603
|
-
author_not?: InputMaybe<Scalars['String']['input']>;
|
|
1604
|
-
author_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1605
|
-
author_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1606
|
-
author_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1607
|
-
author_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1608
|
-
author_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1609
|
-
chain?: InputMaybe<Scalars['String']['input']>;
|
|
1610
|
-
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1611
|
-
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1612
|
-
chain_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1613
|
-
chain_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1614
|
-
chain_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1615
|
-
chain_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1616
|
-
chain_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1617
|
-
chain_not?: InputMaybe<Scalars['String']['input']>;
|
|
1618
|
-
chain_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1619
|
-
chain_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1620
|
-
chain_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1621
|
-
chain_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1622
|
-
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1623
|
-
difficulty?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1624
|
-
difficulty_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1625
|
-
difficulty_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1626
|
-
difficulty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1627
|
-
difficulty_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1628
|
-
difficulty_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1629
|
-
difficulty_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1630
|
-
difficulty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1631
|
-
gasLimit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1632
|
-
gasLimit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1633
|
-
gasLimit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1634
|
-
gasLimit_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1635
|
-
gasLimit_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1636
|
-
gasLimit_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1637
|
-
gasLimit_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1638
|
-
gasLimit_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1639
|
-
gasUsed?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1640
|
-
gasUsed_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1641
|
-
gasUsed_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1642
|
-
gasUsed_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1643
|
-
gasUsed_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1644
|
-
gasUsed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1645
|
-
gasUsed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1646
|
-
gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1647
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1648
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1649
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1650
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1651
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1652
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1653
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1654
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1655
|
-
number?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1656
|
-
number_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1657
|
-
number_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1658
|
-
number_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1659
|
-
number_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1660
|
-
number_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1661
|
-
number_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1662
|
-
number_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1663
|
-
parentHash?: InputMaybe<Scalars['String']['input']>;
|
|
1664
|
-
parentHash_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1665
|
-
parentHash_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1666
|
-
parentHash_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1667
|
-
parentHash_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1668
|
-
parentHash_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1669
|
-
parentHash_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1670
|
-
parentHash_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1671
|
-
parentHash_not?: InputMaybe<Scalars['String']['input']>;
|
|
1672
|
-
parentHash_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1673
|
-
parentHash_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1674
|
-
parentHash_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1675
|
-
parentHash_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1676
|
-
parentHash_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1677
|
-
receiptsRoot?: InputMaybe<Scalars['String']['input']>;
|
|
1678
|
-
receiptsRoot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1679
|
-
receiptsRoot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1680
|
-
receiptsRoot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1681
|
-
receiptsRoot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1682
|
-
receiptsRoot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1683
|
-
receiptsRoot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1684
|
-
receiptsRoot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1685
|
-
receiptsRoot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1686
|
-
receiptsRoot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1687
|
-
receiptsRoot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1688
|
-
receiptsRoot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1689
|
-
receiptsRoot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1690
|
-
receiptsRoot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1691
|
-
size?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1692
|
-
size_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1693
|
-
size_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1694
|
-
size_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1695
|
-
size_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1696
|
-
size_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1697
|
-
size_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1698
|
-
size_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1699
|
-
stateRoot?: InputMaybe<Scalars['String']['input']>;
|
|
1700
|
-
stateRoot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1701
|
-
stateRoot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1702
|
-
stateRoot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1703
|
-
stateRoot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1704
|
-
stateRoot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1705
|
-
stateRoot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1706
|
-
stateRoot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1707
|
-
stateRoot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1708
|
-
stateRoot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1709
|
-
stateRoot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1710
|
-
stateRoot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1711
|
-
stateRoot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1712
|
-
stateRoot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1713
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1714
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1715
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1716
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1717
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1718
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1719
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1720
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1721
|
-
totalDifficulty?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1722
|
-
totalDifficulty_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1723
|
-
totalDifficulty_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1724
|
-
totalDifficulty_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1725
|
-
totalDifficulty_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1726
|
-
totalDifficulty_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1727
|
-
totalDifficulty_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1728
|
-
totalDifficulty_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1729
|
-
transactionsRoot?: InputMaybe<Scalars['String']['input']>;
|
|
1730
|
-
transactionsRoot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1731
|
-
transactionsRoot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1732
|
-
transactionsRoot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1733
|
-
transactionsRoot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1734
|
-
transactionsRoot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1735
|
-
transactionsRoot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1736
|
-
transactionsRoot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1737
|
-
transactionsRoot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1738
|
-
transactionsRoot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1739
|
-
transactionsRoot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1740
|
-
transactionsRoot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1741
|
-
transactionsRoot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1742
|
-
transactionsRoot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1743
|
-
unclesHash?: InputMaybe<Scalars['String']['input']>;
|
|
1744
|
-
unclesHash_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1745
|
-
unclesHash_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1746
|
-
unclesHash_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1747
|
-
unclesHash_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1748
|
-
unclesHash_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1749
|
-
unclesHash_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1750
|
-
unclesHash_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1751
|
-
unclesHash_not?: InputMaybe<Scalars['String']['input']>;
|
|
1752
|
-
unclesHash_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1753
|
-
unclesHash_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1754
|
-
unclesHash_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1755
|
-
unclesHash_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1756
|
-
unclesHash_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1757
|
-
};
|
|
1758
1347
|
export declare type Block_Height = {
|
|
1759
1348
|
hash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1760
1349
|
number: Scalars['Int']['input'];
|
|
1761
1350
|
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1762
1351
|
};
|
|
1763
|
-
export declare type Block_OrderBy = 'author' | 'difficulty' | 'gasLimit' | 'gasUsed' | 'id' | 'number' | 'parentHash' | 'receiptsRoot' | 'size' | 'stateRoot' | 'timestamp' | 'totalDifficulty' | 'transactionsRoot' | 'unclesHash';
|
|
1764
1352
|
export declare type BrowserChainInput = {
|
|
1765
1353
|
chains: Array<InputMaybe<Scalars['Int']['input']>>;
|
|
1766
1354
|
};
|
|
@@ -1802,7 +1390,6 @@ export declare type ClaimHistory = {
|
|
|
1802
1390
|
export declare type ClaimHistory_Filter = {
|
|
1803
1391
|
/** Filter for the block changed event. */
|
|
1804
1392
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1805
|
-
and?: InputMaybe<Array<InputMaybe<ClaimHistory_Filter>>>;
|
|
1806
1393
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
1807
1394
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1808
1395
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1853,7 +1440,6 @@ export declare type ClaimHistory_Filter = {
|
|
|
1853
1440
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1854
1441
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1855
1442
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1856
|
-
or?: InputMaybe<Array<InputMaybe<ClaimHistory_Filter>>>;
|
|
1857
1443
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1858
1444
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
1859
1445
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1904,16 +1490,12 @@ export declare type ClaimHistory_Filter = {
|
|
|
1904
1490
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1905
1491
|
user?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1906
1492
|
user_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1907
|
-
user_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1908
|
-
user_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1909
1493
|
user_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1910
|
-
user_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1911
|
-
user_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1912
1494
|
user_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1913
1495
|
user_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1914
1496
|
user_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1915
1497
|
};
|
|
1916
|
-
export declare type ClaimHistory_OrderBy = 'chain' | 'fundAmount' | 'hash' | 'id' | 'starter' | '
|
|
1498
|
+
export declare type ClaimHistory_OrderBy = 'chain' | 'fundAmount' | 'hash' | 'id' | 'starter' | 'timestamp' | 'tokenAmount' | 'updatedAt' | 'user';
|
|
1917
1499
|
export declare type Claimed = {
|
|
1918
1500
|
account: Scalars['Bytes']['output'];
|
|
1919
1501
|
address: Scalars['Bytes']['output'];
|
|
@@ -2548,6 +2130,8 @@ export declare type Cross_Chain_SwapCrossChainRoute = {
|
|
|
2548
2130
|
productParams?: Maybe<Scalars['JSON']['output']>;
|
|
2549
2131
|
step?: Maybe<Cross_Chain_SwapStep>;
|
|
2550
2132
|
toAmount?: Maybe<Scalars['String']['output']>;
|
|
2133
|
+
toAmountMin?: Maybe<Scalars['String']['output']>;
|
|
2134
|
+
toAmountMinUSD?: Maybe<Scalars['String']['output']>;
|
|
2551
2135
|
toAmountUSD?: Maybe<Scalars['String']['output']>;
|
|
2552
2136
|
};
|
|
2553
2137
|
export declare type Cross_Chain_SwapCrossChainRouteV2 = {
|
|
@@ -2590,6 +2174,7 @@ export declare type Cross_Chain_SwapExtend = {
|
|
|
2590
2174
|
encodeId?: Maybe<Scalars['String']['output']>;
|
|
2591
2175
|
fromToken?: Maybe<Scalars['JSON']['output']>;
|
|
2592
2176
|
lifiBridge?: Maybe<Scalars['String']['output']>;
|
|
2177
|
+
refunded?: Maybe<Scalars['JSON']['output']>;
|
|
2593
2178
|
route?: Maybe<Scalars['JSON']['output']>;
|
|
2594
2179
|
toToken?: Maybe<Scalars['JSON']['output']>;
|
|
2595
2180
|
};
|
|
@@ -2600,6 +2185,9 @@ export declare type Cross_Chain_SwapIncludedStep = {
|
|
|
2600
2185
|
toolDetails?: Maybe<Cross_Chain_SwapToolDetail>;
|
|
2601
2186
|
type?: Maybe<Scalars['String']['output']>;
|
|
2602
2187
|
};
|
|
2188
|
+
export declare type Cross_Chain_SwapOrderRefundCountResult = {
|
|
2189
|
+
refundCount?: Maybe<Scalars['Int']['output']>;
|
|
2190
|
+
};
|
|
2603
2191
|
export declare type Cross_Chain_SwapStep = {
|
|
2604
2192
|
activityData?: Maybe<Scalars['JSON']['output']>;
|
|
2605
2193
|
approvalAddress?: Maybe<Scalars['String']['output']>;
|
|
@@ -2614,6 +2202,14 @@ export declare type Cross_Chain_SwapToolDetail = {
|
|
|
2614
2202
|
logoURI?: Maybe<Scalars['String']['output']>;
|
|
2615
2203
|
name?: Maybe<Scalars['String']['output']>;
|
|
2616
2204
|
};
|
|
2205
|
+
export declare type Cross_Chain_SwapdodoOrderListData = {
|
|
2206
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
2207
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2208
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2209
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2210
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
2211
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
2212
|
+
};
|
|
2617
2213
|
export declare type Cross_Chain_SwaporderCreateData = {
|
|
2618
2214
|
extend?: InputMaybe<Cross_Chain_SwaporderCreateDataExtend>;
|
|
2619
2215
|
fromAddress?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2653,12 +2249,20 @@ export declare type Cross_Chain_SwaporderListData = {
|
|
|
2653
2249
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2654
2250
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2655
2251
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2252
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
2656
2253
|
user?: InputMaybe<Scalars['String']['input']>;
|
|
2657
2254
|
};
|
|
2658
2255
|
export declare type Cross_Chain_SwaporderNewStatusData = {
|
|
2659
2256
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2660
2257
|
user?: InputMaybe<Scalars['String']['input']>;
|
|
2661
2258
|
};
|
|
2259
|
+
export declare type Cross_Chain_SwaporderRefundCountData = {
|
|
2260
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
2261
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
2262
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2263
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
2264
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
2265
|
+
};
|
|
2662
2266
|
export declare type Cross_Chain_SwaprouteData = {
|
|
2663
2267
|
feePercent?: InputMaybe<Scalars['Float']['input']>;
|
|
2664
2268
|
fromAddress?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2681,6 +2285,22 @@ export declare type Cross_Chain_SwaptransactionEncodeData = {
|
|
|
2681
2285
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
2682
2286
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2683
2287
|
};
|
|
2288
|
+
export declare type Cross_Chain_TokenCrossChainPair = {
|
|
2289
|
+
fromChainId?: Maybe<Scalars['Int']['output']>;
|
|
2290
|
+
fromChainToken?: Maybe<Scalars['String']['output']>;
|
|
2291
|
+
fromChainTokenAttributeLabels?: Maybe<Array<Maybe<Cross_Chain_TokenCrossChainTokenLabel>>>;
|
|
2292
|
+
fromChainTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
2293
|
+
fromChainTokenFuncLabels?: Maybe<Array<Maybe<Cross_Chain_TokenCrossChainTokenLabel>>>;
|
|
2294
|
+
fromChainTokenName?: Maybe<Scalars['String']['output']>;
|
|
2295
|
+
fromChainTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
2296
|
+
toChainId?: Maybe<Scalars['Int']['output']>;
|
|
2297
|
+
toChainToken?: Maybe<Scalars['String']['output']>;
|
|
2298
|
+
toChainTokenAttributeLabels?: Maybe<Array<Maybe<Cross_Chain_TokenCrossChainTokenLabel>>>;
|
|
2299
|
+
toChainTokenDecimals?: Maybe<Scalars['Int']['output']>;
|
|
2300
|
+
toChainTokenFuncLabels?: Maybe<Array<Maybe<Cross_Chain_TokenCrossChainTokenLabel>>>;
|
|
2301
|
+
toChainTokenName?: Maybe<Scalars['String']['output']>;
|
|
2302
|
+
toChainTokenSymbol?: Maybe<Scalars['String']['output']>;
|
|
2303
|
+
};
|
|
2684
2304
|
export declare type Cross_Chain_TokenCrossChainProduct = {
|
|
2685
2305
|
id?: Maybe<Scalars['Int']['output']>;
|
|
2686
2306
|
isProduction?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2699,6 +2319,12 @@ export declare type Cross_Chain_TokenCrossChainToken = {
|
|
|
2699
2319
|
};
|
|
2700
2320
|
export declare type Cross_Chain_TokenCrossChainTokenLabel = {
|
|
2701
2321
|
key?: Maybe<Scalars['String']['output']>;
|
|
2322
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2323
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
2324
|
+
};
|
|
2325
|
+
export declare type Cross_Chain_TokenCrossChainTokenPair = {
|
|
2326
|
+
chains?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
2327
|
+
tokenPairs?: Maybe<Array<Maybe<Cross_Chain_TokenCrossChainPair>>>;
|
|
2702
2328
|
};
|
|
2703
2329
|
export declare type Cross_Chain_TokenCrossChainTokenlist = {
|
|
2704
2330
|
chains?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
@@ -2706,6 +2332,9 @@ export declare type Cross_Chain_TokenCrossChainTokenlist = {
|
|
|
2706
2332
|
products?: Maybe<Array<Maybe<Cross_Chain_TokenCrossChainProduct>>>;
|
|
2707
2333
|
tokens?: Maybe<Array<Maybe<Cross_Chain_TokenCrossChainToken>>>;
|
|
2708
2334
|
};
|
|
2335
|
+
export declare type Cross_Chain_TokentokenPairFilter = {
|
|
2336
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2337
|
+
};
|
|
2709
2338
|
export declare type Cross_Chain_TokentokenlistFilter = {
|
|
2710
2339
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2711
2340
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4484,15 +4113,9 @@ export declare type Dashboardtype_List_Filter = {
|
|
|
4484
4113
|
};
|
|
4485
4114
|
export declare type DecimalValue = {
|
|
4486
4115
|
chain: Scalars['String']['output'];
|
|
4487
|
-
decimals: Scalars['Int']['output'];
|
|
4488
|
-
exact: Scalars['BigInt']['output'];
|
|
4489
4116
|
id: Scalars['ID']['output'];
|
|
4490
|
-
value: Scalars['BigDecimal']['output'];
|
|
4491
4117
|
};
|
|
4492
4118
|
export declare type DecimalValue_Filter = {
|
|
4493
|
-
/** Filter for the block changed event. */
|
|
4494
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4495
|
-
and?: InputMaybe<Array<InputMaybe<DecimalValue_Filter>>>;
|
|
4496
4119
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
4497
4120
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
4498
4121
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4507,22 +4130,6 @@ export declare type DecimalValue_Filter = {
|
|
|
4507
4130
|
chain_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4508
4131
|
chain_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
4509
4132
|
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
4510
|
-
decimals?: InputMaybe<Scalars['Int']['input']>;
|
|
4511
|
-
decimals_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
4512
|
-
decimals_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
4513
|
-
decimals_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4514
|
-
decimals_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
4515
|
-
decimals_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
4516
|
-
decimals_not?: InputMaybe<Scalars['Int']['input']>;
|
|
4517
|
-
decimals_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4518
|
-
exact?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4519
|
-
exact_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4520
|
-
exact_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4521
|
-
exact_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
4522
|
-
exact_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4523
|
-
exact_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4524
|
-
exact_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4525
|
-
exact_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
4526
4133
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4527
4134
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
4528
4135
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4531,20 +4138,11 @@ export declare type DecimalValue_Filter = {
|
|
|
4531
4138
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
4532
4139
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
4533
4140
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4534
|
-
or?: InputMaybe<Array<InputMaybe<DecimalValue_Filter>>>;
|
|
4535
4141
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4536
4142
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
4537
4143
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
value_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
4541
|
-
value_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
4542
|
-
value_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
4543
|
-
value_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
4544
|
-
value_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
4545
|
-
value_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
4546
|
-
};
|
|
4547
|
-
export declare type DecimalValue_OrderBy = 'chain' | 'decimals' | 'exact' | 'id' | 'value';
|
|
4144
|
+
};
|
|
4145
|
+
export declare type DecimalValue_OrderBy = 'chain' | 'id';
|
|
4548
4146
|
export declare type DepositHistory = {
|
|
4549
4147
|
/** allocation amount */
|
|
4550
4148
|
allocationAmount: Scalars['BigInt']['output'];
|
|
@@ -4583,7 +4181,6 @@ export declare type DepositHistory_Filter = {
|
|
|
4583
4181
|
amount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4584
4182
|
amount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
4585
4183
|
amount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
4586
|
-
and?: InputMaybe<Array<InputMaybe<DepositHistory_Filter>>>;
|
|
4587
4184
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
4588
4185
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
4589
4186
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4626,7 +4223,6 @@ export declare type DepositHistory_Filter = {
|
|
|
4626
4223
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
4627
4224
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
4628
4225
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4629
|
-
or?: InputMaybe<Array<InputMaybe<DepositHistory_Filter>>>;
|
|
4630
4226
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4631
4227
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
4632
4228
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4669,16 +4265,12 @@ export declare type DepositHistory_Filter = {
|
|
|
4669
4265
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
4670
4266
|
user?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4671
4267
|
user_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4672
|
-
user_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4673
|
-
user_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4674
4268
|
user_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
4675
|
-
user_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4676
|
-
user_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4677
4269
|
user_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4678
4270
|
user_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
4679
4271
|
user_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
4680
4272
|
};
|
|
4681
|
-
export declare type DepositHistory_OrderBy = 'allocationAmount' | 'amount' | 'chain' | 'hash' | 'id' | 'starter' | '
|
|
4273
|
+
export declare type DepositHistory_OrderBy = 'allocationAmount' | 'amount' | 'chain' | 'hash' | 'id' | 'starter' | 'timestamp' | 'updatedAt' | 'user';
|
|
4682
4274
|
export declare type Dip_WhitelistDipWhitelist = {
|
|
4683
4275
|
deadlineVotes?: Maybe<Scalars['String']['output']>;
|
|
4684
4276
|
id?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4959,7 +4551,6 @@ export declare type DodoStarter = {
|
|
|
4959
4551
|
export declare type DodoStarter_Filter = {
|
|
4960
4552
|
/** Filter for the block changed event. */
|
|
4961
4553
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4962
|
-
and?: InputMaybe<Array<InputMaybe<DodoStarter_Filter>>>;
|
|
4963
4554
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
4964
4555
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
4965
4556
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4982,7 +4573,6 @@ export declare type DodoStarter_Filter = {
|
|
|
4982
4573
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
4983
4574
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
4984
4575
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4985
|
-
or?: InputMaybe<Array<InputMaybe<DodoStarter_Filter>>>;
|
|
4986
4576
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4987
4577
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
4988
4578
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5211,6 +4801,7 @@ export declare type Dodo_Two_Anniversary_H5_Qa_ActivitysaveData = {
|
|
|
5211
4801
|
};
|
|
5212
4802
|
export declare type DodochainEarnedToken = {
|
|
5213
4803
|
amount: Scalars['BigDecimal']['output'];
|
|
4804
|
+
chainId: Scalars['Int']['output'];
|
|
5214
4805
|
token: DodochainToken;
|
|
5215
4806
|
};
|
|
5216
4807
|
/** 邀请状态 */
|
|
@@ -5279,7 +4870,7 @@ export declare type DodochainToken = {
|
|
|
5279
4870
|
id: Scalars['String']['output'];
|
|
5280
4871
|
name: Scalars['String']['output'];
|
|
5281
4872
|
symbol: Scalars['String']['output'];
|
|
5282
|
-
totalSupply
|
|
4873
|
+
totalSupply?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5283
4874
|
};
|
|
5284
4875
|
export declare type DodochainTvlDetail = {
|
|
5285
4876
|
chainId: Scalars['Int']['output'];
|
|
@@ -5409,47 +5000,495 @@ export declare type DodochainUserTwigsMineResult = {
|
|
|
5409
5000
|
quoteToken: DodochainToken;
|
|
5410
5001
|
quoteTokenBalance: Scalars['BigDecimal']['output'];
|
|
5411
5002
|
stakedUsd: Scalars['BigDecimal']['output'];
|
|
5003
|
+
totalTokenBonus: Array<Maybe<DodochainEarnedToken>>;
|
|
5412
5004
|
totalTwigs: Scalars['BigDecimal']['output'];
|
|
5413
5005
|
tvl: Scalars['BigDecimal']['output'];
|
|
5414
5006
|
updatedAt: Scalars['BigInt']['output'];
|
|
5415
5007
|
};
|
|
5416
|
-
export declare type
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5008
|
+
export declare type Dodochain_ActivityActivityCategorizey = 'Claim' | 'Liquidity' | 'Stake';
|
|
5009
|
+
export declare type Dodochain_ActivityActivityPaginationResult = {
|
|
5010
|
+
categorizey: Dodochain_ActivityActivityCategorizey;
|
|
5011
|
+
count: Scalars['Int']['output'];
|
|
5012
|
+
list: Array<Maybe<Dodochain_ActivityActivityResult>>;
|
|
5013
|
+
page: Scalars['Int']['output'];
|
|
5014
|
+
size: Scalars['Int']['output'];
|
|
5421
5015
|
};
|
|
5422
|
-
export declare type
|
|
5423
|
-
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5016
|
+
export declare type Dodochain_ActivityActivityResult = {
|
|
5017
|
+
hash: Scalars['String']['output'];
|
|
5018
|
+
/** 是一个数组,如果是LP Remove那就是Lp Toekn, 如果是Lp Add那就是一个或多个token */
|
|
5019
|
+
pay: Array<Maybe<Dodochain_ActivityAssetInfo>>;
|
|
5020
|
+
receive: Array<Maybe<Dodochain_ActivityAssetInfo>>;
|
|
5021
|
+
status: Dodochain_ActivityActivityStatus;
|
|
5022
|
+
timestamp: Scalars['Int']['output'];
|
|
5023
|
+
type: Dodochain_ActivityActivityType;
|
|
5427
5024
|
};
|
|
5428
|
-
export declare type
|
|
5429
|
-
|
|
5025
|
+
export declare type Dodochain_ActivityActivityStatus = 'Failed' | 'Loading' | 'Reset' | 'Succeed';
|
|
5026
|
+
export declare type Dodochain_ActivityActivityType = 'Add' | 'Claim' | 'Remove' | 'Stake' | 'Unstake';
|
|
5027
|
+
export declare type Dodochain_ActivityAssetInfo = {
|
|
5028
|
+
amount: Scalars['BigDecimal']['output'];
|
|
5029
|
+
liquidity?: Maybe<Dodochain_ActivityLiquidity>;
|
|
5030
|
+
title: Scalars['String']['output'];
|
|
5031
|
+
token?: Maybe<Dodochain_ActivityToken>;
|
|
5032
|
+
type: Dodochain_ActivityAssetInfoType;
|
|
5033
|
+
};
|
|
5034
|
+
export declare type Dodochain_ActivityAssetInfoType = 'Lp' | 'Token';
|
|
5035
|
+
export declare type Dodochain_ActivityLiquidity = {
|
|
5036
|
+
/** base Token */
|
|
5037
|
+
baseToken?: Maybe<Dodochain_ActivityToken>;
|
|
5038
|
+
/** pool address */
|
|
5039
|
+
pool?: Maybe<Scalars['String']['output']>;
|
|
5040
|
+
/** pool type */
|
|
5041
|
+
poolType?: Maybe<Scalars['String']['output']>;
|
|
5042
|
+
/** quote token */
|
|
5043
|
+
quoteToken?: Maybe<Dodochain_ActivityToken>;
|
|
5044
|
+
};
|
|
5045
|
+
export declare type Dodochain_ActivityToken = {
|
|
5046
|
+
decimals: Scalars['Int']['output'];
|
|
5047
|
+
id: Scalars['String']['output'];
|
|
5048
|
+
name: Scalars['String']['output'];
|
|
5049
|
+
symbol: Scalars['String']['output'];
|
|
5050
|
+
totalSupply?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5051
|
+
};
|
|
5052
|
+
export declare type Dodochain_ActivityUserInput = {
|
|
5053
|
+
user: Scalars['String']['input'];
|
|
5054
|
+
};
|
|
5055
|
+
export declare type Dodochain_ActivityUserPaginationInput = {
|
|
5430
5056
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5431
5057
|
size?: InputMaybe<Scalars['Int']['input']>;
|
|
5432
5058
|
user: Scalars['String']['input'];
|
|
5433
5059
|
};
|
|
5434
|
-
export declare type
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
dodoAmount: Scalars['BigDecimal']['output'];
|
|
5440
|
-
/** donors */
|
|
5441
|
-
donor: Scalars['Bytes']['output'];
|
|
5442
|
-
/** transaction hash - log index */
|
|
5443
|
-
id: Scalars['ID']['output'];
|
|
5444
|
-
/** timestamp */
|
|
5445
|
-
timestamp: Scalars['BigInt']['output'];
|
|
5060
|
+
export declare type Dodochain_AssetsApyData = {
|
|
5061
|
+
miningBaseApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5062
|
+
miningQuoteApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5063
|
+
transactionBaseApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5064
|
+
transactionQuoteApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5446
5065
|
};
|
|
5447
|
-
export declare type
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5066
|
+
export declare type Dodochain_AssetsAssetsData = {
|
|
5067
|
+
claimableRewardsData?: Maybe<Dodochain_AssetsClaimableRewardsData>;
|
|
5068
|
+
lpDepositedData?: Maybe<Dodochain_AssetsLpDepositedData>;
|
|
5069
|
+
stakedData?: Maybe<Dodochain_AssetsStakedData>;
|
|
5070
|
+
walletBalanceData?: Maybe<Dodochain_AssetsWalletBalanceData>;
|
|
5071
|
+
};
|
|
5072
|
+
export declare type Dodochain_AssetsClaimableRewardsData = {
|
|
5073
|
+
list: Array<Maybe<Dodochain_AssetsClaimableRewardsInfo>>;
|
|
5074
|
+
totalUsd: Scalars['BigDecimal']['output'];
|
|
5075
|
+
};
|
|
5076
|
+
export declare type Dodochain_AssetsClaimableRewardsInfo = {
|
|
5077
|
+
liquidity?: Maybe<Dodochain_AssetsLiquidity>;
|
|
5078
|
+
miningPoolInfo?: Maybe<Dodochain_AssetsMiningPoolInfo>;
|
|
5079
|
+
rewards: Array<Maybe<Dodochain_AssetsRewardInfo>>;
|
|
5080
|
+
token?: Maybe<Dodochain_AssetsToken>;
|
|
5081
|
+
usd: Scalars['BigDecimal']['output'];
|
|
5082
|
+
};
|
|
5083
|
+
export declare type Dodochain_AssetsLp = {
|
|
5084
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
5085
|
+
liquidityTokenBalance?: Maybe<Scalars['String']['output']>;
|
|
5086
|
+
liquidityTokenInMining?: Maybe<Scalars['String']['output']>;
|
|
5087
|
+
};
|
|
5088
|
+
export declare type Dodochain_AssetsLiquidity = {
|
|
5089
|
+
apy?: Maybe<Dodochain_AssetsApyData>;
|
|
5090
|
+
/** balance of base token */
|
|
5091
|
+
baseBalance?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5092
|
+
/** balance of base token in mining */
|
|
5093
|
+
baseInMine?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5094
|
+
/** base Token */
|
|
5095
|
+
baseToken?: Maybe<Dodochain_AssetsToken>;
|
|
5096
|
+
baseTokenPrice?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5097
|
+
/** pool address */
|
|
5098
|
+
pool?: Maybe<Scalars['String']['output']>;
|
|
5099
|
+
/** pool type */
|
|
5100
|
+
poolType?: Maybe<Scalars['String']['output']>;
|
|
5101
|
+
/** balance of quote token */
|
|
5102
|
+
quoteBalance?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5103
|
+
/** balance of quote token in mining */
|
|
5104
|
+
quoteInMine?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5105
|
+
/** quote token */
|
|
5106
|
+
quoteToken?: Maybe<Dodochain_AssetsToken>;
|
|
5107
|
+
quoteTokenPrice?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5108
|
+
};
|
|
5109
|
+
export declare type Dodochain_AssetsLiquidityAssetInfo = {
|
|
5110
|
+
liquidity?: Maybe<Dodochain_AssetsLiquidity>;
|
|
5111
|
+
liquidityIsStaked?: Maybe<Scalars['Boolean']['output']>;
|
|
5112
|
+
liquidityPositions?: Maybe<Array<Maybe<Dodochain_AssetsLp>>>;
|
|
5113
|
+
usd: Scalars['BigDecimal']['output'];
|
|
5114
|
+
};
|
|
5115
|
+
export declare type Dodochain_AssetsLpDepositedData = {
|
|
5116
|
+
list: Array<Maybe<Dodochain_AssetsLiquidityAssetInfo>>;
|
|
5117
|
+
totalUsd: Scalars['BigDecimal']['output'];
|
|
5118
|
+
};
|
|
5119
|
+
export declare type Dodochain_AssetsMiningPoolInfo = {
|
|
5120
|
+
miningPoolAddress?: Maybe<Scalars['String']['output']>;
|
|
5121
|
+
stakeTokenAddress?: Maybe<Scalars['String']['output']>;
|
|
5122
|
+
/** miningPool version */
|
|
5123
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
5124
|
+
};
|
|
5125
|
+
export declare type Dodochain_AssetsRewardInfo = {
|
|
5126
|
+
amount: Scalars['BigDecimal']['output'];
|
|
5127
|
+
token?: Maybe<Dodochain_AssetsToken>;
|
|
5128
|
+
usd: Scalars['BigDecimal']['output'];
|
|
5129
|
+
};
|
|
5130
|
+
export declare type Dodochain_AssetsStakedAssetInfo = {
|
|
5131
|
+
liquidity?: Maybe<Dodochain_AssetsLiquidity>;
|
|
5132
|
+
liquidityIsStaked?: Maybe<Scalars['Boolean']['output']>;
|
|
5133
|
+
liquidityPositions?: Maybe<Array<Maybe<Dodochain_AssetsLp>>>;
|
|
5134
|
+
/** 单币挖矿池 */
|
|
5135
|
+
token?: Maybe<Dodochain_AssetsToken>;
|
|
5136
|
+
tokenBalance?: Maybe<Scalars['String']['output']>;
|
|
5137
|
+
usd: Scalars['BigDecimal']['output'];
|
|
5138
|
+
};
|
|
5139
|
+
export declare type Dodochain_AssetsStakedData = {
|
|
5140
|
+
list: Array<Maybe<Dodochain_AssetsStakedAssetInfo>>;
|
|
5141
|
+
totalUsd: Scalars['BigDecimal']['output'];
|
|
5142
|
+
};
|
|
5143
|
+
export declare type Dodochain_AssetsToken = {
|
|
5144
|
+
decimals: Scalars['Int']['output'];
|
|
5145
|
+
id: Scalars['String']['output'];
|
|
5146
|
+
name: Scalars['String']['output'];
|
|
5147
|
+
symbol: Scalars['String']['output'];
|
|
5148
|
+
totalSupply?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5149
|
+
};
|
|
5150
|
+
export declare type Dodochain_AssetsTokenAssetInfo = {
|
|
5151
|
+
amount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5152
|
+
token?: Maybe<Dodochain_AssetsToken>;
|
|
5153
|
+
usd: Scalars['BigDecimal']['output'];
|
|
5154
|
+
};
|
|
5155
|
+
export declare type Dodochain_AssetsUserInput = {
|
|
5156
|
+
user: Scalars['String']['input'];
|
|
5157
|
+
};
|
|
5158
|
+
export declare type Dodochain_AssetsWalletBalanceData = {
|
|
5159
|
+
list: Array<Maybe<Dodochain_AssetsTokenAssetInfo>>;
|
|
5160
|
+
totalUsd: Scalars['BigDecimal']['output'];
|
|
5161
|
+
};
|
|
5162
|
+
export declare type Dodochain_DashboardBridgeDataChart = {
|
|
5163
|
+
list: Array<Maybe<Dodochain_DashboardBridgeDataInfo>>;
|
|
5164
|
+
totalBridgeInUsd: Scalars['BigDecimal']['output'];
|
|
5165
|
+
totalBridgeOutUsd: Scalars['BigDecimal']['output'];
|
|
5166
|
+
};
|
|
5167
|
+
export declare type Dodochain_DashboardBridgeDataChartInput = {
|
|
5168
|
+
/** near ${day} days dat,default:30 */
|
|
5169
|
+
day?: InputMaybe<Scalars['Int']['input']>;
|
|
5170
|
+
tokenSymbolFilter?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5171
|
+
};
|
|
5172
|
+
export declare type Dodochain_DashboardBridgeDataInfo = {
|
|
5173
|
+
bridgeInUsd: Scalars['BigDecimal']['output'];
|
|
5174
|
+
bridgeOutUsd: Scalars['BigDecimal']['output'];
|
|
5175
|
+
chainId: Scalars['Int']['output'];
|
|
5176
|
+
};
|
|
5177
|
+
export declare type Dodochain_DashboardChatInput = {
|
|
5178
|
+
/** near ${day} days dat,default:30 */
|
|
5179
|
+
day?: InputMaybe<Scalars['Int']['input']>;
|
|
5180
|
+
};
|
|
5181
|
+
export declare type Dodochain_DashboardLiquidityStakeChart = {
|
|
5182
|
+
liquidityTvlList: Array<Maybe<Dodochain_DashboardLiquidityTvlInfo>>;
|
|
5183
|
+
mutichainTokenTvlList: Array<Maybe<Dodochain_DashboardMutichainTokenTvlInfo>>;
|
|
5184
|
+
mutichainTvlList: Array<Maybe<Dodochain_DashboardMutichainTvlInfo>>;
|
|
5185
|
+
tradingVolumeList: Array<Maybe<Dodochain_DashboardTradingVolumeInfo>>;
|
|
5186
|
+
};
|
|
5187
|
+
export declare type Dodochain_DashboardLiquidityStakeOverview = {
|
|
5188
|
+
liquidityTvl: Scalars['BigDecimal']['output'];
|
|
5189
|
+
mutichainTvl: Scalars['BigDecimal']['output'];
|
|
5190
|
+
tradingVolume: Scalars['BigDecimal']['output'];
|
|
5191
|
+
};
|
|
5192
|
+
export declare type Dodochain_DashboardLiquidityTvlInfo = {
|
|
5193
|
+
baseAddress: Scalars['String']['output'];
|
|
5194
|
+
baseSymbol: Scalars['String']['output'];
|
|
5195
|
+
chainId: Scalars['Int']['output'];
|
|
5196
|
+
pair: Scalars['String']['output'];
|
|
5197
|
+
quoteAddress: Scalars['String']['output'];
|
|
5198
|
+
quoteSymbol: Scalars['String']['output'];
|
|
5199
|
+
timestamp: Scalars['Int']['output'];
|
|
5200
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5201
|
+
};
|
|
5202
|
+
export declare type Dodochain_DashboardMutichainTokenTvlInfo = {
|
|
5203
|
+
symbol: Scalars['String']['output'];
|
|
5204
|
+
timestamp: Scalars['Int']['output'];
|
|
5205
|
+
/** 获取最大TVL链上的token */
|
|
5206
|
+
token: Dodochain_DashboardToken;
|
|
5207
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5208
|
+
};
|
|
5209
|
+
export declare type Dodochain_DashboardMutichainTvlInfo = {
|
|
5210
|
+
chainId: Scalars['Int']['output'];
|
|
5211
|
+
timestamp: Scalars['Int']['output'];
|
|
5212
|
+
totalTvl: Scalars['BigDecimal']['output'];
|
|
5213
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5214
|
+
};
|
|
5215
|
+
export declare type Dodochain_DashboardOnlyEvmOrBtcInput = {
|
|
5216
|
+
onlyBTC?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5217
|
+
onlyEVM?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5218
|
+
};
|
|
5219
|
+
export declare type Dodochain_DashboardSupportChain = {
|
|
5220
|
+
chainId: Scalars['Int']['output'];
|
|
5221
|
+
tokenList: Array<Maybe<Dodochain_DashboardSupportTokenInfo>>;
|
|
5222
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5223
|
+
};
|
|
5224
|
+
export declare type Dodochain_DashboardSupportChains = {
|
|
5225
|
+
list: Array<Maybe<Dodochain_DashboardSupportChain>>;
|
|
5226
|
+
/** 总TVL */
|
|
5227
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5228
|
+
};
|
|
5229
|
+
export declare type Dodochain_DashboardSupportToken = {
|
|
5230
|
+
chainList: Array<Maybe<Dodochain_DashboardSupportTokenInfo>>;
|
|
5231
|
+
symbol: Scalars['String']['output'];
|
|
5232
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5233
|
+
};
|
|
5234
|
+
export declare type Dodochain_DashboardSupportTokenInfo = {
|
|
5235
|
+
amount: Scalars['BigDecimal']['output'];
|
|
5236
|
+
chainId: Scalars['Int']['output'];
|
|
5237
|
+
ratio: Scalars['BigDecimal']['output'];
|
|
5238
|
+
/** 取不同链上的token信息 */
|
|
5239
|
+
token: Dodochain_DashboardToken;
|
|
5240
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5241
|
+
};
|
|
5242
|
+
export declare type Dodochain_DashboardSupportTokens = {
|
|
5243
|
+
list: Array<Maybe<Dodochain_DashboardSupportToken>>;
|
|
5244
|
+
/** 总TVL */
|
|
5245
|
+
tvl: Scalars['BigDecimal']['output'];
|
|
5246
|
+
};
|
|
5247
|
+
export declare type Dodochain_DashboardToken = {
|
|
5248
|
+
decimals: Scalars['Int']['output'];
|
|
5249
|
+
id: Scalars['String']['output'];
|
|
5250
|
+
name: Scalars['String']['output'];
|
|
5251
|
+
symbol: Scalars['String']['output'];
|
|
5252
|
+
totalSupply?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5253
|
+
};
|
|
5254
|
+
export declare type Dodochain_DashboardTradingVolumeInfo = {
|
|
5255
|
+
baseAddress: Scalars['String']['output'];
|
|
5256
|
+
baseSymbol: Scalars['String']['output'];
|
|
5257
|
+
chainId: Scalars['Int']['output'];
|
|
5258
|
+
pair: Scalars['String']['output'];
|
|
5259
|
+
quoteAddress: Scalars['String']['output'];
|
|
5260
|
+
quoteSymbol: Scalars['String']['output'];
|
|
5261
|
+
timestamp: Scalars['Int']['output'];
|
|
5262
|
+
volume: Scalars['BigDecimal']['output'];
|
|
5263
|
+
};
|
|
5264
|
+
export declare type Dodochain_EarnApyData = {
|
|
5265
|
+
miningBaseApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5266
|
+
miningQuoteApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5267
|
+
transactionBaseApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5268
|
+
transactionQuoteApy?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5269
|
+
};
|
|
5270
|
+
export declare type Dodochain_EarnFilterState = {
|
|
5271
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
5272
|
+
filterASymbol?: InputMaybe<Scalars['String']['input']>;
|
|
5273
|
+
filterBSymbol?: InputMaybe<Scalars['String']['input']>;
|
|
5274
|
+
filterOutOwn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5275
|
+
/** CLASSICAL DVM DPP DSP */
|
|
5276
|
+
filterTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
5277
|
+
hideSmallPrice?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5278
|
+
viewOnlyOwn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5279
|
+
};
|
|
5280
|
+
export declare type Dodochain_EarnLp = {
|
|
5281
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
5282
|
+
liquidityTokenBalance?: Maybe<Scalars['String']['output']>;
|
|
5283
|
+
liquidityTokenInMining?: Maybe<Scalars['String']['output']>;
|
|
5284
|
+
};
|
|
5285
|
+
export declare type Dodochain_EarnListInfo = {
|
|
5286
|
+
chainIds?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
5287
|
+
chains?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5288
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
5289
|
+
lqList?: Maybe<Array<Maybe<Dodochain_EarnLqList>>>;
|
|
5290
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
5291
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5292
|
+
user?: Maybe<Scalars['String']['output']>;
|
|
5293
|
+
};
|
|
5294
|
+
export declare type Dodochain_EarnLpToken = {
|
|
5295
|
+
/** token decimals */
|
|
5296
|
+
decimals: Scalars['BigInt']['output'];
|
|
5297
|
+
/** token address */
|
|
5298
|
+
id: Scalars['ID']['output'];
|
|
5299
|
+
/** token name */
|
|
5300
|
+
name: Scalars['String']['output'];
|
|
5301
|
+
/** token symbol */
|
|
5302
|
+
symbol: Scalars['String']['output'];
|
|
5303
|
+
/** total supply */
|
|
5304
|
+
totalSupply: Scalars['BigInt']['output'];
|
|
5305
|
+
};
|
|
5306
|
+
export declare type Dodochain_EarnLqList = {
|
|
5307
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
5308
|
+
isMyLiquidity?: Maybe<Scalars['Boolean']['output']>;
|
|
5309
|
+
isPrivatePool?: Maybe<Scalars['Boolean']['output']>;
|
|
5310
|
+
/** 和liquidity_list不同的就是是否支持Twigs挖矿 */
|
|
5311
|
+
isTwigsMine?: Maybe<Scalars['Boolean']['output']>;
|
|
5312
|
+
liquidityPositions?: Maybe<Array<Maybe<Dodochain_EarnLp>>>;
|
|
5313
|
+
pair?: Maybe<Dodochain_EarnPair>;
|
|
5314
|
+
};
|
|
5315
|
+
export declare type Dodochain_EarnOrder = {
|
|
5316
|
+
/** updatedAt tvl apy liquidity */
|
|
5317
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
5318
|
+
/** desc asc' */
|
|
5319
|
+
orderDirection?: InputMaybe<Scalars['String']['input']>;
|
|
5320
|
+
};
|
|
5321
|
+
export declare type Dodochain_EarnPair = {
|
|
5322
|
+
apy?: Maybe<Dodochain_EarnApyData>;
|
|
5323
|
+
/** base LP token, for DPP is null, for dodo v1 lpToken is different */
|
|
5324
|
+
baseLpToken?: Maybe<Dodochain_EarnLpToken>;
|
|
5325
|
+
/** base token reserve */
|
|
5326
|
+
baseReserve: Scalars['BigDecimal']['output'];
|
|
5327
|
+
/** base token symbol */
|
|
5328
|
+
baseSymbol?: Maybe<Scalars['String']['output']>;
|
|
5329
|
+
/** base token */
|
|
5330
|
+
baseToken: Dodochain_EarnToken;
|
|
5331
|
+
chain: Scalars['String']['output'];
|
|
5332
|
+
chainId: Scalars['Int']['output'];
|
|
5333
|
+
/** createAtBlock */
|
|
5334
|
+
createdAtBlockNumber: Scalars['BigInt']['output'];
|
|
5335
|
+
/** createAtTimestamp */
|
|
5336
|
+
createdAtTimestamp: Scalars['BigInt']['output'];
|
|
5337
|
+
/** creator */
|
|
5338
|
+
creator: Scalars['Dodochain_earnBytes']['output'];
|
|
5339
|
+
/** lp fee base */
|
|
5340
|
+
feeBase: Scalars['BigDecimal']['output'];
|
|
5341
|
+
/** lp fee quote */
|
|
5342
|
+
feeQuote: Scalars['BigDecimal']['output'];
|
|
5343
|
+
/** lp fee of USD */
|
|
5344
|
+
feeUSD: Scalars['BigDecimal']['output'];
|
|
5345
|
+
/** i */
|
|
5346
|
+
i?: Maybe<Scalars['BigInt']['output']>;
|
|
5347
|
+
/** pool address */
|
|
5348
|
+
id: Scalars['ID']['output'];
|
|
5349
|
+
/** deposit base allowed */
|
|
5350
|
+
isDepositBaseAllowed: Scalars['Boolean']['output'];
|
|
5351
|
+
/** deposit quote allowed */
|
|
5352
|
+
isDepositQuoteAllowed: Scalars['Boolean']['output'];
|
|
5353
|
+
isMining?: Maybe<Scalars['Boolean']['output']>;
|
|
5354
|
+
/** trade allowed */
|
|
5355
|
+
isTradeAllowed: Scalars['Boolean']['output'];
|
|
5356
|
+
/** k */
|
|
5357
|
+
k?: Maybe<Scalars['BigInt']['output']>;
|
|
5358
|
+
/** last trade price (quote/base) */
|
|
5359
|
+
lastTradePrice: Scalars['BigDecimal']['output'];
|
|
5360
|
+
/** liquidity provider count */
|
|
5361
|
+
liquidityProviderCount: Scalars['BigInt']['output'];
|
|
5362
|
+
/** lp Fee Rate */
|
|
5363
|
+
lpFeeRate: Scalars['BigDecimal']['output'];
|
|
5364
|
+
/** maintainer */
|
|
5365
|
+
maintainer: Scalars['Dodochain_earnBytes']['output'];
|
|
5366
|
+
miningAddress?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5367
|
+
/** maintainer fee base token */
|
|
5368
|
+
mtFeeBase: Scalars['BigDecimal']['output'];
|
|
5369
|
+
/** maintainer fee quote token */
|
|
5370
|
+
mtFeeQuote: Scalars['BigDecimal']['output'];
|
|
5371
|
+
/** maintainer fee rate */
|
|
5372
|
+
mtFeeRate: Scalars['BigInt']['output'];
|
|
5373
|
+
/** mtFee Rate Model */
|
|
5374
|
+
mtFeeRateModel: Scalars['Dodochain_earnBytes']['output'];
|
|
5375
|
+
/** maintainer fee in USD */
|
|
5376
|
+
mtFeeUSD: Scalars['BigDecimal']['output'];
|
|
5377
|
+
/** owner */
|
|
5378
|
+
owner?: Maybe<Scalars['Dodochain_earnBytes']['output']>;
|
|
5379
|
+
/** quote LP token,for DPP is null, for dodo v1 lpToken is different */
|
|
5380
|
+
quoteLpToken?: Maybe<Dodochain_EarnLpToken>;
|
|
5381
|
+
/** quote token reserve */
|
|
5382
|
+
quoteReserve: Scalars['BigDecimal']['output'];
|
|
5383
|
+
/** quote token symbol */
|
|
5384
|
+
quoteSymbol?: Maybe<Scalars['String']['output']>;
|
|
5385
|
+
/** quote token */
|
|
5386
|
+
quoteToken: Dodochain_EarnToken;
|
|
5387
|
+
/** pool source(default:null) */
|
|
5388
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
5389
|
+
/** trader count */
|
|
5390
|
+
traderCount: Scalars['BigInt']['output'];
|
|
5391
|
+
tvl?: Maybe<Scalars['BigDecimal']['output']>;
|
|
5392
|
+
/** transactions count */
|
|
5393
|
+
txCount: Scalars['BigInt']['output'];
|
|
5394
|
+
/** pool type(CLASSICAL、DVM、DPP、DSP) */
|
|
5395
|
+
type: Scalars['String']['output'];
|
|
5396
|
+
/** untracked base volume */
|
|
5397
|
+
untrackedBaseVolume: Scalars['BigDecimal']['output'];
|
|
5398
|
+
/** untracked quote volume */
|
|
5399
|
+
untrackedQuoteVolume: Scalars['BigDecimal']['output'];
|
|
5400
|
+
/** trade volume of basetoken */
|
|
5401
|
+
volumeBaseToken: Scalars['BigDecimal']['output'];
|
|
5402
|
+
/** trade volume of quotetoken */
|
|
5403
|
+
volumeQuoteToken: Scalars['BigDecimal']['output'];
|
|
5404
|
+
/** traded volume of USD */
|
|
5405
|
+
volumeUSD: Scalars['BigDecimal']['output'];
|
|
5406
|
+
};
|
|
5407
|
+
export declare type Dodochain_EarnToken = {
|
|
5408
|
+
/** token decimals */
|
|
5409
|
+
decimals: Scalars['BigInt']['output'];
|
|
5410
|
+
/** token address */
|
|
5411
|
+
id: Scalars['ID']['output'];
|
|
5412
|
+
/** token logo img */
|
|
5413
|
+
logoImg?: Maybe<Scalars['String']['output']>;
|
|
5414
|
+
/** token name */
|
|
5415
|
+
name: Scalars['String']['output'];
|
|
5416
|
+
/** price update time */
|
|
5417
|
+
priceUpdateTimestamp: Scalars['BigInt']['output'];
|
|
5418
|
+
/** token symbol */
|
|
5419
|
+
symbol: Scalars['String']['output'];
|
|
5420
|
+
/** timestamp */
|
|
5421
|
+
timestamp: Scalars['BigInt']['output'];
|
|
5422
|
+
/** liquidity across all pairs */
|
|
5423
|
+
totalLiquidityOnDODO: Scalars['BigDecimal']['output'];
|
|
5424
|
+
/** total supply */
|
|
5425
|
+
totalSupply: Scalars['BigInt']['output'];
|
|
5426
|
+
/** total trade volume */
|
|
5427
|
+
tradeVolume: Scalars['BigDecimal']['output'];
|
|
5428
|
+
/** total trade volume for bridge */
|
|
5429
|
+
tradeVolumeBridge: Scalars['BigDecimal']['output'];
|
|
5430
|
+
/** trader count */
|
|
5431
|
+
traderCount: Scalars['BigInt']['output'];
|
|
5432
|
+
/** transactions across all pairs */
|
|
5433
|
+
txCount: Scalars['BigInt']['output'];
|
|
5434
|
+
/** untracked volume */
|
|
5435
|
+
untrackedVolume: Scalars['BigDecimal']['output'];
|
|
5436
|
+
/** usd price(only stable coin and classical pool has usd price) */
|
|
5437
|
+
usdPrice: Scalars['BigDecimal']['output'];
|
|
5438
|
+
/** traded volume of USD */
|
|
5439
|
+
volumeUSD: Scalars['BigDecimal']['output'];
|
|
5440
|
+
/** traded volume of USD for bridge */
|
|
5441
|
+
volumeUSDBridge: Scalars['BigDecimal']['output'];
|
|
5442
|
+
};
|
|
5443
|
+
export declare type Dodochain_Earnlist_Filter = {
|
|
5444
|
+
/** This field has been discarded for compatibility with the previous interface */
|
|
5445
|
+
chain?: InputMaybe<Scalars['String']['input']>;
|
|
5446
|
+
/** The default is all chains, including test chains */
|
|
5447
|
+
chainIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
5448
|
+
currentPage?: InputMaybe<Scalars['Int']['input']>;
|
|
5449
|
+
filterState?: InputMaybe<Dodochain_EarnFilterState>;
|
|
5450
|
+
order?: InputMaybe<Dodochain_EarnOrder>;
|
|
5451
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
5452
|
+
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5453
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
5454
|
+
};
|
|
5455
|
+
export declare type DodochaintwigsMineInput = {
|
|
5456
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
5457
|
+
order?: InputMaybe<DodochainOrder>;
|
|
5458
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5459
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
5460
|
+
};
|
|
5461
|
+
export declare type DodochainuserStakedInput = {
|
|
5462
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
5463
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5464
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
5465
|
+
user?: InputMaybe<Scalars['String']['input']>;
|
|
5466
|
+
};
|
|
5467
|
+
export declare type DodochainuserTwigsMineInput = {
|
|
5468
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
5469
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5470
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
5471
|
+
user: Scalars['String']['input'];
|
|
5472
|
+
};
|
|
5473
|
+
export declare type DonateHistory = {
|
|
5474
|
+
/** block */
|
|
5475
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
5476
|
+
chain: Scalars['String']['output'];
|
|
5477
|
+
/** dodoAmount */
|
|
5478
|
+
dodoAmount: Scalars['BigDecimal']['output'];
|
|
5479
|
+
/** donors */
|
|
5480
|
+
donor: Scalars['Bytes']['output'];
|
|
5481
|
+
/** transaction hash - log index */
|
|
5482
|
+
id: Scalars['ID']['output'];
|
|
5483
|
+
/** timestamp */
|
|
5484
|
+
timestamp: Scalars['BigInt']['output'];
|
|
5485
|
+
};
|
|
5486
|
+
export declare type DonateHistory_Filter = {
|
|
5487
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5488
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5489
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5490
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
5491
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5453
5492
|
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5454
5493
|
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5455
5494
|
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
@@ -5741,55 +5780,6 @@ export declare type Erc20relationListFilter = {
|
|
|
5741
5780
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5742
5781
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
5743
5782
|
};
|
|
5744
|
-
export declare type Event = {
|
|
5745
|
-
id: Scalars['ID']['output'];
|
|
5746
|
-
timestamp: Scalars['BigInt']['output'];
|
|
5747
|
-
transaction: Transaction;
|
|
5748
|
-
};
|
|
5749
|
-
export declare type Event_Filter = {
|
|
5750
|
-
/** Filter for the block changed event. */
|
|
5751
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5752
|
-
and?: InputMaybe<Array<InputMaybe<Event_Filter>>>;
|
|
5753
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5754
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
5755
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
5756
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5757
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
5758
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
5759
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
5760
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5761
|
-
or?: InputMaybe<Array<InputMaybe<Event_Filter>>>;
|
|
5762
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5763
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5764
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5765
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
5766
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5767
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5768
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
5769
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
5770
|
-
transaction?: InputMaybe<Scalars['String']['input']>;
|
|
5771
|
-
transaction_?: InputMaybe<Transaction_Filter>;
|
|
5772
|
-
transaction_contains?: InputMaybe<Scalars['String']['input']>;
|
|
5773
|
-
transaction_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5774
|
-
transaction_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
5775
|
-
transaction_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5776
|
-
transaction_gt?: InputMaybe<Scalars['String']['input']>;
|
|
5777
|
-
transaction_gte?: InputMaybe<Scalars['String']['input']>;
|
|
5778
|
-
transaction_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5779
|
-
transaction_lt?: InputMaybe<Scalars['String']['input']>;
|
|
5780
|
-
transaction_lte?: InputMaybe<Scalars['String']['input']>;
|
|
5781
|
-
transaction_not?: InputMaybe<Scalars['String']['input']>;
|
|
5782
|
-
transaction_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
5783
|
-
transaction_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5784
|
-
transaction_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
5785
|
-
transaction_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5786
|
-
transaction_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5787
|
-
transaction_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
5788
|
-
transaction_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5789
|
-
transaction_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
5790
|
-
transaction_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
5791
|
-
};
|
|
5792
|
-
export declare type Event_OrderBy = 'id' | 'timestamp' | 'transaction' | 'transaction__blockNumber' | 'transaction__id' | 'transaction__timestamp';
|
|
5793
5783
|
export declare type Filter = {
|
|
5794
5784
|
/** filter admin address */
|
|
5795
5785
|
admin: FilterAdmin;
|
|
@@ -7154,7 +7144,9 @@ export declare type LiquidityCountData = {
|
|
|
7154
7144
|
};
|
|
7155
7145
|
export declare type LiquidityFilterState = {
|
|
7156
7146
|
address?: InputMaybe<Scalars['String']['input']>;
|
|
7147
|
+
filterAAddress?: InputMaybe<Scalars['String']['input']>;
|
|
7157
7148
|
filterASymbol?: InputMaybe<Scalars['String']['input']>;
|
|
7149
|
+
filterBAddress?: InputMaybe<Scalars['String']['input']>;
|
|
7158
7150
|
filterBSymbol?: InputMaybe<Scalars['String']['input']>;
|
|
7159
7151
|
filterOutOwn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7160
7152
|
/** CLASSICAL DVM DPP DSP */
|
|
@@ -7465,6 +7457,25 @@ export declare type LiquidityListInfo = {
|
|
|
7465
7457
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
7466
7458
|
user?: Maybe<Scalars['String']['output']>;
|
|
7467
7459
|
};
|
|
7460
|
+
export declare type LiquidityLpPartnerRewards = {
|
|
7461
|
+
chainId?: Maybe<Scalars['Int']['output']>;
|
|
7462
|
+
/** 跳转链接 */
|
|
7463
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
7464
|
+
partner?: Maybe<Scalars['String']['output']>;
|
|
7465
|
+
pool?: Maybe<Scalars['String']['output']>;
|
|
7466
|
+
/** 显示的奖励标题, 如 10XP */
|
|
7467
|
+
reward?: Maybe<Scalars['String']['output']>;
|
|
7468
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
7469
|
+
};
|
|
7470
|
+
export declare type LiquidityLpPartnerRewardsInput = {
|
|
7471
|
+
chainId?: InputMaybe<Scalars['Int']['input']>;
|
|
7472
|
+
partner?: InputMaybe<Scalars['String']['input']>;
|
|
7473
|
+
pool?: InputMaybe<Scalars['String']['input']>;
|
|
7474
|
+
};
|
|
7475
|
+
export declare type LiquidityLpPartnerRewardsResult = {
|
|
7476
|
+
partnerInfos?: Maybe<Array<Maybe<LiquidityPartnerInfo>>>;
|
|
7477
|
+
partnerRewards?: Maybe<Array<Maybe<LiquidityLpPartnerRewards>>>;
|
|
7478
|
+
};
|
|
7468
7479
|
export declare type LiquidityLpToken = {
|
|
7469
7480
|
/** token decimals */
|
|
7470
7481
|
decimals: Scalars['BigInt']['output'];
|
|
@@ -7576,6 +7587,15 @@ export declare type LiquidityPair = {
|
|
|
7576
7587
|
/** traded volume of USD */
|
|
7577
7588
|
volumeUSD: Scalars['BigDecimal']['output'];
|
|
7578
7589
|
};
|
|
7590
|
+
export declare type LiquidityPartnerInfo = {
|
|
7591
|
+
/** 扩展信息等 */
|
|
7592
|
+
extra?: Maybe<Scalars['JSON']['output']>;
|
|
7593
|
+
/** 协议介绍 */
|
|
7594
|
+
introduction?: Maybe<Scalars['String']['output']>;
|
|
7595
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
7596
|
+
logo?: Maybe<Scalars['String']['output']>;
|
|
7597
|
+
partner?: Maybe<Scalars['String']['output']>;
|
|
7598
|
+
};
|
|
7579
7599
|
export declare type LiquidityPoolApy = {
|
|
7580
7600
|
apy?: Maybe<Scalars['String']['output']>;
|
|
7581
7601
|
pool?: Maybe<Scalars['String']['output']>;
|
|
@@ -8589,7 +8609,10 @@ export declare type MiningMiningInfo = {
|
|
|
8589
8609
|
isDVM?: Maybe<Scalars['Boolean']['output']>;
|
|
8590
8610
|
/** 是否结束了 */
|
|
8591
8611
|
isEnded?: Maybe<Scalars['Boolean']['output']>;
|
|
8612
|
+
isGSP?: Maybe<Scalars['Boolean']['output']>;
|
|
8592
8613
|
isMiningAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
8614
|
+
/** 是否是新的v3,支持fundAndSet方法 */
|
|
8615
|
+
isNewERCMineV3?: Maybe<Scalars['Boolean']['output']>;
|
|
8593
8616
|
isPoolAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
8594
8617
|
isSingle?: Maybe<Scalars['Boolean']['output']>;
|
|
8595
8618
|
/** 挖矿是否开始了 */
|
|
@@ -8631,7 +8654,7 @@ export declare type MiningMiningInfo = {
|
|
|
8631
8654
|
totalBaseTokenAmount?: Maybe<Scalars['String']['output']>;
|
|
8632
8655
|
/** 原始quoteToken数量 */
|
|
8633
8656
|
totalQuoteTokenAmount?: Maybe<Scalars['String']['output']>;
|
|
8634
|
-
/** 'dvm' | 'single' | 'classical' | 'vdodo' | 'lptoken' | 'dsp' | 'd3token' */
|
|
8657
|
+
/** 'dvm' | 'single' | 'classical' | 'vdodo' | 'lptoken' |startTime 'dsp' | 'd3token' | 'gsp' */
|
|
8635
8658
|
type?: Maybe<Scalars['String']['output']>;
|
|
8636
8659
|
/** 2,3 */
|
|
8637
8660
|
version?: Maybe<Scalars['String']['output']>;
|
|
@@ -8652,7 +8675,7 @@ export declare type MiningMiningListInfo = {
|
|
|
8652
8675
|
user?: Maybe<Scalars['String']['output']>;
|
|
8653
8676
|
};
|
|
8654
8677
|
export declare type MiningOrder = {
|
|
8655
|
-
/** apy */
|
|
8678
|
+
/** apy | startBlock | endBlock */
|
|
8656
8679
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
8657
8680
|
/** desc asc' */
|
|
8658
8681
|
orderDirection?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8721,7 +8744,29 @@ export declare type MiningPool_Filter = {
|
|
|
8721
8744
|
updatedAt_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
8722
8745
|
updatedAt_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
8723
8746
|
};
|
|
8724
|
-
export declare type MiningPool_OrderBy = 'chain' | 'id' | 'lpToken' | 'updatedAt';
|
|
8747
|
+
export declare type MiningPool_OrderBy = 'chain' | 'id' | 'lpToken' | 'updatedAt';
|
|
8748
|
+
export declare type MiningRewardDetailHistory = {
|
|
8749
|
+
accRewardPerShare: Scalars['String']['output'];
|
|
8750
|
+
blockNumber: Scalars['String']['output'];
|
|
8751
|
+
endBlock: Scalars['String']['output'];
|
|
8752
|
+
hash: Scalars['String']['output'];
|
|
8753
|
+
i: Scalars['Int']['output'];
|
|
8754
|
+
lastRewardBlock: Scalars['String']['output'];
|
|
8755
|
+
rewardPerBlock: Scalars['String']['output'];
|
|
8756
|
+
startBlock: Scalars['String']['output'];
|
|
8757
|
+
timestamp: Scalars['String']['output'];
|
|
8758
|
+
token: MiningToken;
|
|
8759
|
+
type: Scalars['String']['output'];
|
|
8760
|
+
};
|
|
8761
|
+
export declare type MiningRewardDetailHistoryListInfo = {
|
|
8762
|
+
/** 当前页 */
|
|
8763
|
+
currentPage?: Maybe<Scalars['Int']['output']>;
|
|
8764
|
+
list?: Maybe<Array<Maybe<MiningRewardDetailHistory>>>;
|
|
8765
|
+
/** 一页多少条 */
|
|
8766
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
8767
|
+
/** 总条数 */
|
|
8768
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
8769
|
+
};
|
|
8725
8770
|
/** reward info */
|
|
8726
8771
|
export declare type MiningRewardToken = {
|
|
8727
8772
|
/** 奖励的APY */
|
|
@@ -8776,6 +8821,14 @@ export declare type Miningmining_List_Filter = {
|
|
|
8776
8821
|
/** 如果不是查用户相关的挖矿池,不建议传,传了会每次都查一次数据库 */
|
|
8777
8822
|
user?: InputMaybe<Scalars['String']['input']>;
|
|
8778
8823
|
};
|
|
8824
|
+
export declare type MiningrewardDetailHistory_Filter = {
|
|
8825
|
+
address: Scalars['String']['input'];
|
|
8826
|
+
chainId: Scalars['Int']['input'];
|
|
8827
|
+
currentPage?: InputMaybe<Scalars['Int']['input']>;
|
|
8828
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
8829
|
+
/** NewRewardToken | UpdateEndBlock | UpdateReward | RemoveRewardToken | FundAndSet */
|
|
8830
|
+
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
8831
|
+
};
|
|
8779
8832
|
export declare type MintHistory = {
|
|
8780
8833
|
/** dodo amount */
|
|
8781
8834
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -9489,27 +9542,12 @@ export declare type OrderHistory_OrderBy = 'amountIn' | 'amountOut' | 'block' |
|
|
|
9489
9542
|
export declare type Owner = {
|
|
9490
9543
|
chain: Scalars['String']['output'];
|
|
9491
9544
|
id: Scalars['ID']['output'];
|
|
9492
|
-
numTokens: Scalars['BigInt']['output'];
|
|
9493
|
-
tokens: Array<Token>;
|
|
9494
|
-
};
|
|
9495
|
-
export declare type OwnerTokensArgs = {
|
|
9496
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9497
|
-
orderBy?: InputMaybe<Token_OrderBy>;
|
|
9498
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
9499
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
9500
|
-
where?: InputMaybe<Token_Filter>;
|
|
9501
9545
|
};
|
|
9502
9546
|
export declare type OwnerPerTokenContract = {
|
|
9503
9547
|
chain: Scalars['String']['output'];
|
|
9504
|
-
contract: TokenContract;
|
|
9505
9548
|
id: Scalars['ID']['output'];
|
|
9506
|
-
numTokens: Scalars['BigInt']['output'];
|
|
9507
|
-
owner: Owner;
|
|
9508
9549
|
};
|
|
9509
9550
|
export declare type OwnerPerTokenContract_Filter = {
|
|
9510
|
-
/** Filter for the block changed event. */
|
|
9511
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
9512
|
-
and?: InputMaybe<Array<InputMaybe<OwnerPerTokenContract_Filter>>>;
|
|
9513
9551
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
9514
9552
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
9515
9553
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9524,27 +9562,6 @@ export declare type OwnerPerTokenContract_Filter = {
|
|
|
9524
9562
|
chain_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9525
9563
|
chain_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
9526
9564
|
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
9527
|
-
contract?: InputMaybe<Scalars['String']['input']>;
|
|
9528
|
-
contract_?: InputMaybe<TokenContract_Filter>;
|
|
9529
|
-
contract_contains?: InputMaybe<Scalars['String']['input']>;
|
|
9530
|
-
contract_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9531
|
-
contract_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
9532
|
-
contract_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9533
|
-
contract_gt?: InputMaybe<Scalars['String']['input']>;
|
|
9534
|
-
contract_gte?: InputMaybe<Scalars['String']['input']>;
|
|
9535
|
-
contract_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9536
|
-
contract_lt?: InputMaybe<Scalars['String']['input']>;
|
|
9537
|
-
contract_lte?: InputMaybe<Scalars['String']['input']>;
|
|
9538
|
-
contract_not?: InputMaybe<Scalars['String']['input']>;
|
|
9539
|
-
contract_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
9540
|
-
contract_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9541
|
-
contract_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
9542
|
-
contract_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9543
|
-
contract_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9544
|
-
contract_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
9545
|
-
contract_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9546
|
-
contract_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
9547
|
-
contract_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9548
9565
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
9549
9566
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
9550
9567
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -9553,45 +9570,12 @@ export declare type OwnerPerTokenContract_Filter = {
|
|
|
9553
9570
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
9554
9571
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
9555
9572
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9556
|
-
numTokens?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9557
|
-
numTokens_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9558
|
-
numTokens_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9559
|
-
numTokens_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
9560
|
-
numTokens_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9561
|
-
numTokens_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9562
|
-
numTokens_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9563
|
-
numTokens_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
9564
|
-
or?: InputMaybe<Array<InputMaybe<OwnerPerTokenContract_Filter>>>;
|
|
9565
|
-
owner?: InputMaybe<Scalars['String']['input']>;
|
|
9566
|
-
owner_?: InputMaybe<Owner_Filter>;
|
|
9567
|
-
owner_contains?: InputMaybe<Scalars['String']['input']>;
|
|
9568
|
-
owner_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9569
|
-
owner_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
9570
|
-
owner_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9571
|
-
owner_gt?: InputMaybe<Scalars['String']['input']>;
|
|
9572
|
-
owner_gte?: InputMaybe<Scalars['String']['input']>;
|
|
9573
|
-
owner_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9574
|
-
owner_lt?: InputMaybe<Scalars['String']['input']>;
|
|
9575
|
-
owner_lte?: InputMaybe<Scalars['String']['input']>;
|
|
9576
|
-
owner_not?: InputMaybe<Scalars['String']['input']>;
|
|
9577
|
-
owner_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
9578
|
-
owner_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9579
|
-
owner_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
9580
|
-
owner_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9581
|
-
owner_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9582
|
-
owner_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
9583
|
-
owner_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9584
|
-
owner_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
9585
|
-
owner_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
9586
9573
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9587
9574
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
9588
9575
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
9589
9576
|
};
|
|
9590
|
-
export declare type OwnerPerTokenContract_OrderBy = 'chain' | '
|
|
9577
|
+
export declare type OwnerPerTokenContract_OrderBy = 'chain' | 'id';
|
|
9591
9578
|
export declare type Owner_Filter = {
|
|
9592
|
-
/** Filter for the block changed event. */
|
|
9593
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
9594
|
-
and?: InputMaybe<Array<InputMaybe<Owner_Filter>>>;
|
|
9595
9579
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
9596
9580
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
9597
9581
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9614,21 +9598,11 @@ export declare type Owner_Filter = {
|
|
|
9614
9598
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
9615
9599
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
9616
9600
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9617
|
-
numTokens?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9618
|
-
numTokens_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9619
|
-
numTokens_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9620
|
-
numTokens_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
9621
|
-
numTokens_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9622
|
-
numTokens_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9623
|
-
numTokens_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
9624
|
-
numTokens_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
9625
|
-
or?: InputMaybe<Array<InputMaybe<Owner_Filter>>>;
|
|
9626
9601
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9627
9602
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
9628
9603
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
9629
|
-
tokens_?: InputMaybe<Token_Filter>;
|
|
9630
9604
|
};
|
|
9631
|
-
export declare type Owner_OrderBy = 'chain' | 'id'
|
|
9605
|
+
export declare type Owner_OrderBy = 'chain' | 'id';
|
|
9632
9606
|
export declare type Pair = {
|
|
9633
9607
|
/** base LP token, for DPP is null, for dodo v1 lpToken is different */
|
|
9634
9608
|
baseLpToken?: Maybe<LpToken>;
|
|
@@ -10809,17 +10783,12 @@ export declare type Pairhots_List_Info_Filter = {
|
|
|
10809
10783
|
export declare type PersistentString = {
|
|
10810
10784
|
chain: Scalars['String']['output'];
|
|
10811
10785
|
id: Scalars['ID']['output'];
|
|
10812
|
-
value: Scalars['String']['output'];
|
|
10813
10786
|
};
|
|
10814
10787
|
export declare type PersistentStringArray = {
|
|
10815
10788
|
chain: Scalars['String']['output'];
|
|
10816
10789
|
id: Scalars['ID']['output'];
|
|
10817
|
-
values: Array<Scalars['String']['output']>;
|
|
10818
10790
|
};
|
|
10819
10791
|
export declare type PersistentStringArray_Filter = {
|
|
10820
|
-
/** Filter for the block changed event. */
|
|
10821
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
10822
|
-
and?: InputMaybe<Array<InputMaybe<PersistentStringArray_Filter>>>;
|
|
10823
10792
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
10824
10793
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
10825
10794
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10842,22 +10811,12 @@ export declare type PersistentStringArray_Filter = {
|
|
|
10842
10811
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
10843
10812
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
10844
10813
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10845
|
-
or?: InputMaybe<Array<InputMaybe<PersistentStringArray_Filter>>>;
|
|
10846
10814
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10847
10815
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
10848
10816
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
10849
|
-
|
|
10850
|
-
|
|
10851
|
-
values_contains_nocase?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10852
|
-
values_not?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10853
|
-
values_not_contains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10854
|
-
values_not_contains_nocase?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10855
|
-
};
|
|
10856
|
-
export declare type PersistentStringArray_OrderBy = 'chain' | 'id' | 'values';
|
|
10817
|
+
};
|
|
10818
|
+
export declare type PersistentStringArray_OrderBy = 'chain' | 'id';
|
|
10857
10819
|
export declare type PersistentString_Filter = {
|
|
10858
|
-
/** Filter for the block changed event. */
|
|
10859
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
10860
|
-
and?: InputMaybe<Array<InputMaybe<PersistentString_Filter>>>;
|
|
10861
10820
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
10862
10821
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
10863
10822
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -10880,32 +10839,11 @@ export declare type PersistentString_Filter = {
|
|
|
10880
10839
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
10881
10840
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
10882
10841
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
10883
|
-
or?: InputMaybe<Array<InputMaybe<PersistentString_Filter>>>;
|
|
10884
10842
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10885
10843
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
10886
10844
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
10887
|
-
|
|
10888
|
-
|
|
10889
|
-
value_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
10890
|
-
value_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
10891
|
-
value_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
10892
|
-
value_gt?: InputMaybe<Scalars['String']['input']>;
|
|
10893
|
-
value_gte?: InputMaybe<Scalars['String']['input']>;
|
|
10894
|
-
value_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10895
|
-
value_lt?: InputMaybe<Scalars['String']['input']>;
|
|
10896
|
-
value_lte?: InputMaybe<Scalars['String']['input']>;
|
|
10897
|
-
value_not?: InputMaybe<Scalars['String']['input']>;
|
|
10898
|
-
value_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
10899
|
-
value_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
10900
|
-
value_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
10901
|
-
value_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
10902
|
-
value_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
10903
|
-
value_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
10904
|
-
value_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
10905
|
-
value_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
10906
|
-
value_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
10907
|
-
};
|
|
10908
|
-
export declare type PersistentString_OrderBy = 'chain' | 'id' | 'value';
|
|
10845
|
+
};
|
|
10846
|
+
export declare type PersistentString_OrderBy = 'chain' | 'id';
|
|
10909
10847
|
export declare type Pool = {
|
|
10910
10848
|
allFlag: Scalars['BigInt']['output'];
|
|
10911
10849
|
/** Block number of this event */
|
|
@@ -12215,8 +12153,6 @@ export declare type Query = {
|
|
|
12215
12153
|
bidHistory?: Maybe<BidHistory>;
|
|
12216
12154
|
bidPosition?: Maybe<BidPosition>;
|
|
12217
12155
|
bidPositions: Array<BidPosition>;
|
|
12218
|
-
block?: Maybe<Block>;
|
|
12219
|
-
blocks: Array<Block>;
|
|
12220
12156
|
/** 获取 RPC 节点,缓存1分钟,每分钟重新排序;排序规则:可访问 > 响应速度 > 区块高度 */
|
|
12221
12157
|
browser_getRpc: Scalars['JSON']['output'];
|
|
12222
12158
|
chart_getOhlcv2Chart: Array<Maybe<Array<Maybe<Scalars['String']['output']>>>>;
|
|
@@ -12238,13 +12174,16 @@ export declare type Query = {
|
|
|
12238
12174
|
components: Array<Component>;
|
|
12239
12175
|
controller?: Maybe<Controller>;
|
|
12240
12176
|
controllers: Array<Controller>;
|
|
12177
|
+
cross_chain_swap_dodoOrderList?: Maybe<Cross_Chain_SwapCrossChainOrderList>;
|
|
12241
12178
|
cross_chain_swap_orderCreate?: Maybe<Cross_Chain_SwapCrossChainOrderCreate>;
|
|
12242
12179
|
cross_chain_swap_orderDetail?: Maybe<Cross_Chain_SwapCrossChainOrderDetail>;
|
|
12243
12180
|
cross_chain_swap_orderList?: Maybe<Cross_Chain_SwapCrossChainOrderList>;
|
|
12244
12181
|
cross_chain_swap_orderNewStatus?: Maybe<Array<Maybe<Cross_Chain_SwapCrossChainOrderNewStatusList>>>;
|
|
12182
|
+
cross_chain_swap_orderRefundCount?: Maybe<Cross_Chain_SwapOrderRefundCountResult>;
|
|
12245
12183
|
cross_chain_swap_routesV2?: Maybe<Cross_Chain_SwapCrossChainRouteV2>;
|
|
12246
12184
|
cross_chain_swap_transactionEncode?: Maybe<Cross_Chain_SwapCrossChainTransactionEncode>;
|
|
12247
12185
|
cross_chain_token_list?: Maybe<Cross_Chain_TokenCrossChainTokenlist>;
|
|
12186
|
+
cross_chain_token_tokenPair?: Maybe<Cross_Chain_TokenCrossChainTokenPair>;
|
|
12248
12187
|
crowdPooling?: Maybe<CrowdPooling>;
|
|
12249
12188
|
crowdPoolingDayData?: Maybe<CrowdPoolingDayData>;
|
|
12250
12189
|
crowdPoolingDayDatas: Array<CrowdPoolingDayData>;
|
|
@@ -12335,6 +12274,22 @@ export declare type Query = {
|
|
|
12335
12274
|
dodo_two_anniversary_h5_qa_activity_save?: Maybe<Dodo_Two_Anniversary_H5_Qa_ActivitySaveDodoTwoAnniversaryH5QaActivity>;
|
|
12336
12275
|
/** 接受邀请 */
|
|
12337
12276
|
dodochain_acceptInvite: Scalars['Boolean']['output'];
|
|
12277
|
+
dodochain_activity_getClaimActivity: Dodochain_ActivityActivityPaginationResult;
|
|
12278
|
+
dodochain_activity_getLiquidityActivity: Dodochain_ActivityActivityPaginationResult;
|
|
12279
|
+
dodochain_activity_getStakeActivity: Dodochain_ActivityActivityPaginationResult;
|
|
12280
|
+
dodochain_assets_getAssetsData: Dodochain_AssetsAssetsData;
|
|
12281
|
+
dodochain_assets_getClaimableRewardsData: Dodochain_AssetsClaimableRewardsData;
|
|
12282
|
+
dodochain_assets_getLpDepositedData: Dodochain_AssetsLpDepositedData;
|
|
12283
|
+
dodochain_assets_getStakedData: Dodochain_AssetsStakedData;
|
|
12284
|
+
dodochain_assets_getWalletBalanceData: Dodochain_AssetsWalletBalanceData;
|
|
12285
|
+
dodochain_dashboard_getBridgeDataChart: Dodochain_DashboardBridgeDataChart;
|
|
12286
|
+
dodochain_dashboard_getLiquidityStakeChart: Dodochain_DashboardLiquidityStakeChart;
|
|
12287
|
+
dodochain_dashboard_getLiquidityStakeOverview: Dodochain_DashboardLiquidityStakeOverview;
|
|
12288
|
+
/** dashboard SupportChains */
|
|
12289
|
+
dodochain_dashboard_getSupportChains: Dodochain_DashboardSupportChains;
|
|
12290
|
+
/** dashboard SupportTokens */
|
|
12291
|
+
dodochain_dashboard_getSupportTokens: Dodochain_DashboardSupportTokens;
|
|
12292
|
+
dodochain_earn_list?: Maybe<Dodochain_EarnListInfo>;
|
|
12338
12293
|
/** 获取邀请码 */
|
|
12339
12294
|
dodochain_getInviteCode: Scalars['String']['output'];
|
|
12340
12295
|
/** 查看被邀请状态 */
|
|
@@ -12375,8 +12330,6 @@ export declare type Query = {
|
|
|
12375
12330
|
erc20_listV2?: Maybe<Array<Maybe<Erc20Erc20V2List>>>;
|
|
12376
12331
|
erc20_relationList?: Maybe<Array<Maybe<Erc20RelationList>>>;
|
|
12377
12332
|
erc20_swapCrossChainList?: Maybe<Array<Maybe<Erc20Erc20V2List>>>;
|
|
12378
|
-
event?: Maybe<Event>;
|
|
12379
|
-
events: Array<Event>;
|
|
12380
12333
|
filter?: Maybe<Filter>;
|
|
12381
12334
|
filterAdmin?: Maybe<FilterAdmin>;
|
|
12382
12335
|
filterAdmins: Array<FilterAdmin>;
|
|
@@ -12412,6 +12365,7 @@ export declare type Query = {
|
|
|
12412
12365
|
liquidityPosition?: Maybe<LiquidityPosition>;
|
|
12413
12366
|
liquidityPositions: Array<LiquidityPosition>;
|
|
12414
12367
|
liquidity_count_data?: Maybe<LiquidityCountData>;
|
|
12368
|
+
liquidity_getLpPartnerRewards?: Maybe<LiquidityLpPartnerRewardsResult>;
|
|
12415
12369
|
liquidity_list?: Maybe<LiquidityListInfo>;
|
|
12416
12370
|
liquidity_pool_apy_user?: Maybe<Array<Maybe<LiquidityPoolApy>>>;
|
|
12417
12371
|
lpToken?: Maybe<LpToken>;
|
|
@@ -12433,6 +12387,7 @@ export declare type Query = {
|
|
|
12433
12387
|
miningPools: Array<MiningPool>;
|
|
12434
12388
|
mining_dodo?: Maybe<MiningDodoData>;
|
|
12435
12389
|
mining_dpp?: Maybe<MiningDppData>;
|
|
12390
|
+
mining_getRewardDetailHistory?: Maybe<MiningRewardDetailHistoryListInfo>;
|
|
12436
12391
|
/** data url:post(https://host:port/mining/info).data */
|
|
12437
12392
|
mining_info?: Maybe<MiningMiningInfo>;
|
|
12438
12393
|
mining_infos?: Maybe<MiningMiningInfos>;
|
|
@@ -12792,18 +12747,6 @@ export declare type QueryBidPositionsArgs = {
|
|
|
12792
12747
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
12793
12748
|
where?: InputMaybe<BidPosition_Filter>;
|
|
12794
12749
|
};
|
|
12795
|
-
export declare type QueryBlockArgs = {
|
|
12796
|
-
block?: InputMaybe<Block_Height>;
|
|
12797
|
-
id: Scalars['ID']['input'];
|
|
12798
|
-
};
|
|
12799
|
-
export declare type QueryBlocksArgs = {
|
|
12800
|
-
block?: InputMaybe<Block_Height>;
|
|
12801
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12802
|
-
orderBy?: InputMaybe<Block_OrderBy>;
|
|
12803
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
12804
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
12805
|
-
where?: InputMaybe<Block_Filter>;
|
|
12806
|
-
};
|
|
12807
12750
|
export declare type QueryBrowser_GetRpcArgs = {
|
|
12808
12751
|
where: BrowserChainInput;
|
|
12809
12752
|
};
|
|
@@ -12921,6 +12864,9 @@ export declare type QueryControllersArgs = {
|
|
|
12921
12864
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
12922
12865
|
where?: InputMaybe<Controller_Filter>;
|
|
12923
12866
|
};
|
|
12867
|
+
export declare type QueryCross_Chain_Swap_DodoOrderListArgs = {
|
|
12868
|
+
where?: InputMaybe<Cross_Chain_SwapdodoOrderListData>;
|
|
12869
|
+
};
|
|
12924
12870
|
export declare type QueryCross_Chain_Swap_OrderCreateArgs = {
|
|
12925
12871
|
data?: InputMaybe<Cross_Chain_SwaporderCreateData>;
|
|
12926
12872
|
};
|
|
@@ -12933,6 +12879,9 @@ export declare type QueryCross_Chain_Swap_OrderListArgs = {
|
|
|
12933
12879
|
export declare type QueryCross_Chain_Swap_OrderNewStatusArgs = {
|
|
12934
12880
|
where?: InputMaybe<Cross_Chain_SwaporderNewStatusData>;
|
|
12935
12881
|
};
|
|
12882
|
+
export declare type QueryCross_Chain_Swap_OrderRefundCountArgs = {
|
|
12883
|
+
where?: InputMaybe<Cross_Chain_SwaporderRefundCountData>;
|
|
12884
|
+
};
|
|
12936
12885
|
export declare type QueryCross_Chain_Swap_RoutesV2Args = {
|
|
12937
12886
|
data?: InputMaybe<Cross_Chain_SwaprouteData>;
|
|
12938
12887
|
};
|
|
@@ -12942,6 +12891,9 @@ export declare type QueryCross_Chain_Swap_TransactionEncodeArgs = {
|
|
|
12942
12891
|
export declare type QueryCross_Chain_Token_ListArgs = {
|
|
12943
12892
|
where?: InputMaybe<Cross_Chain_TokentokenlistFilter>;
|
|
12944
12893
|
};
|
|
12894
|
+
export declare type QueryCross_Chain_Token_TokenPairArgs = {
|
|
12895
|
+
where?: InputMaybe<Cross_Chain_TokentokenPairFilter>;
|
|
12896
|
+
};
|
|
12945
12897
|
export declare type QueryCrowdPoolingArgs = {
|
|
12946
12898
|
block?: InputMaybe<Block_Height>;
|
|
12947
12899
|
id: Scalars['ID']['input'];
|
|
@@ -13225,6 +13177,42 @@ export declare type QueryDodo_Two_Anniversary_H5_Qa_Activity_SaveArgs = {
|
|
|
13225
13177
|
export declare type QueryDodochain_AcceptInviteArgs = {
|
|
13226
13178
|
where: DodochainUserAcceptInvitationInput;
|
|
13227
13179
|
};
|
|
13180
|
+
export declare type QueryDodochain_Activity_GetClaimActivityArgs = {
|
|
13181
|
+
where: Dodochain_ActivityUserPaginationInput;
|
|
13182
|
+
};
|
|
13183
|
+
export declare type QueryDodochain_Activity_GetLiquidityActivityArgs = {
|
|
13184
|
+
where: Dodochain_ActivityUserPaginationInput;
|
|
13185
|
+
};
|
|
13186
|
+
export declare type QueryDodochain_Activity_GetStakeActivityArgs = {
|
|
13187
|
+
where: Dodochain_ActivityUserPaginationInput;
|
|
13188
|
+
};
|
|
13189
|
+
export declare type QueryDodochain_Assets_GetAssetsDataArgs = {
|
|
13190
|
+
where: Dodochain_AssetsUserInput;
|
|
13191
|
+
};
|
|
13192
|
+
export declare type QueryDodochain_Assets_GetClaimableRewardsDataArgs = {
|
|
13193
|
+
where: Dodochain_AssetsUserInput;
|
|
13194
|
+
};
|
|
13195
|
+
export declare type QueryDodochain_Assets_GetLpDepositedDataArgs = {
|
|
13196
|
+
where: Dodochain_AssetsUserInput;
|
|
13197
|
+
};
|
|
13198
|
+
export declare type QueryDodochain_Assets_GetStakedDataArgs = {
|
|
13199
|
+
where: Dodochain_AssetsUserInput;
|
|
13200
|
+
};
|
|
13201
|
+
export declare type QueryDodochain_Assets_GetWalletBalanceDataArgs = {
|
|
13202
|
+
where: Dodochain_AssetsUserInput;
|
|
13203
|
+
};
|
|
13204
|
+
export declare type QueryDodochain_Dashboard_GetBridgeDataChartArgs = {
|
|
13205
|
+
where?: InputMaybe<Dodochain_DashboardBridgeDataChartInput>;
|
|
13206
|
+
};
|
|
13207
|
+
export declare type QueryDodochain_Dashboard_GetLiquidityStakeChartArgs = {
|
|
13208
|
+
where?: InputMaybe<Dodochain_DashboardChatInput>;
|
|
13209
|
+
};
|
|
13210
|
+
export declare type QueryDodochain_Dashboard_GetSupportTokensArgs = {
|
|
13211
|
+
where: Dodochain_DashboardOnlyEvmOrBtcInput;
|
|
13212
|
+
};
|
|
13213
|
+
export declare type QueryDodochain_Earn_ListArgs = {
|
|
13214
|
+
where?: InputMaybe<Dodochain_Earnlist_Filter>;
|
|
13215
|
+
};
|
|
13228
13216
|
export declare type QueryDodochain_GetInviteCodeArgs = {
|
|
13229
13217
|
where: DodochainUserInput;
|
|
13230
13218
|
};
|
|
@@ -13295,20 +13283,6 @@ export declare type QueryErc20_RelationListArgs = {
|
|
|
13295
13283
|
export declare type QueryErc20_SwapCrossChainListArgs = {
|
|
13296
13284
|
where?: InputMaybe<Erc20listV2Filter>;
|
|
13297
13285
|
};
|
|
13298
|
-
export declare type QueryEventArgs = {
|
|
13299
|
-
block?: InputMaybe<Block_Height>;
|
|
13300
|
-
id: Scalars['ID']['input'];
|
|
13301
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
13302
|
-
};
|
|
13303
|
-
export declare type QueryEventsArgs = {
|
|
13304
|
-
block?: InputMaybe<Block_Height>;
|
|
13305
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13306
|
-
orderBy?: InputMaybe<Event_OrderBy>;
|
|
13307
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
13308
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
13309
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
13310
|
-
where?: InputMaybe<Event_Filter>;
|
|
13311
|
-
};
|
|
13312
13286
|
export declare type QueryFilterArgs = {
|
|
13313
13287
|
block?: InputMaybe<Block_Height>;
|
|
13314
13288
|
id: Scalars['ID']['input'];
|
|
@@ -13482,6 +13456,9 @@ export declare type QueryLiquidityPositionsArgs = {
|
|
|
13482
13456
|
export declare type QueryLiquidity_Count_DataArgs = {
|
|
13483
13457
|
where?: InputMaybe<Liquiditycount_Data_Query>;
|
|
13484
13458
|
};
|
|
13459
|
+
export declare type QueryLiquidity_GetLpPartnerRewardsArgs = {
|
|
13460
|
+
where?: InputMaybe<LiquidityLpPartnerRewardsInput>;
|
|
13461
|
+
};
|
|
13485
13462
|
export declare type QueryLiquidity_ListArgs = {
|
|
13486
13463
|
where?: InputMaybe<Liquiditylist_Filter>;
|
|
13487
13464
|
};
|
|
@@ -13574,6 +13551,9 @@ export declare type QueryMiningPoolsArgs = {
|
|
|
13574
13551
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
13575
13552
|
where?: InputMaybe<MiningPool_Filter>;
|
|
13576
13553
|
};
|
|
13554
|
+
export declare type QueryMining_GetRewardDetailHistoryArgs = {
|
|
13555
|
+
where?: InputMaybe<MiningrewardDetailHistory_Filter>;
|
|
13556
|
+
};
|
|
13577
13557
|
export declare type QueryMining_InfoArgs = {
|
|
13578
13558
|
where?: InputMaybe<Mininginfo_Filter>;
|
|
13579
13559
|
};
|
|
@@ -15159,14 +15139,9 @@ export declare type Starter = {
|
|
|
15159
15139
|
export declare type Starter_Filter = {
|
|
15160
15140
|
/** Filter for the block changed event. */
|
|
15161
15141
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
15162
|
-
and?: InputMaybe<Array<InputMaybe<Starter_Filter>>>;
|
|
15163
15142
|
base?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15164
15143
|
base_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15165
|
-
base_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15166
|
-
base_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15167
15144
|
base_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
15168
|
-
base_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15169
|
-
base_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15170
15145
|
base_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15171
15146
|
base_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15172
15147
|
base_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
@@ -15186,21 +15161,13 @@ export declare type Starter_Filter = {
|
|
|
15186
15161
|
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
15187
15162
|
creator?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15188
15163
|
creator_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15189
|
-
creator_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15190
|
-
creator_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15191
15164
|
creator_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
15192
|
-
creator_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15193
|
-
creator_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15194
15165
|
creator_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15195
15166
|
creator_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15196
15167
|
creator_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
15197
15168
|
fund?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15198
15169
|
fund_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15199
|
-
fund_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15200
|
-
fund_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15201
15170
|
fund_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
15202
|
-
fund_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15203
|
-
fund_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15204
15171
|
fund_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15205
15172
|
fund_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
15206
15173
|
fund_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
@@ -15212,7 +15179,6 @@ export declare type Starter_Filter = {
|
|
|
15212
15179
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
15213
15180
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
15214
15181
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15215
|
-
or?: InputMaybe<Array<InputMaybe<Starter_Filter>>>;
|
|
15216
15182
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15217
15183
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
15218
15184
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -15245,10 +15211,6 @@ export declare type Subscription = {
|
|
|
15245
15211
|
accounts: Array<Account>;
|
|
15246
15212
|
aggregateFragment?: Maybe<AggregateFragment>;
|
|
15247
15213
|
aggregateFragments: Array<AggregateFragment>;
|
|
15248
|
-
all?: Maybe<All>;
|
|
15249
|
-
alls: Array<All>;
|
|
15250
|
-
approval?: Maybe<Approval>;
|
|
15251
|
-
approvals: Array<Approval>;
|
|
15252
15214
|
balance?: Maybe<Balance>;
|
|
15253
15215
|
balances: Array<Balance>;
|
|
15254
15216
|
claimHistories: Array<ClaimHistory>;
|
|
@@ -15259,14 +15221,10 @@ export declare type Subscription = {
|
|
|
15259
15221
|
controllers: Array<Controller>;
|
|
15260
15222
|
dailyScheduledTask?: Maybe<DailyScheduledTask>;
|
|
15261
15223
|
dailyScheduledTasks: Array<DailyScheduledTask>;
|
|
15262
|
-
decimalValue?: Maybe<DecimalValue>;
|
|
15263
|
-
decimalValues: Array<DecimalValue>;
|
|
15264
15224
|
depositHistories: Array<DepositHistory>;
|
|
15265
15225
|
depositHistory?: Maybe<DepositHistory>;
|
|
15266
15226
|
dodoStarter?: Maybe<DodoStarter>;
|
|
15267
15227
|
dodoStarters: Array<DodoStarter>;
|
|
15268
|
-
event?: Maybe<Event>;
|
|
15269
|
-
events: Array<Event>;
|
|
15270
15228
|
filter?: Maybe<Filter>;
|
|
15271
15229
|
filterAdmin?: Maybe<FilterAdmin>;
|
|
15272
15230
|
filterAdmins: Array<FilterAdmin>;
|
|
@@ -15289,14 +15247,6 @@ export declare type Subscription = {
|
|
|
15289
15247
|
nftPool?: Maybe<NftPool>;
|
|
15290
15248
|
nftPools: Array<NftPool>;
|
|
15291
15249
|
nfts: Array<Nft>;
|
|
15292
|
-
owner?: Maybe<Owner>;
|
|
15293
|
-
ownerPerTokenContract?: Maybe<OwnerPerTokenContract>;
|
|
15294
|
-
ownerPerTokenContracts: Array<OwnerPerTokenContract>;
|
|
15295
|
-
owners: Array<Owner>;
|
|
15296
|
-
persistentString?: Maybe<PersistentString>;
|
|
15297
|
-
persistentStringArray?: Maybe<PersistentStringArray>;
|
|
15298
|
-
persistentStringArrays: Array<PersistentStringArray>;
|
|
15299
|
-
persistentStrings: Array<PersistentString>;
|
|
15300
15250
|
pool?: Maybe<Pool>;
|
|
15301
15251
|
poolDayData?: Maybe<PoolDayData>;
|
|
15302
15252
|
poolDayDatas: Array<PoolDayData>;
|
|
@@ -15322,17 +15272,9 @@ export declare type Subscription = {
|
|
|
15322
15272
|
swap?: Maybe<Swap>;
|
|
15323
15273
|
swaps: Array<Swap>;
|
|
15324
15274
|
token?: Maybe<Token>;
|
|
15325
|
-
tokenContract?: Maybe<TokenContract>;
|
|
15326
|
-
tokenContracts: Array<TokenContract>;
|
|
15327
|
-
tokenRegistries: Array<TokenRegistry>;
|
|
15328
|
-
tokenRegistry?: Maybe<TokenRegistry>;
|
|
15329
15275
|
tokens: Array<Token>;
|
|
15330
15276
|
tradeHistoryTransferDetail?: Maybe<TradeHistoryTransferDetail>;
|
|
15331
15277
|
tradeHistoryTransferDetails: Array<TradeHistoryTransferDetail>;
|
|
15332
|
-
transaction?: Maybe<Transaction>;
|
|
15333
|
-
transactions: Array<Transaction>;
|
|
15334
|
-
transfer?: Maybe<Transfer>;
|
|
15335
|
-
transfers: Array<Transfer>;
|
|
15336
15278
|
user?: Maybe<User>;
|
|
15337
15279
|
userFunding?: Maybe<UserFunding>;
|
|
15338
15280
|
userFundings: Array<UserFunding>;
|
|
@@ -15387,34 +15329,6 @@ export declare type SubscriptionAggregateFragmentsArgs = {
|
|
|
15387
15329
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
15388
15330
|
where?: InputMaybe<AggregateFragment_Filter>;
|
|
15389
15331
|
};
|
|
15390
|
-
export declare type SubscriptionAllArgs = {
|
|
15391
|
-
block?: InputMaybe<Block_Height>;
|
|
15392
|
-
id: Scalars['ID']['input'];
|
|
15393
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15394
|
-
};
|
|
15395
|
-
export declare type SubscriptionAllsArgs = {
|
|
15396
|
-
block?: InputMaybe<Block_Height>;
|
|
15397
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15398
|
-
orderBy?: InputMaybe<All_OrderBy>;
|
|
15399
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15400
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15401
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15402
|
-
where?: InputMaybe<All_Filter>;
|
|
15403
|
-
};
|
|
15404
|
-
export declare type SubscriptionApprovalArgs = {
|
|
15405
|
-
block?: InputMaybe<Block_Height>;
|
|
15406
|
-
id: Scalars['ID']['input'];
|
|
15407
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15408
|
-
};
|
|
15409
|
-
export declare type SubscriptionApprovalsArgs = {
|
|
15410
|
-
block?: InputMaybe<Block_Height>;
|
|
15411
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15412
|
-
orderBy?: InputMaybe<Approval_OrderBy>;
|
|
15413
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15414
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15415
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15416
|
-
where?: InputMaybe<Approval_Filter>;
|
|
15417
|
-
};
|
|
15418
15332
|
export declare type SubscriptionBalanceArgs = {
|
|
15419
15333
|
block?: InputMaybe<Block_Height>;
|
|
15420
15334
|
id: Scalars['ID']['input'];
|
|
@@ -15485,20 +15399,6 @@ export declare type SubscriptionDailyScheduledTasksArgs = {
|
|
|
15485
15399
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
15486
15400
|
where?: InputMaybe<DailyScheduledTask_Filter>;
|
|
15487
15401
|
};
|
|
15488
|
-
export declare type SubscriptionDecimalValueArgs = {
|
|
15489
|
-
block?: InputMaybe<Block_Height>;
|
|
15490
|
-
id: Scalars['ID']['input'];
|
|
15491
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15492
|
-
};
|
|
15493
|
-
export declare type SubscriptionDecimalValuesArgs = {
|
|
15494
|
-
block?: InputMaybe<Block_Height>;
|
|
15495
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15496
|
-
orderBy?: InputMaybe<DecimalValue_OrderBy>;
|
|
15497
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15498
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15499
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15500
|
-
where?: InputMaybe<DecimalValue_Filter>;
|
|
15501
|
-
};
|
|
15502
15402
|
export declare type SubscriptionDepositHistoriesArgs = {
|
|
15503
15403
|
block?: InputMaybe<Block_Height>;
|
|
15504
15404
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15527,20 +15427,6 @@ export declare type SubscriptionDodoStartersArgs = {
|
|
|
15527
15427
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
15528
15428
|
where?: InputMaybe<DodoStarter_Filter>;
|
|
15529
15429
|
};
|
|
15530
|
-
export declare type SubscriptionEventArgs = {
|
|
15531
|
-
block?: InputMaybe<Block_Height>;
|
|
15532
|
-
id: Scalars['ID']['input'];
|
|
15533
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15534
|
-
};
|
|
15535
|
-
export declare type SubscriptionEventsArgs = {
|
|
15536
|
-
block?: InputMaybe<Block_Height>;
|
|
15537
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15538
|
-
orderBy?: InputMaybe<Event_OrderBy>;
|
|
15539
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15540
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15541
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15542
|
-
where?: InputMaybe<Event_Filter>;
|
|
15543
|
-
};
|
|
15544
15430
|
export declare type SubscriptionFilterArgs = {
|
|
15545
15431
|
block?: InputMaybe<Block_Height>;
|
|
15546
15432
|
id: Scalars['ID']['input'];
|
|
@@ -15695,62 +15581,6 @@ export declare type SubscriptionNftsArgs = {
|
|
|
15695
15581
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
15696
15582
|
where?: InputMaybe<Nft_Filter>;
|
|
15697
15583
|
};
|
|
15698
|
-
export declare type SubscriptionOwnerArgs = {
|
|
15699
|
-
block?: InputMaybe<Block_Height>;
|
|
15700
|
-
id: Scalars['ID']['input'];
|
|
15701
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15702
|
-
};
|
|
15703
|
-
export declare type SubscriptionOwnerPerTokenContractArgs = {
|
|
15704
|
-
block?: InputMaybe<Block_Height>;
|
|
15705
|
-
id: Scalars['ID']['input'];
|
|
15706
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15707
|
-
};
|
|
15708
|
-
export declare type SubscriptionOwnerPerTokenContractsArgs = {
|
|
15709
|
-
block?: InputMaybe<Block_Height>;
|
|
15710
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15711
|
-
orderBy?: InputMaybe<OwnerPerTokenContract_OrderBy>;
|
|
15712
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15713
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15714
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15715
|
-
where?: InputMaybe<OwnerPerTokenContract_Filter>;
|
|
15716
|
-
};
|
|
15717
|
-
export declare type SubscriptionOwnersArgs = {
|
|
15718
|
-
block?: InputMaybe<Block_Height>;
|
|
15719
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15720
|
-
orderBy?: InputMaybe<Owner_OrderBy>;
|
|
15721
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15722
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15723
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15724
|
-
where?: InputMaybe<Owner_Filter>;
|
|
15725
|
-
};
|
|
15726
|
-
export declare type SubscriptionPersistentStringArgs = {
|
|
15727
|
-
block?: InputMaybe<Block_Height>;
|
|
15728
|
-
id: Scalars['ID']['input'];
|
|
15729
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15730
|
-
};
|
|
15731
|
-
export declare type SubscriptionPersistentStringArrayArgs = {
|
|
15732
|
-
block?: InputMaybe<Block_Height>;
|
|
15733
|
-
id: Scalars['ID']['input'];
|
|
15734
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15735
|
-
};
|
|
15736
|
-
export declare type SubscriptionPersistentStringArraysArgs = {
|
|
15737
|
-
block?: InputMaybe<Block_Height>;
|
|
15738
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15739
|
-
orderBy?: InputMaybe<PersistentStringArray_OrderBy>;
|
|
15740
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15741
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15742
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15743
|
-
where?: InputMaybe<PersistentStringArray_Filter>;
|
|
15744
|
-
};
|
|
15745
|
-
export declare type SubscriptionPersistentStringsArgs = {
|
|
15746
|
-
block?: InputMaybe<Block_Height>;
|
|
15747
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15748
|
-
orderBy?: InputMaybe<PersistentString_OrderBy>;
|
|
15749
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15750
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15751
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15752
|
-
where?: InputMaybe<PersistentString_Filter>;
|
|
15753
|
-
};
|
|
15754
15584
|
export declare type SubscriptionPoolArgs = {
|
|
15755
15585
|
block?: InputMaybe<Block_Height>;
|
|
15756
15586
|
id: Scalars['ID']['input'];
|
|
@@ -15924,34 +15754,6 @@ export declare type SubscriptionTokenArgs = {
|
|
|
15924
15754
|
id: Scalars['ID']['input'];
|
|
15925
15755
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
15926
15756
|
};
|
|
15927
|
-
export declare type SubscriptionTokenContractArgs = {
|
|
15928
|
-
block?: InputMaybe<Block_Height>;
|
|
15929
|
-
id: Scalars['ID']['input'];
|
|
15930
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15931
|
-
};
|
|
15932
|
-
export declare type SubscriptionTokenContractsArgs = {
|
|
15933
|
-
block?: InputMaybe<Block_Height>;
|
|
15934
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15935
|
-
orderBy?: InputMaybe<TokenContract_OrderBy>;
|
|
15936
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15937
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15938
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15939
|
-
where?: InputMaybe<TokenContract_Filter>;
|
|
15940
|
-
};
|
|
15941
|
-
export declare type SubscriptionTokenRegistriesArgs = {
|
|
15942
|
-
block?: InputMaybe<Block_Height>;
|
|
15943
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15944
|
-
orderBy?: InputMaybe<TokenRegistry_OrderBy>;
|
|
15945
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15946
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15947
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15948
|
-
where?: InputMaybe<TokenRegistry_Filter>;
|
|
15949
|
-
};
|
|
15950
|
-
export declare type SubscriptionTokenRegistryArgs = {
|
|
15951
|
-
block?: InputMaybe<Block_Height>;
|
|
15952
|
-
id: Scalars['ID']['input'];
|
|
15953
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15954
|
-
};
|
|
15955
15757
|
export declare type SubscriptionTokensArgs = {
|
|
15956
15758
|
block?: InputMaybe<Block_Height>;
|
|
15957
15759
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15973,35 +15775,7 @@ export declare type SubscriptionTradeHistoryTransferDetailsArgs = {
|
|
|
15973
15775
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
15974
15776
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15975
15777
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
15976
|
-
where?: InputMaybe<TradeHistoryTransferDetail_Filter>;
|
|
15977
|
-
};
|
|
15978
|
-
export declare type SubscriptionTransactionArgs = {
|
|
15979
|
-
block?: InputMaybe<Block_Height>;
|
|
15980
|
-
id: Scalars['ID']['input'];
|
|
15981
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15982
|
-
};
|
|
15983
|
-
export declare type SubscriptionTransactionsArgs = {
|
|
15984
|
-
block?: InputMaybe<Block_Height>;
|
|
15985
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15986
|
-
orderBy?: InputMaybe<Transaction_OrderBy>;
|
|
15987
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
15988
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
15989
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15990
|
-
where?: InputMaybe<Transaction_Filter>;
|
|
15991
|
-
};
|
|
15992
|
-
export declare type SubscriptionTransferArgs = {
|
|
15993
|
-
block?: InputMaybe<Block_Height>;
|
|
15994
|
-
id: Scalars['ID']['input'];
|
|
15995
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
15996
|
-
};
|
|
15997
|
-
export declare type SubscriptionTransfersArgs = {
|
|
15998
|
-
block?: InputMaybe<Block_Height>;
|
|
15999
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16000
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
16001
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
16002
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
16003
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
16004
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
15778
|
+
where?: InputMaybe<TradeHistoryTransferDetail_Filter>;
|
|
16005
15779
|
};
|
|
16006
15780
|
export declare type SubscriptionUserArgs = {
|
|
16007
15781
|
block?: InputMaybe<Block_Height>;
|
|
@@ -16192,9 +15966,6 @@ export declare type Swap = {
|
|
|
16192
15966
|
pair?: Maybe<Pair>;
|
|
16193
15967
|
payFromAmount: Scalars['BigInt']['output'];
|
|
16194
15968
|
pool: Pool;
|
|
16195
|
-
poolTotalAssetsUSD: Scalars['BigDecimal']['output'];
|
|
16196
|
-
/** poolTvl */
|
|
16197
|
-
poolTotalAssetsValue: Scalars['BigInt']['output'];
|
|
16198
15969
|
/** quote volume */
|
|
16199
15970
|
quoteVolume: Scalars['BigDecimal']['output'];
|
|
16200
15971
|
receiveToAmount: Scalars['BigInt']['output'];
|
|
@@ -16435,22 +16206,6 @@ export declare type Swap_Filter = {
|
|
|
16435
16206
|
payFromAmount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16436
16207
|
payFromAmount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
16437
16208
|
pool?: InputMaybe<Scalars['String']['input']>;
|
|
16438
|
-
poolTotalAssetsUSD?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
16439
|
-
poolTotalAssetsUSD_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
16440
|
-
poolTotalAssetsUSD_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
16441
|
-
poolTotalAssetsUSD_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
16442
|
-
poolTotalAssetsUSD_lt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
16443
|
-
poolTotalAssetsUSD_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
16444
|
-
poolTotalAssetsUSD_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
16445
|
-
poolTotalAssetsUSD_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
16446
|
-
poolTotalAssetsValue?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16447
|
-
poolTotalAssetsValue_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16448
|
-
poolTotalAssetsValue_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16449
|
-
poolTotalAssetsValue_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
16450
|
-
poolTotalAssetsValue_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16451
|
-
poolTotalAssetsValue_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16452
|
-
poolTotalAssetsValue_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16453
|
-
poolTotalAssetsValue_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
16454
16209
|
pool_?: InputMaybe<Pool_Filter>;
|
|
16455
16210
|
pool_contains?: InputMaybe<Scalars['String']['input']>;
|
|
16456
16211
|
pool_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16594,7 +16349,7 @@ export declare type Swap_Filter = {
|
|
|
16594
16349
|
volumeUSD_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
16595
16350
|
volumeUSD_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
16596
16351
|
};
|
|
16597
|
-
export declare type Swap_OrderBy = 'amountIn' | 'amountOut' | 'baseVolume' | 'blockNumber' | 'chain' | 'feeBase' | 'feeQuote' | 'from' | 'fromToken' | 'fromTokenOraclePrice' | 'fromTokenOraclePriceUSD' | 'hash' | 'id' | 'logIndex' | 'mtFee' | 'mtFeeToken' | 'mtFeeUSD' | 'mtFeeUsd' | 'pair' | 'payFromAmount' | 'pool' | '
|
|
16352
|
+
export declare type Swap_OrderBy = 'amountIn' | 'amountOut' | 'baseVolume' | 'blockNumber' | 'chain' | 'feeBase' | 'feeQuote' | 'from' | 'fromToken' | 'fromTokenOraclePrice' | 'fromTokenOraclePriceUSD' | 'hash' | 'id' | 'logIndex' | 'mtFee' | 'mtFeeToken' | 'mtFeeUSD' | 'mtFeeUsd' | 'pair' | 'payFromAmount' | 'pool' | 'quoteVolume' | 'receiveToAmount' | 'sellOrNot' | 'sender' | 'swapFee' | 'swapFeeUSD' | 'timestamp' | 'to' | 'toToken' | 'toTokenOraclePrice' | 'toTokenOraclePriceUSD' | 'updatedAt' | 'volumeUSD';
|
|
16598
16353
|
export declare type Third_Party_TokenList = {
|
|
16599
16354
|
address?: Maybe<Scalars['String']['output']>;
|
|
16600
16355
|
chainId?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16610,11 +16365,7 @@ export declare type Third_Party_TokenlistData = {
|
|
|
16610
16365
|
fromNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
16611
16366
|
};
|
|
16612
16367
|
export declare type Token = {
|
|
16613
|
-
URI?: Maybe<Scalars['String']['output']>;
|
|
16614
|
-
approvals: Array<Transfer>;
|
|
16615
|
-
balances: Array<Balance>;
|
|
16616
16368
|
chain: Scalars['String']['output'];
|
|
16617
|
-
contract: TokenContract;
|
|
16618
16369
|
/** creator */
|
|
16619
16370
|
creator: Scalars['String']['output'];
|
|
16620
16371
|
/** token decimals */
|
|
@@ -16623,23 +16374,17 @@ export declare type Token = {
|
|
|
16623
16374
|
holderCount: Scalars['BigInt']['output'];
|
|
16624
16375
|
/** token address */
|
|
16625
16376
|
id: Scalars['ID']['output'];
|
|
16626
|
-
identifier: Scalars['BigInt']['output'];
|
|
16627
16377
|
isLpToken: Scalars['Boolean']['output'];
|
|
16628
|
-
mintTime: Scalars['BigInt']['output'];
|
|
16629
16378
|
/** token name */
|
|
16630
16379
|
name: Scalars['String']['output'];
|
|
16631
16380
|
/** lpToken originToken */
|
|
16632
|
-
originToken
|
|
16633
|
-
owner: Owner;
|
|
16381
|
+
originToken?: Maybe<Scalars['Bytes']['output']>;
|
|
16634
16382
|
/** price update time */
|
|
16635
16383
|
priceUpdateTimestamp: Scalars['BigInt']['output'];
|
|
16636
|
-
registry: TokenRegistry;
|
|
16637
16384
|
/** token symbol */
|
|
16638
16385
|
symbol: Scalars['String']['output'];
|
|
16639
16386
|
/** create timestamp */
|
|
16640
16387
|
timestamp: Scalars['BigInt']['output'];
|
|
16641
|
-
tokenID: Scalars['BigInt']['output'];
|
|
16642
|
-
tokenURI: Scalars['String']['output'];
|
|
16643
16388
|
/** liquidity across all pairs */
|
|
16644
16389
|
totalLiquidityOnDODO: Scalars['BigDecimal']['output'];
|
|
16645
16390
|
/** total supply */
|
|
@@ -16650,7 +16395,6 @@ export declare type Token = {
|
|
|
16650
16395
|
tradeVolumeBridge: Scalars['BigDecimal']['output'];
|
|
16651
16396
|
/** trader count */
|
|
16652
16397
|
traderCount: Scalars['BigInt']['output'];
|
|
16653
|
-
transfers: Array<Transfer>;
|
|
16654
16398
|
/** transactions across all pairs */
|
|
16655
16399
|
txCount: Scalars['BigInt']['output'];
|
|
16656
16400
|
/** erc20Type */
|
|
@@ -16661,56 +16405,16 @@ export declare type Token = {
|
|
|
16661
16405
|
updatedAt?: Maybe<Scalars['BigInt']['output']>;
|
|
16662
16406
|
/** usd price(only stable coin and classical pool has usd price) */
|
|
16663
16407
|
usdPrice: Scalars['BigDecimal']['output'];
|
|
16664
|
-
/** belong vault address */
|
|
16665
|
-
vault: Scalars['Bytes']['output'];
|
|
16666
16408
|
/** traded volume of USD */
|
|
16667
16409
|
volumeUSD: Scalars['BigDecimal']['output'];
|
|
16668
16410
|
/** traded volume of USD for bridge */
|
|
16669
16411
|
volumeUSDBridge: Scalars['BigDecimal']['output'];
|
|
16670
16412
|
};
|
|
16671
|
-
export declare type TokenApprovalsArgs = {
|
|
16672
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16673
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
16674
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
16675
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
16676
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
16677
|
-
};
|
|
16678
|
-
export declare type TokenBalancesArgs = {
|
|
16679
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16680
|
-
orderBy?: InputMaybe<Balance_OrderBy>;
|
|
16681
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
16682
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
16683
|
-
where?: InputMaybe<Balance_Filter>;
|
|
16684
|
-
};
|
|
16685
|
-
export declare type TokenTransfersArgs = {
|
|
16686
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16687
|
-
orderBy?: InputMaybe<Transfer_OrderBy>;
|
|
16688
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
16689
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
16690
|
-
where?: InputMaybe<Transfer_Filter>;
|
|
16691
|
-
};
|
|
16692
16413
|
export declare type TokenContract = {
|
|
16693
16414
|
chain: Scalars['String']['output'];
|
|
16694
|
-
doAllAddressesOwnTheirIdByDefault: Scalars['Boolean']['output'];
|
|
16695
16415
|
id: Scalars['ID']['output'];
|
|
16696
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
16697
|
-
numOwners: Scalars['BigInt']['output'];
|
|
16698
|
-
numTokens: Scalars['BigInt']['output'];
|
|
16699
|
-
supportsEIP721Metadata: Scalars['Boolean']['output'];
|
|
16700
|
-
symbol?: Maybe<Scalars['String']['output']>;
|
|
16701
|
-
tokens: Array<Token>;
|
|
16702
|
-
};
|
|
16703
|
-
export declare type TokenContractTokensArgs = {
|
|
16704
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16705
|
-
orderBy?: InputMaybe<Token_OrderBy>;
|
|
16706
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
16707
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
16708
|
-
where?: InputMaybe<Token_Filter>;
|
|
16709
16416
|
};
|
|
16710
16417
|
export declare type TokenContract_Filter = {
|
|
16711
|
-
/** Filter for the block changed event. */
|
|
16712
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
16713
|
-
and?: InputMaybe<Array<InputMaybe<TokenContract_Filter>>>;
|
|
16714
16418
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
16715
16419
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
16716
16420
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16725,10 +16429,6 @@ export declare type TokenContract_Filter = {
|
|
|
16725
16429
|
chain_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16726
16430
|
chain_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
16727
16431
|
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
16728
|
-
doAllAddressesOwnTheirIdByDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16729
|
-
doAllAddressesOwnTheirIdByDefault_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
16730
|
-
doAllAddressesOwnTheirIdByDefault_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16731
|
-
doAllAddressesOwnTheirIdByDefault_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
16732
16432
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
16733
16433
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
16734
16434
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -16737,73 +16437,11 @@ export declare type TokenContract_Filter = {
|
|
|
16737
16437
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
16738
16438
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
16739
16439
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16740
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
16741
|
-
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
16742
|
-
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16743
|
-
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
16744
|
-
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16745
|
-
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
16746
|
-
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
16747
|
-
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16748
|
-
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
16749
|
-
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
16750
|
-
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
16751
|
-
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
16752
|
-
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16753
|
-
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
16754
|
-
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16755
|
-
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16756
|
-
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
16757
|
-
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16758
|
-
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
16759
|
-
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16760
|
-
numOwners?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16761
|
-
numOwners_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16762
|
-
numOwners_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16763
|
-
numOwners_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
16764
|
-
numOwners_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16765
|
-
numOwners_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16766
|
-
numOwners_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16767
|
-
numOwners_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
16768
|
-
numTokens?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16769
|
-
numTokens_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16770
|
-
numTokens_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16771
|
-
numTokens_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
16772
|
-
numTokens_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16773
|
-
numTokens_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16774
|
-
numTokens_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
16775
|
-
numTokens_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
16776
|
-
or?: InputMaybe<Array<InputMaybe<TokenContract_Filter>>>;
|
|
16777
16440
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16778
16441
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
16779
16442
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
16780
|
-
supportsEIP721Metadata?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16781
|
-
supportsEIP721Metadata_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
16782
|
-
supportsEIP721Metadata_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
16783
|
-
supportsEIP721Metadata_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
16784
|
-
symbol?: InputMaybe<Scalars['String']['input']>;
|
|
16785
|
-
symbol_contains?: InputMaybe<Scalars['String']['input']>;
|
|
16786
|
-
symbol_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16787
|
-
symbol_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
16788
|
-
symbol_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16789
|
-
symbol_gt?: InputMaybe<Scalars['String']['input']>;
|
|
16790
|
-
symbol_gte?: InputMaybe<Scalars['String']['input']>;
|
|
16791
|
-
symbol_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16792
|
-
symbol_lt?: InputMaybe<Scalars['String']['input']>;
|
|
16793
|
-
symbol_lte?: InputMaybe<Scalars['String']['input']>;
|
|
16794
|
-
symbol_not?: InputMaybe<Scalars['String']['input']>;
|
|
16795
|
-
symbol_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
16796
|
-
symbol_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16797
|
-
symbol_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
16798
|
-
symbol_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16799
|
-
symbol_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
16800
|
-
symbol_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
16801
|
-
symbol_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16802
|
-
symbol_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
16803
|
-
symbol_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
16804
|
-
tokens_?: InputMaybe<Token_Filter>;
|
|
16805
16443
|
};
|
|
16806
|
-
export declare type TokenContract_OrderBy = 'chain' | '
|
|
16444
|
+
export declare type TokenContract_OrderBy = 'chain' | 'id';
|
|
16807
16445
|
export declare type TokenDayData = {
|
|
16808
16446
|
chain: Scalars['String']['output'];
|
|
16809
16447
|
/** uinx timestamp(start of day) */
|
|
@@ -16992,19 +16630,8 @@ export declare type TokenDayData_OrderBy = 'chain' | 'date' | 'fee' | 'id' | 'ma
|
|
|
16992
16630
|
export declare type TokenRegistry = {
|
|
16993
16631
|
chain: Scalars['String']['output'];
|
|
16994
16632
|
id: Scalars['ID']['output'];
|
|
16995
|
-
tokens: Array<Token>;
|
|
16996
|
-
};
|
|
16997
|
-
export declare type TokenRegistryTokensArgs = {
|
|
16998
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16999
|
-
orderBy?: InputMaybe<Token_OrderBy>;
|
|
17000
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
17001
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
17002
|
-
where?: InputMaybe<Token_Filter>;
|
|
17003
16633
|
};
|
|
17004
16634
|
export declare type TokenRegistry_Filter = {
|
|
17005
|
-
/** Filter for the block changed event. */
|
|
17006
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
17007
|
-
and?: InputMaybe<Array<InputMaybe<TokenRegistry_Filter>>>;
|
|
17008
16635
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
17009
16636
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17010
16637
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17027,13 +16654,11 @@ export declare type TokenRegistry_Filter = {
|
|
|
17027
16654
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
17028
16655
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
17029
16656
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
17030
|
-
or?: InputMaybe<Array<InputMaybe<TokenRegistry_Filter>>>;
|
|
17031
16657
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17032
16658
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
17033
16659
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
17034
|
-
tokens_?: InputMaybe<Token_Filter>;
|
|
17035
16660
|
};
|
|
17036
|
-
export declare type TokenRegistry_OrderBy = 'chain' | 'id'
|
|
16661
|
+
export declare type TokenRegistry_OrderBy = 'chain' | 'id';
|
|
17037
16662
|
export declare type TokenTrader = {
|
|
17038
16663
|
chain: Scalars['String']['output'];
|
|
17039
16664
|
/** token address - user address */
|
|
@@ -17126,31 +16751,8 @@ export declare type TokenTrader_Filter = {
|
|
|
17126
16751
|
};
|
|
17127
16752
|
export declare type TokenTrader_OrderBy = 'chain' | 'id' | 'lastTxTime' | 'token' | 'trader' | 'updatedAt';
|
|
17128
16753
|
export declare type Token_Filter = {
|
|
17129
|
-
URI?: InputMaybe<Scalars['String']['input']>;
|
|
17130
|
-
URI_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17131
|
-
URI_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17132
|
-
URI_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17133
|
-
URI_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17134
|
-
URI_gt?: InputMaybe<Scalars['String']['input']>;
|
|
17135
|
-
URI_gte?: InputMaybe<Scalars['String']['input']>;
|
|
17136
|
-
URI_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17137
|
-
URI_lt?: InputMaybe<Scalars['String']['input']>;
|
|
17138
|
-
URI_lte?: InputMaybe<Scalars['String']['input']>;
|
|
17139
|
-
URI_not?: InputMaybe<Scalars['String']['input']>;
|
|
17140
|
-
URI_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17141
|
-
URI_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17142
|
-
URI_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17143
|
-
URI_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17144
|
-
URI_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17145
|
-
URI_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17146
|
-
URI_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17147
|
-
URI_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17148
|
-
URI_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17149
16754
|
/** Filter for the block changed event. */
|
|
17150
16755
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
17151
|
-
and?: InputMaybe<Array<InputMaybe<Token_Filter>>>;
|
|
17152
|
-
approvals_?: InputMaybe<Transfer_Filter>;
|
|
17153
|
-
balances_?: InputMaybe<Balance_Filter>;
|
|
17154
16756
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
17155
16757
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17156
16758
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17165,27 +16767,6 @@ export declare type Token_Filter = {
|
|
|
17165
16767
|
chain_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17166
16768
|
chain_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17167
16769
|
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17168
|
-
contract?: InputMaybe<Scalars['String']['input']>;
|
|
17169
|
-
contract_?: InputMaybe<TokenContract_Filter>;
|
|
17170
|
-
contract_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17171
|
-
contract_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17172
|
-
contract_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17173
|
-
contract_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17174
|
-
contract_gt?: InputMaybe<Scalars['String']['input']>;
|
|
17175
|
-
contract_gte?: InputMaybe<Scalars['String']['input']>;
|
|
17176
|
-
contract_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17177
|
-
contract_lt?: InputMaybe<Scalars['String']['input']>;
|
|
17178
|
-
contract_lte?: InputMaybe<Scalars['String']['input']>;
|
|
17179
|
-
contract_not?: InputMaybe<Scalars['String']['input']>;
|
|
17180
|
-
contract_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17181
|
-
contract_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17182
|
-
contract_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17183
|
-
contract_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17184
|
-
contract_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17185
|
-
contract_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17186
|
-
contract_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17187
|
-
contract_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17188
|
-
contract_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17189
16770
|
creator?: InputMaybe<Scalars['String']['input']>;
|
|
17190
16771
|
creator_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17191
16772
|
creator_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17224,26 +16805,10 @@ export declare type Token_Filter = {
|
|
|
17224
16805
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
17225
16806
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
17226
16807
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
17227
|
-
identifier?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17228
|
-
identifier_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17229
|
-
identifier_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17230
|
-
identifier_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17231
|
-
identifier_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17232
|
-
identifier_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17233
|
-
identifier_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17234
|
-
identifier_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17235
16808
|
isLpToken?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17236
16809
|
isLpToken_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
17237
16810
|
isLpToken_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17238
16811
|
isLpToken_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
17239
|
-
mintTime?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17240
|
-
mintTime_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17241
|
-
mintTime_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17242
|
-
mintTime_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17243
|
-
mintTime_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17244
|
-
mintTime_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17245
|
-
mintTime_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17246
|
-
mintTime_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17247
16812
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
17248
16813
|
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17249
16814
|
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17264,34 +16829,12 @@ export declare type Token_Filter = {
|
|
|
17264
16829
|
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17265
16830
|
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17266
16831
|
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17267
|
-
or?: InputMaybe<Array<InputMaybe<Token_Filter>>>;
|
|
17268
16832
|
originToken?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17269
16833
|
originToken_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17270
16834
|
originToken_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
17271
16835
|
originToken_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17272
16836
|
originToken_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17273
16837
|
originToken_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
17274
|
-
owner?: InputMaybe<Scalars['String']['input']>;
|
|
17275
|
-
owner_?: InputMaybe<Owner_Filter>;
|
|
17276
|
-
owner_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17277
|
-
owner_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17278
|
-
owner_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17279
|
-
owner_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17280
|
-
owner_gt?: InputMaybe<Scalars['String']['input']>;
|
|
17281
|
-
owner_gte?: InputMaybe<Scalars['String']['input']>;
|
|
17282
|
-
owner_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17283
|
-
owner_lt?: InputMaybe<Scalars['String']['input']>;
|
|
17284
|
-
owner_lte?: InputMaybe<Scalars['String']['input']>;
|
|
17285
|
-
owner_not?: InputMaybe<Scalars['String']['input']>;
|
|
17286
|
-
owner_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17287
|
-
owner_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17288
|
-
owner_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17289
|
-
owner_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17290
|
-
owner_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17291
|
-
owner_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17292
|
-
owner_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17293
|
-
owner_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17294
|
-
owner_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17295
16838
|
priceUpdateTimestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17296
16839
|
priceUpdateTimestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17297
16840
|
priceUpdateTimestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -17301,27 +16844,6 @@ export declare type Token_Filter = {
|
|
|
17301
16844
|
priceUpdateTimestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17302
16845
|
priceUpdateTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17303
16846
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17304
|
-
registry?: InputMaybe<Scalars['String']['input']>;
|
|
17305
|
-
registry_?: InputMaybe<TokenRegistry_Filter>;
|
|
17306
|
-
registry_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17307
|
-
registry_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17308
|
-
registry_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17309
|
-
registry_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17310
|
-
registry_gt?: InputMaybe<Scalars['String']['input']>;
|
|
17311
|
-
registry_gte?: InputMaybe<Scalars['String']['input']>;
|
|
17312
|
-
registry_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17313
|
-
registry_lt?: InputMaybe<Scalars['String']['input']>;
|
|
17314
|
-
registry_lte?: InputMaybe<Scalars['String']['input']>;
|
|
17315
|
-
registry_not?: InputMaybe<Scalars['String']['input']>;
|
|
17316
|
-
registry_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17317
|
-
registry_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17318
|
-
registry_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17319
|
-
registry_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17320
|
-
registry_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17321
|
-
registry_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17322
|
-
registry_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17323
|
-
registry_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17324
|
-
registry_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17325
16847
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
17326
16848
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
17327
16849
|
symbol?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17352,34 +16874,6 @@ export declare type Token_Filter = {
|
|
|
17352
16874
|
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17353
16875
|
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17354
16876
|
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17355
|
-
tokenID?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17356
|
-
tokenID_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17357
|
-
tokenID_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17358
|
-
tokenID_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17359
|
-
tokenID_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17360
|
-
tokenID_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17361
|
-
tokenID_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17362
|
-
tokenID_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17363
|
-
tokenURI?: InputMaybe<Scalars['String']['input']>;
|
|
17364
|
-
tokenURI_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17365
|
-
tokenURI_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17366
|
-
tokenURI_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17367
|
-
tokenURI_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17368
|
-
tokenURI_gt?: InputMaybe<Scalars['String']['input']>;
|
|
17369
|
-
tokenURI_gte?: InputMaybe<Scalars['String']['input']>;
|
|
17370
|
-
tokenURI_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17371
|
-
tokenURI_lt?: InputMaybe<Scalars['String']['input']>;
|
|
17372
|
-
tokenURI_lte?: InputMaybe<Scalars['String']['input']>;
|
|
17373
|
-
tokenURI_not?: InputMaybe<Scalars['String']['input']>;
|
|
17374
|
-
tokenURI_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17375
|
-
tokenURI_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17376
|
-
tokenURI_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17377
|
-
tokenURI_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17378
|
-
tokenURI_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17379
|
-
tokenURI_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17380
|
-
tokenURI_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17381
|
-
tokenURI_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17382
|
-
tokenURI_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17383
16877
|
totalLiquidityOnDODO?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
17384
16878
|
totalLiquidityOnDODO_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
17385
16879
|
totalLiquidityOnDODO_gte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
@@ -17420,7 +16914,6 @@ export declare type Token_Filter = {
|
|
|
17420
16914
|
traderCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17421
16915
|
traderCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17422
16916
|
traderCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17423
|
-
transfers_?: InputMaybe<Transfer_Filter>;
|
|
17424
16917
|
txCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17425
16918
|
txCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17426
16919
|
txCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -17467,12 +16960,6 @@ export declare type Token_Filter = {
|
|
|
17467
16960
|
usdPrice_lte?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
17468
16961
|
usdPrice_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
17469
16962
|
usdPrice_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
17470
|
-
vault?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17471
|
-
vault_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17472
|
-
vault_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
17473
|
-
vault_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17474
|
-
vault_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
17475
|
-
vault_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
17476
16963
|
volumeUSD?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
17477
16964
|
volumeUSDBridge?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
17478
16965
|
volumeUSDBridge_gt?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
@@ -17504,7 +16991,7 @@ export declare type Token_InfoTokenBalanceListDataV2 = {
|
|
|
17504
16991
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17505
16992
|
userAddress?: InputMaybe<Scalars['String']['input']>;
|
|
17506
16993
|
};
|
|
17507
|
-
export declare type Token_OrderBy = '
|
|
16994
|
+
export declare type Token_OrderBy = 'chain' | 'creator' | 'decimals' | 'holderCount' | 'id' | 'isLpToken' | 'name' | 'originToken' | 'priceUpdateTimestamp' | 'symbol' | 'timestamp' | 'totalLiquidityOnDODO' | 'totalSupply' | 'tradeVolume' | 'tradeVolumeBridge' | 'traderCount' | 'txCount' | 'type' | 'untrackedVolume' | 'updatedAt' | 'usdPrice' | 'volumeUSD' | 'volumeUSDBridge';
|
|
17508
16995
|
export declare type TokensCautionTokenResult = {
|
|
17509
16996
|
/** it's true when token is abnormal */
|
|
17510
16997
|
alert: Scalars['Boolean']['output'];
|
|
@@ -17686,9 +17173,7 @@ export declare type TradingIncentive_Filter = {
|
|
|
17686
17173
|
};
|
|
17687
17174
|
export declare type TradingIncentive_OrderBy = 'chain' | 'id' | 'totalAmount' | 'totalUser' | 'updatedAt';
|
|
17688
17175
|
export declare type Transaction = {
|
|
17689
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
17690
17176
|
chain: Scalars['String']['output'];
|
|
17691
|
-
events: Array<Event>;
|
|
17692
17177
|
/** from */
|
|
17693
17178
|
from: Scalars['String']['output'];
|
|
17694
17179
|
id: Scalars['ID']['output'];
|
|
@@ -17707,25 +17192,7 @@ export declare type Transaction = {
|
|
|
17707
17192
|
/** volumeUSD */
|
|
17708
17193
|
volumeUSD: Scalars['BigDecimal']['output'];
|
|
17709
17194
|
};
|
|
17710
|
-
export declare type TransactionEventsArgs = {
|
|
17711
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17712
|
-
orderBy?: InputMaybe<Event_OrderBy>;
|
|
17713
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
17714
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
17715
|
-
where?: InputMaybe<Event_Filter>;
|
|
17716
|
-
};
|
|
17717
17195
|
export declare type Transaction_Filter = {
|
|
17718
|
-
/** Filter for the block changed event. */
|
|
17719
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
17720
|
-
and?: InputMaybe<Array<InputMaybe<Transaction_Filter>>>;
|
|
17721
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17722
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17723
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17724
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17725
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17726
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17727
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
17728
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
17729
17196
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
17730
17197
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17731
17198
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17740,7 +17207,6 @@ export declare type Transaction_Filter = {
|
|
|
17740
17207
|
chain_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17741
17208
|
chain_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17742
17209
|
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17743
|
-
events_?: InputMaybe<Event_Filter>;
|
|
17744
17210
|
from?: InputMaybe<Scalars['String']['input']>;
|
|
17745
17211
|
from_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17746
17212
|
from_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17763,7 +17229,6 @@ export declare type Transaction_Filter = {
|
|
|
17763
17229
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
17764
17230
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
17765
17231
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
17766
|
-
or?: InputMaybe<Array<InputMaybe<Transaction_Filter>>>;
|
|
17767
17232
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17768
17233
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
17769
17234
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17854,19 +17319,10 @@ export declare type Transaction_Filter = {
|
|
|
17854
17319
|
volumeUSD_not?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
17855
17320
|
volumeUSD_not_in?: InputMaybe<Array<Scalars['BigDecimal']['input']>>;
|
|
17856
17321
|
};
|
|
17857
|
-
export declare type Transaction_OrderBy = '
|
|
17858
|
-
export declare type Transfer =
|
|
17322
|
+
export declare type Transaction_OrderBy = 'chain' | 'from' | 'id' | 'sender' | 'timestamp' | 'to' | 'tokens' | 'type' | 'updatedAt' | 'volumeUSD';
|
|
17323
|
+
export declare type Transfer = {
|
|
17859
17324
|
chain: Scalars['String']['output'];
|
|
17860
|
-
from: Account;
|
|
17861
|
-
fromBalance?: Maybe<Balance>;
|
|
17862
17325
|
id: Scalars['ID']['output'];
|
|
17863
|
-
operator: Account;
|
|
17864
|
-
timestamp: Scalars['BigInt']['output'];
|
|
17865
|
-
to: Account;
|
|
17866
|
-
toBalance?: Maybe<Balance>;
|
|
17867
|
-
token: Token;
|
|
17868
|
-
transaction: Transaction;
|
|
17869
|
-
value: Scalars['BigInt']['output'];
|
|
17870
17326
|
};
|
|
17871
17327
|
export declare type TransferHistory = {
|
|
17872
17328
|
/** amount */
|
|
@@ -17944,9 +17400,6 @@ export declare type TransferHistory_Filter = {
|
|
|
17944
17400
|
};
|
|
17945
17401
|
export declare type TransferHistory_OrderBy = 'amount' | 'chain' | 'from' | 'id' | 'to';
|
|
17946
17402
|
export declare type Transfer_Filter = {
|
|
17947
|
-
/** Filter for the block changed event. */
|
|
17948
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
17949
|
-
and?: InputMaybe<Array<InputMaybe<Transfer_Filter>>>;
|
|
17950
17403
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
17951
17404
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17952
17405
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17961,48 +17414,6 @@ export declare type Transfer_Filter = {
|
|
|
17961
17414
|
chain_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17962
17415
|
chain_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17963
17416
|
chain_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17964
|
-
from?: InputMaybe<Scalars['String']['input']>;
|
|
17965
|
-
fromBalance?: InputMaybe<Scalars['String']['input']>;
|
|
17966
|
-
fromBalance_?: InputMaybe<Balance_Filter>;
|
|
17967
|
-
fromBalance_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17968
|
-
fromBalance_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17969
|
-
fromBalance_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17970
|
-
fromBalance_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17971
|
-
fromBalance_gt?: InputMaybe<Scalars['String']['input']>;
|
|
17972
|
-
fromBalance_gte?: InputMaybe<Scalars['String']['input']>;
|
|
17973
|
-
fromBalance_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17974
|
-
fromBalance_lt?: InputMaybe<Scalars['String']['input']>;
|
|
17975
|
-
fromBalance_lte?: InputMaybe<Scalars['String']['input']>;
|
|
17976
|
-
fromBalance_not?: InputMaybe<Scalars['String']['input']>;
|
|
17977
|
-
fromBalance_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17978
|
-
fromBalance_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17979
|
-
fromBalance_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17980
|
-
fromBalance_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17981
|
-
fromBalance_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17982
|
-
fromBalance_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17983
|
-
fromBalance_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17984
|
-
fromBalance_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
17985
|
-
fromBalance_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17986
|
-
from_?: InputMaybe<Account_Filter>;
|
|
17987
|
-
from_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17988
|
-
from_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17989
|
-
from_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
17990
|
-
from_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17991
|
-
from_gt?: InputMaybe<Scalars['String']['input']>;
|
|
17992
|
-
from_gte?: InputMaybe<Scalars['String']['input']>;
|
|
17993
|
-
from_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17994
|
-
from_lt?: InputMaybe<Scalars['String']['input']>;
|
|
17995
|
-
from_lte?: InputMaybe<Scalars['String']['input']>;
|
|
17996
|
-
from_not?: InputMaybe<Scalars['String']['input']>;
|
|
17997
|
-
from_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
17998
|
-
from_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
17999
|
-
from_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18000
|
-
from_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18001
|
-
from_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18002
|
-
from_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18003
|
-
from_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18004
|
-
from_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18005
|
-
from_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18006
17417
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
18007
17418
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
18008
17419
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -18011,133 +17422,11 @@ export declare type Transfer_Filter = {
|
|
|
18011
17422
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
18012
17423
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
18013
17424
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
18014
|
-
operator?: InputMaybe<Scalars['String']['input']>;
|
|
18015
|
-
operator_?: InputMaybe<Account_Filter>;
|
|
18016
|
-
operator_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18017
|
-
operator_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18018
|
-
operator_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18019
|
-
operator_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18020
|
-
operator_gt?: InputMaybe<Scalars['String']['input']>;
|
|
18021
|
-
operator_gte?: InputMaybe<Scalars['String']['input']>;
|
|
18022
|
-
operator_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18023
|
-
operator_lt?: InputMaybe<Scalars['String']['input']>;
|
|
18024
|
-
operator_lte?: InputMaybe<Scalars['String']['input']>;
|
|
18025
|
-
operator_not?: InputMaybe<Scalars['String']['input']>;
|
|
18026
|
-
operator_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18027
|
-
operator_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18028
|
-
operator_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18029
|
-
operator_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18030
|
-
operator_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18031
|
-
operator_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18032
|
-
operator_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18033
|
-
operator_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18034
|
-
operator_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18035
|
-
or?: InputMaybe<Array<InputMaybe<Transfer_Filter>>>;
|
|
18036
17425
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18037
17426
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
18038
17427
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
18039
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18040
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18041
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18042
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18043
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18044
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18045
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18046
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18047
|
-
to?: InputMaybe<Scalars['String']['input']>;
|
|
18048
|
-
toBalance?: InputMaybe<Scalars['String']['input']>;
|
|
18049
|
-
toBalance_?: InputMaybe<Balance_Filter>;
|
|
18050
|
-
toBalance_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18051
|
-
toBalance_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18052
|
-
toBalance_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18053
|
-
toBalance_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18054
|
-
toBalance_gt?: InputMaybe<Scalars['String']['input']>;
|
|
18055
|
-
toBalance_gte?: InputMaybe<Scalars['String']['input']>;
|
|
18056
|
-
toBalance_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18057
|
-
toBalance_lt?: InputMaybe<Scalars['String']['input']>;
|
|
18058
|
-
toBalance_lte?: InputMaybe<Scalars['String']['input']>;
|
|
18059
|
-
toBalance_not?: InputMaybe<Scalars['String']['input']>;
|
|
18060
|
-
toBalance_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18061
|
-
toBalance_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18062
|
-
toBalance_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18063
|
-
toBalance_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18064
|
-
toBalance_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18065
|
-
toBalance_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18066
|
-
toBalance_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18067
|
-
toBalance_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18068
|
-
toBalance_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18069
|
-
to_?: InputMaybe<Account_Filter>;
|
|
18070
|
-
to_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18071
|
-
to_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18072
|
-
to_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18073
|
-
to_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18074
|
-
to_gt?: InputMaybe<Scalars['String']['input']>;
|
|
18075
|
-
to_gte?: InputMaybe<Scalars['String']['input']>;
|
|
18076
|
-
to_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18077
|
-
to_lt?: InputMaybe<Scalars['String']['input']>;
|
|
18078
|
-
to_lte?: InputMaybe<Scalars['String']['input']>;
|
|
18079
|
-
to_not?: InputMaybe<Scalars['String']['input']>;
|
|
18080
|
-
to_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18081
|
-
to_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18082
|
-
to_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18083
|
-
to_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18084
|
-
to_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18085
|
-
to_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18086
|
-
to_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18087
|
-
to_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18088
|
-
to_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18089
|
-
token?: InputMaybe<Scalars['String']['input']>;
|
|
18090
|
-
token_?: InputMaybe<Token_Filter>;
|
|
18091
|
-
token_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18092
|
-
token_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18093
|
-
token_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18094
|
-
token_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18095
|
-
token_gt?: InputMaybe<Scalars['String']['input']>;
|
|
18096
|
-
token_gte?: InputMaybe<Scalars['String']['input']>;
|
|
18097
|
-
token_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18098
|
-
token_lt?: InputMaybe<Scalars['String']['input']>;
|
|
18099
|
-
token_lte?: InputMaybe<Scalars['String']['input']>;
|
|
18100
|
-
token_not?: InputMaybe<Scalars['String']['input']>;
|
|
18101
|
-
token_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18102
|
-
token_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18103
|
-
token_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18104
|
-
token_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18105
|
-
token_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18106
|
-
token_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18107
|
-
token_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18108
|
-
token_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18109
|
-
token_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18110
|
-
transaction?: InputMaybe<Scalars['String']['input']>;
|
|
18111
|
-
transaction_?: InputMaybe<Transaction_Filter>;
|
|
18112
|
-
transaction_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18113
|
-
transaction_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18114
|
-
transaction_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18115
|
-
transaction_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18116
|
-
transaction_gt?: InputMaybe<Scalars['String']['input']>;
|
|
18117
|
-
transaction_gte?: InputMaybe<Scalars['String']['input']>;
|
|
18118
|
-
transaction_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18119
|
-
transaction_lt?: InputMaybe<Scalars['String']['input']>;
|
|
18120
|
-
transaction_lte?: InputMaybe<Scalars['String']['input']>;
|
|
18121
|
-
transaction_not?: InputMaybe<Scalars['String']['input']>;
|
|
18122
|
-
transaction_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18123
|
-
transaction_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18124
|
-
transaction_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
18125
|
-
transaction_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18126
|
-
transaction_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18127
|
-
transaction_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18128
|
-
transaction_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18129
|
-
transaction_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18130
|
-
transaction_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18131
|
-
value?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18132
|
-
value_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18133
|
-
value_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18134
|
-
value_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18135
|
-
value_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18136
|
-
value_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18137
|
-
value_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18138
|
-
value_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18139
17428
|
};
|
|
18140
|
-
export declare type Transfer_OrderBy = 'chain' | '
|
|
17429
|
+
export declare type Transfer_OrderBy = 'chain' | 'id';
|
|
18141
17430
|
export declare type User = {
|
|
18142
17431
|
/** user accumulated interest */
|
|
18143
17432
|
accInterestUSD: Scalars['BigDecimal']['output'];
|
|
@@ -18180,7 +17469,7 @@ export declare type User = {
|
|
|
18180
17469
|
txCount: Scalars['BigInt']['output'];
|
|
18181
17470
|
/** updatedAt */
|
|
18182
17471
|
updatedAt?: Maybe<Scalars['BigInt']['output']>;
|
|
18183
|
-
/**
|
|
17472
|
+
/** liquidity Positions */
|
|
18184
17473
|
userFundings?: Maybe<Array<UserFunding>>;
|
|
18185
17474
|
};
|
|
18186
17475
|
export declare type UserUserFundingsArgs = {
|
|
@@ -18310,14 +17599,9 @@ export declare type UserDayData_Filter = {
|
|
|
18310
17599
|
};
|
|
18311
17600
|
export declare type UserDayData_OrderBy = 'addLPCount' | 'bidCount' | 'cancelCount' | 'chain' | 'claimCount' | 'date' | 'id' | 'removeLPCount' | 'tradeCount' | 'updatedAt';
|
|
18312
17601
|
export declare type UserFunding = {
|
|
18313
|
-
/** tokenAmount */
|
|
18314
17602
|
amount: Scalars['BigInt']['output'];
|
|
18315
17603
|
/** Block number of this event */
|
|
18316
17604
|
blockNumber: Scalars['BigInt']['output'];
|
|
18317
|
-
/** D3Vault getExchangeRate */
|
|
18318
|
-
exchangeRate?: Maybe<Scalars['BigInt']['output']>;
|
|
18319
|
-
/** Transfer from */
|
|
18320
|
-
from?: Maybe<Scalars['Bytes']['output']>;
|
|
18321
17605
|
/** Transaction hash of the transaction that emitted this event */
|
|
18322
17606
|
hash: Scalars['String']['output'];
|
|
18323
17607
|
/** { Transaction hash }-{ Log index } */
|
|
@@ -18325,18 +17609,13 @@ export declare type UserFunding = {
|
|
|
18325
17609
|
/** Event log index. For transactions that don't emit event, create arbitrary index starting from 0 */
|
|
18326
17610
|
logIndex: Scalars['Int']['output'];
|
|
18327
17611
|
lpToken?: Maybe<Token>;
|
|
18328
|
-
/** dTokenAmount */
|
|
17612
|
+
/** total dTokenAmount */
|
|
18329
17613
|
lpTokenAmount: Scalars['BigInt']['output'];
|
|
18330
|
-
/** accumulate lptoken Balance */
|
|
18331
|
-
lpTokenBalance: Scalars['BigInt']['output'];
|
|
18332
17614
|
/** UserWithdraw msgSender */
|
|
18333
17615
|
msgSender?: Maybe<Scalars['Bytes']['output']>;
|
|
18334
17616
|
/** Timestamp of this event */
|
|
18335
17617
|
timestamp: Scalars['BigInt']['output'];
|
|
18336
|
-
to?: Maybe<Scalars['Bytes']['output']>;
|
|
18337
17618
|
token: Token;
|
|
18338
|
-
/** accumulate token Balance */
|
|
18339
|
-
tokenBalance: Scalars['BigInt']['output'];
|
|
18340
17619
|
/** updatedAt */
|
|
18341
17620
|
updatedAt: Scalars['BigInt']['output'];
|
|
18342
17621
|
user: User;
|
|
@@ -18344,7 +17623,7 @@ export declare type UserFunding = {
|
|
|
18344
17623
|
/** belong vault */
|
|
18345
17624
|
vault: Vault;
|
|
18346
17625
|
};
|
|
18347
|
-
export declare type UserFundingType = 'Deposit' | '
|
|
17626
|
+
export declare type UserFundingType = 'Deposit' | 'Withdraw';
|
|
18348
17627
|
export declare type UserFunding_Filter = {
|
|
18349
17628
|
/** Filter for the block changed event. */
|
|
18350
17629
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
@@ -18364,20 +17643,6 @@ export declare type UserFunding_Filter = {
|
|
|
18364
17643
|
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18365
17644
|
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18366
17645
|
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18367
|
-
exchangeRate?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18368
|
-
exchangeRate_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18369
|
-
exchangeRate_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18370
|
-
exchangeRate_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18371
|
-
exchangeRate_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18372
|
-
exchangeRate_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18373
|
-
exchangeRate_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18374
|
-
exchangeRate_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18375
|
-
from?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18376
|
-
from_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18377
|
-
from_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
18378
|
-
from_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18379
|
-
from_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18380
|
-
from_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
18381
17646
|
hash?: InputMaybe<Scalars['String']['input']>;
|
|
18382
17647
|
hash_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18383
17648
|
hash_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18423,14 +17688,6 @@ export declare type UserFunding_Filter = {
|
|
|
18423
17688
|
lpTokenAmount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18424
17689
|
lpTokenAmount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18425
17690
|
lpTokenAmount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18426
|
-
lpTokenBalance?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18427
|
-
lpTokenBalance_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18428
|
-
lpTokenBalance_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18429
|
-
lpTokenBalance_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18430
|
-
lpTokenBalance_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18431
|
-
lpTokenBalance_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18432
|
-
lpTokenBalance_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18433
|
-
lpTokenBalance_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18434
17691
|
lpToken_?: InputMaybe<Token_Filter>;
|
|
18435
17692
|
lpToken_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18436
17693
|
lpToken_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18465,21 +17722,7 @@ export declare type UserFunding_Filter = {
|
|
|
18465
17722
|
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18466
17723
|
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18467
17724
|
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18468
|
-
to?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18469
|
-
to_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18470
|
-
to_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
18471
|
-
to_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18472
|
-
to_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
18473
|
-
to_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
18474
17725
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
18475
|
-
tokenBalance?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18476
|
-
tokenBalance_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18477
|
-
tokenBalance_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18478
|
-
tokenBalance_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18479
|
-
tokenBalance_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18480
|
-
tokenBalance_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18481
|
-
tokenBalance_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18482
|
-
tokenBalance_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
18483
17726
|
token_?: InputMaybe<Token_Filter>;
|
|
18484
17727
|
token_contains?: InputMaybe<Scalars['String']['input']>;
|
|
18485
17728
|
token_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18555,7 +17798,7 @@ export declare type UserFunding_Filter = {
|
|
|
18555
17798
|
vault_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
18556
17799
|
vault_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
18557
17800
|
};
|
|
18558
|
-
export declare type UserFunding_OrderBy = 'amount' | 'blockNumber' | '
|
|
17801
|
+
export declare type UserFunding_OrderBy = 'amount' | 'blockNumber' | 'hash' | 'id' | 'logIndex' | 'lpToken' | 'lpTokenAmount' | 'msgSender' | 'timestamp' | 'token' | 'updatedAt' | 'user' | 'userFundingType' | 'vault';
|
|
18559
17802
|
export declare type UserNft = {
|
|
18560
17803
|
/** token amount */
|
|
18561
17804
|
amount: Scalars['BigInt']['output'];
|
|
@@ -19477,8 +18720,6 @@ export declare type VaultAssetInfo = {
|
|
|
19477
18720
|
totalReserves: Scalars['BigInt']['output'];
|
|
19478
18721
|
/** updatedAt */
|
|
19479
18722
|
updatedAt: Scalars['BigInt']['output'];
|
|
19480
|
-
/** D3Vault getUtilizationRatio */
|
|
19481
|
-
utilizationRatio?: Maybe<Scalars['BigInt']['output']>;
|
|
19482
18723
|
/** belong vault */
|
|
19483
18724
|
vault: Vault;
|
|
19484
18725
|
withdrawnReserves: Scalars['BigInt']['output'];
|
|
@@ -19486,11 +18727,8 @@ export declare type VaultAssetInfo = {
|
|
|
19486
18727
|
export declare type VaultAssetInfoDayData = {
|
|
19487
18728
|
accruedInterest: Scalars['BigInt']['output'];
|
|
19488
18729
|
accruedInterestUSD: Scalars['BigDecimal']['output'];
|
|
19489
|
-
balance: Scalars['BigInt']['output'];
|
|
19490
18730
|
/** uinx timestamp(start of day) */
|
|
19491
18731
|
date: Scalars['Int']['output'];
|
|
19492
|
-
/** D3Vault getExchangeRate */
|
|
19493
|
-
exchangeRate?: Maybe<Scalars['BigInt']['output']>;
|
|
19494
18732
|
/** vault id-token id- day id */
|
|
19495
18733
|
id: Scalars['ID']['output'];
|
|
19496
18734
|
poolBorrowAmount: Scalars['BigInt']['output'];
|
|
@@ -19501,8 +18739,6 @@ export declare type VaultAssetInfoDayData = {
|
|
|
19501
18739
|
updatedAt: Scalars['BigInt']['output'];
|
|
19502
18740
|
userDepositAmount: Scalars['BigInt']['output'];
|
|
19503
18741
|
userWithdrawAmount: Scalars['BigInt']['output'];
|
|
19504
|
-
/** D3Vault getUtilizationRatio */
|
|
19505
|
-
utilizationRatio?: Maybe<Scalars['BigInt']['output']>;
|
|
19506
18742
|
/** belong vault */
|
|
19507
18743
|
vault: Vault;
|
|
19508
18744
|
/** belong VaultAssetInfo */
|
|
@@ -19527,14 +18763,6 @@ export declare type VaultAssetInfoDayData_Filter = {
|
|
|
19527
18763
|
accruedInterest_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19528
18764
|
accruedInterest_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19529
18765
|
accruedInterest_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19530
|
-
balance?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19531
|
-
balance_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19532
|
-
balance_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19533
|
-
balance_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19534
|
-
balance_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19535
|
-
balance_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19536
|
-
balance_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19537
|
-
balance_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19538
18766
|
date?: InputMaybe<Scalars['Int']['input']>;
|
|
19539
18767
|
date_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
19540
18768
|
date_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -19543,14 +18771,6 @@ export declare type VaultAssetInfoDayData_Filter = {
|
|
|
19543
18771
|
date_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
19544
18772
|
date_not?: InputMaybe<Scalars['Int']['input']>;
|
|
19545
18773
|
date_not_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
19546
|
-
exchangeRate?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19547
|
-
exchangeRate_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19548
|
-
exchangeRate_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19549
|
-
exchangeRate_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19550
|
-
exchangeRate_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19551
|
-
exchangeRate_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19552
|
-
exchangeRate_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19553
|
-
exchangeRate_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19554
18774
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
19555
18775
|
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
19556
18776
|
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -19615,14 +18835,6 @@ export declare type VaultAssetInfoDayData_Filter = {
|
|
|
19615
18835
|
userWithdrawAmount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19616
18836
|
userWithdrawAmount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19617
18837
|
userWithdrawAmount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19618
|
-
utilizationRatio?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19619
|
-
utilizationRatio_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19620
|
-
utilizationRatio_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19621
|
-
utilizationRatio_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19622
|
-
utilizationRatio_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19623
|
-
utilizationRatio_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19624
|
-
utilizationRatio_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19625
|
-
utilizationRatio_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19626
18838
|
vault?: InputMaybe<Scalars['String']['input']>;
|
|
19627
18839
|
vaultAssetInfo?: InputMaybe<Scalars['String']['input']>;
|
|
19628
18840
|
vaultAssetInfo_?: InputMaybe<VaultAssetInfo_Filter>;
|
|
@@ -19666,7 +18878,7 @@ export declare type VaultAssetInfoDayData_Filter = {
|
|
|
19666
18878
|
vault_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
19667
18879
|
vault_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
19668
18880
|
};
|
|
19669
|
-
export declare type VaultAssetInfoDayData_OrderBy = 'accruedInterest' | 'accruedInterestUSD' | '
|
|
18881
|
+
export declare type VaultAssetInfoDayData_OrderBy = 'accruedInterest' | 'accruedInterestUSD' | 'date' | 'id' | 'poolBorrowAmount' | 'poolRepayAmount' | 'tokenOraclePrice' | 'tokenOraclePriceUSD' | 'updatedAt' | 'userDepositAmount' | 'userWithdrawAmount' | 'vault' | 'vaultAssetInfo';
|
|
19670
18882
|
export declare type VaultAssetInfoHistory = {
|
|
19671
18883
|
accrualTime: Scalars['BigInt']['output'];
|
|
19672
18884
|
balance: Scalars['BigInt']['output'];
|
|
@@ -19700,8 +18912,6 @@ export declare type VaultAssetInfoHistory = {
|
|
|
19700
18912
|
totalReserves: Scalars['BigInt']['output'];
|
|
19701
18913
|
/** updatedAt */
|
|
19702
18914
|
updatedAt: Scalars['BigInt']['output'];
|
|
19703
|
-
/** D3Vault getUtilizationRatio */
|
|
19704
|
-
utilizationRatio?: Maybe<Scalars['BigInt']['output']>;
|
|
19705
18915
|
/** belong vault */
|
|
19706
18916
|
vault: Vault;
|
|
19707
18917
|
withdrawnReserves: Scalars['BigInt']['output'];
|
|
@@ -19943,14 +19153,6 @@ export declare type VaultAssetInfoHistory_Filter = {
|
|
|
19943
19153
|
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19944
19154
|
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19945
19155
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19946
|
-
utilizationRatio?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19947
|
-
utilizationRatio_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19948
|
-
utilizationRatio_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19949
|
-
utilizationRatio_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19950
|
-
utilizationRatio_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19951
|
-
utilizationRatio_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19952
|
-
utilizationRatio_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19953
|
-
utilizationRatio_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19954
19156
|
vault?: InputMaybe<Scalars['String']['input']>;
|
|
19955
19157
|
vault_?: InputMaybe<Vault_Filter>;
|
|
19956
19158
|
vault_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19981,7 +19183,7 @@ export declare type VaultAssetInfoHistory_Filter = {
|
|
|
19981
19183
|
withdrawnReserves_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
19982
19184
|
withdrawnReserves_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
19983
19185
|
};
|
|
19984
|
-
export declare type VaultAssetInfoHistory_OrderBy = 'accrualTime' | 'balance' | 'blockNumber' | 'borrowIndex' | 'borrowRate' | 'collateralWeight' | 'debtWeight' | 'eventType' | 'exchangeRate' | 'hash' | 'id' | 'logIndex' | 'lpToken' | 'maxCollateralAmount' | 'maxDepositAmount' | 'reserveFactor' | 'timestamp' | 'token' | 'tokenOraclePrice' | 'tokenOraclePriceUSD' | 'totalBorrows' | 'totalReserves' | 'updatedAt' | '
|
|
19186
|
+
export declare type VaultAssetInfoHistory_OrderBy = 'accrualTime' | 'balance' | 'blockNumber' | 'borrowIndex' | 'borrowRate' | 'collateralWeight' | 'debtWeight' | 'eventType' | 'exchangeRate' | 'hash' | 'id' | 'logIndex' | 'lpToken' | 'maxCollateralAmount' | 'maxDepositAmount' | 'reserveFactor' | 'timestamp' | 'token' | 'tokenOraclePrice' | 'tokenOraclePriceUSD' | 'totalBorrows' | 'totalReserves' | 'updatedAt' | 'vault' | 'withdrawnReserves';
|
|
19985
19187
|
export declare type VaultAssetInfo_Filter = {
|
|
19986
19188
|
/** Filter for the block changed event. */
|
|
19987
19189
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
@@ -20171,14 +19373,6 @@ export declare type VaultAssetInfo_Filter = {
|
|
|
20171
19373
|
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20172
19374
|
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20173
19375
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
20174
|
-
utilizationRatio?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20175
|
-
utilizationRatio_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20176
|
-
utilizationRatio_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20177
|
-
utilizationRatio_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
20178
|
-
utilizationRatio_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20179
|
-
utilizationRatio_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20180
|
-
utilizationRatio_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20181
|
-
utilizationRatio_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
20182
19376
|
vault?: InputMaybe<Scalars['String']['input']>;
|
|
20183
19377
|
vault_?: InputMaybe<Vault_Filter>;
|
|
20184
19378
|
vault_contains?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20209,7 +19403,7 @@ export declare type VaultAssetInfo_Filter = {
|
|
|
20209
19403
|
withdrawnReserves_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
20210
19404
|
withdrawnReserves_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
20211
19405
|
};
|
|
20212
|
-
export declare type VaultAssetInfo_OrderBy = 'accrualTime' | 'balance' | 'borrowIndex' | 'borrowRate' | 'collateralWeight' | 'debtWeight' | 'exchangeRate' | 'id' | 'lpToken' | 'maxCollateralAmount' | 'maxDepositAmount' | 'reserveFactor' | 'token' | 'tokenOraclePrice' | 'tokenOraclePriceUSD' | 'totalBorrows' | 'totalInterest' | 'totalInterestUSD' | 'totalReserves' | 'updatedAt' | '
|
|
19406
|
+
export declare type VaultAssetInfo_OrderBy = 'accrualTime' | 'balance' | 'borrowIndex' | 'borrowRate' | 'collateralWeight' | 'debtWeight' | 'exchangeRate' | 'id' | 'lpToken' | 'maxCollateralAmount' | 'maxDepositAmount' | 'reserveFactor' | 'token' | 'tokenOraclePrice' | 'tokenOraclePriceUSD' | 'totalBorrows' | 'totalInterest' | 'totalInterestUSD' | 'totalReserves' | 'updatedAt' | 'vault' | 'withdrawnReserves';
|
|
20213
19407
|
export declare type VaultDayData = {
|
|
20214
19408
|
/** Accumulated interest USD */
|
|
20215
19409
|
accInterestUSD: Scalars['BigDecimal']['output'];
|
|
@@ -20579,7 +19773,6 @@ export declare type WithdrawFundHistory = {
|
|
|
20579
19773
|
export declare type WithdrawFundHistory_Filter = {
|
|
20580
19774
|
/** Filter for the block changed event. */
|
|
20581
19775
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
20582
|
-
and?: InputMaybe<Array<InputMaybe<WithdrawFundHistory_Filter>>>;
|
|
20583
19776
|
chain?: InputMaybe<Scalars['String']['input']>;
|
|
20584
19777
|
chain_contains?: InputMaybe<Scalars['String']['input']>;
|
|
20585
19778
|
chain_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20630,7 +19823,6 @@ export declare type WithdrawFundHistory_Filter = {
|
|
|
20630
19823
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
20631
19824
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
20632
19825
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
20633
|
-
or?: InputMaybe<Array<InputMaybe<WithdrawFundHistory_Filter>>>;
|
|
20634
19826
|
refreshNow?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20635
19827
|
/** dodoex,vdodo,mine,token,nft,eip721,eip1155 */
|
|
20636
19828
|
schemaName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20673,16 +19865,12 @@ export declare type WithdrawFundHistory_Filter = {
|
|
|
20673
19865
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
20674
19866
|
user?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20675
19867
|
user_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20676
|
-
user_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20677
|
-
user_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20678
19868
|
user_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
20679
|
-
user_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20680
|
-
user_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20681
19869
|
user_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20682
19870
|
user_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
20683
19871
|
user_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
20684
19872
|
};
|
|
20685
|
-
export declare type WithdrawFundHistory_OrderBy = 'chain' | 'fundAmount' | 'hash' | 'id' | 'starter' | '
|
|
19873
|
+
export declare type WithdrawFundHistory_OrderBy = 'chain' | 'fundAmount' | 'hash' | 'id' | 'starter' | 'timestamp' | 'updatedAt' | 'user';
|
|
20686
19874
|
export declare type WithdrawReserve = {
|
|
20687
19875
|
amount: Scalars['BigInt']['output'];
|
|
20688
19876
|
/** Block number of this event */
|
|
@@ -20821,8 +20009,6 @@ export declare type _Block_ = {
|
|
|
20821
20009
|
hash?: Maybe<Scalars['Bytes']['output']>;
|
|
20822
20010
|
/** The block number */
|
|
20823
20011
|
number: Scalars['Int']['output'];
|
|
20824
|
-
/** The hash of the parent block */
|
|
20825
|
-
parentHash?: Maybe<Scalars['Bytes']['output']>;
|
|
20826
20012
|
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
20827
20013
|
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
20828
20014
|
};
|
|
@@ -21465,6 +20651,54 @@ export declare type FetchLiquidityPositionsQuery = {
|
|
|
21465
20651
|
};
|
|
21466
20652
|
} | null;
|
|
21467
20653
|
};
|
|
20654
|
+
export declare type FetchUserSwapOrderHistoriesQueryVariables = Exact<{
|
|
20655
|
+
where?: InputMaybe<User_SwapswapFilter>;
|
|
20656
|
+
}>;
|
|
20657
|
+
export declare type FetchUserSwapOrderHistoriesQuery = {
|
|
20658
|
+
user_swap_orderHistories?: {
|
|
20659
|
+
count?: number | null;
|
|
20660
|
+
page?: number | null;
|
|
20661
|
+
list?: Array<{
|
|
20662
|
+
chainId?: number | null;
|
|
20663
|
+
createdAt?: string | null;
|
|
20664
|
+
fromAmount?: string | null;
|
|
20665
|
+
fromTokenDecimals?: number | null;
|
|
20666
|
+
fromTokenPrice?: string | null;
|
|
20667
|
+
fromTokenSymbol?: string | null;
|
|
20668
|
+
fromTokenAddress?: string | null;
|
|
20669
|
+
fromTokenLogoImg?: string | null;
|
|
20670
|
+
hash?: string | null;
|
|
20671
|
+
status?: string | null;
|
|
20672
|
+
toAmount?: string | null;
|
|
20673
|
+
toTokenDecimals?: number | null;
|
|
20674
|
+
toTokenPrice?: string | null;
|
|
20675
|
+
toTokenSymbol?: string | null;
|
|
20676
|
+
toTokenAddress?: string | null;
|
|
20677
|
+
toTokenLogoImg?: string | null;
|
|
20678
|
+
minAmount?: string | null;
|
|
20679
|
+
nonce?: number | null;
|
|
20680
|
+
extra?: any | null;
|
|
20681
|
+
user?: string | null;
|
|
20682
|
+
} | null> | null;
|
|
20683
|
+
} | null;
|
|
20684
|
+
};
|
|
20685
|
+
export declare type FetchNoticeCenterTransactionListQueryVariables = Exact<{
|
|
20686
|
+
where?: InputMaybe<Notice_CentertransactionListFilter>;
|
|
20687
|
+
}>;
|
|
20688
|
+
export declare type FetchNoticeCenterTransactionListQuery = {
|
|
20689
|
+
notice_center_transactionList?: {
|
|
20690
|
+
count?: number | null;
|
|
20691
|
+
list?: Array<{
|
|
20692
|
+
chainId?: number | null;
|
|
20693
|
+
createTime?: string | null;
|
|
20694
|
+
extend?: any | null;
|
|
20695
|
+
from?: string | null;
|
|
20696
|
+
id?: number | null;
|
|
20697
|
+
key?: string | null;
|
|
20698
|
+
type?: string | null;
|
|
20699
|
+
} | null> | null;
|
|
20700
|
+
} | null;
|
|
20701
|
+
};
|
|
21468
20702
|
export declare class TypedDocumentString<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
|
|
21469
20703
|
private value;
|
|
21470
20704
|
__meta__?: Record<string, any> | undefined;
|
|
@@ -21516,3 +20750,9 @@ export declare const FetchLiquidityPositionsDocument: TypedDocumentString<FetchL
|
|
|
21516
20750
|
orderBy?: InputMaybe<LiquidityPosition_OrderBy> | undefined;
|
|
21517
20751
|
orderDirection?: InputMaybe<OrderDirection> | undefined;
|
|
21518
20752
|
}>>;
|
|
20753
|
+
export declare const FetchUserSwapOrderHistoriesDocument: TypedDocumentString<FetchUserSwapOrderHistoriesQuery, Exact<{
|
|
20754
|
+
where?: InputMaybe<User_SwapswapFilter> | undefined;
|
|
20755
|
+
}>>;
|
|
20756
|
+
export declare const FetchNoticeCenterTransactionListDocument: TypedDocumentString<FetchNoticeCenterTransactionListQuery, Exact<{
|
|
20757
|
+
where?: InputMaybe<Notice_CentertransactionListFilter> | undefined;
|
|
20758
|
+
}>>;
|