@berachain/graphql 0.4.12 → 0.4.14
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/api/api.codegen.cjs +1 -1
- package/dist/api/api.codegen.d.cts +292 -30
- package/dist/api/api.codegen.d.ts +292 -30
- package/dist/chain/chain.codegen.cjs +12 -0
- package/dist/chain/chain.codegen.d.cts +351 -0
- package/dist/chain/chain.codegen.d.ts +351 -0
- package/dist/chain/chain.codegen.mjs +12 -0
- package/dist/dex/api.codegen.cjs +1 -1
- package/dist/dex/api.codegen.d.cts +8 -38
- package/dist/dex/api.codegen.d.ts +8 -38
- package/dist/dex/api.codegen.mjs +2 -2
- package/dist/governance/governance.codegen.d.cts +803 -803
- package/dist/governance/governance.codegen.d.ts +803 -803
- package/dist/honey/honey.codegen.cjs +5 -5
- package/dist/honey/honey.codegen.d.cts +9 -1
- package/dist/honey/honey.codegen.d.ts +9 -1
- package/dist/honey/honey.codegen.mjs +5 -5
- package/dist/pol/api.codegen.cjs +1 -1
- package/dist/pol/api.codegen.d.cts +8 -38
- package/dist/pol/api.codegen.d.ts +8 -38
- package/dist/pol/api.codegen.mjs +2 -2
- package/dist/pol/fees.codegen.cjs +2 -2
- package/dist/pol/fees.codegen.d.cts +9 -1
- package/dist/pol/fees.codegen.d.ts +9 -1
- package/dist/pol/fees.codegen.mjs +2 -2
- package/dist/pol/subgraph.codegen.cjs +8 -8
- package/dist/pol/subgraph.codegen.d.cts +21 -1
- package/dist/pol/subgraph.codegen.d.ts +21 -1
- package/dist/pol/subgraph.codegen.mjs +8 -8
- package/package.json +2 -2
|
@@ -19,7 +19,7 @@ type MakeEmpty<T extends {
|
|
|
19
19
|
[_ in K]?: never;
|
|
20
20
|
};
|
|
21
21
|
type Incremental<T> = T | {
|
|
22
|
-
[P in keyof T]?: P extends
|
|
22
|
+
[P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never;
|
|
23
23
|
};
|
|
24
24
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
25
25
|
type Scalars = {
|
|
@@ -69,104 +69,104 @@ declare enum Aggregation_Interval {
|
|
|
69
69
|
Hour = "hour"
|
|
70
70
|
}
|
|
71
71
|
type BlockChangedFilter = {
|
|
72
|
-
number_gte: Scalars[
|
|
72
|
+
number_gte: Scalars["Int"]["input"];
|
|
73
73
|
};
|
|
74
74
|
type Block_Height = {
|
|
75
|
-
hash?: InputMaybe<Scalars[
|
|
76
|
-
number?: InputMaybe<Scalars[
|
|
77
|
-
number_gte?: InputMaybe<Scalars[
|
|
75
|
+
hash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
76
|
+
number?: InputMaybe<Scalars["Int"]["input"]>;
|
|
77
|
+
number_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
78
78
|
};
|
|
79
79
|
type ExecutableCall = {
|
|
80
|
-
__typename?:
|
|
81
|
-
calldata: Scalars[
|
|
82
|
-
id: Scalars[
|
|
80
|
+
__typename?: "ExecutableCall";
|
|
81
|
+
calldata: Scalars["Bytes"]["output"];
|
|
82
|
+
id: Scalars["ID"]["output"];
|
|
83
83
|
proposal: Proposal;
|
|
84
|
-
signature: Scalars[
|
|
85
|
-
target: Scalars[
|
|
86
|
-
value: Scalars[
|
|
84
|
+
signature: Scalars["String"]["output"];
|
|
85
|
+
target: Scalars["Bytes"]["output"];
|
|
86
|
+
value: Scalars["BigInt"]["output"];
|
|
87
87
|
};
|
|
88
88
|
type ExecutableCall_Filter = {
|
|
89
89
|
/** Filter for the block changed event. */
|
|
90
90
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
91
91
|
and?: InputMaybe<Array<InputMaybe<ExecutableCall_Filter>>>;
|
|
92
|
-
calldata?: InputMaybe<Scalars[
|
|
93
|
-
calldata_contains?: InputMaybe<Scalars[
|
|
94
|
-
calldata_gt?: InputMaybe<Scalars[
|
|
95
|
-
calldata_gte?: InputMaybe<Scalars[
|
|
96
|
-
calldata_in?: InputMaybe<Array<Scalars[
|
|
97
|
-
calldata_lt?: InputMaybe<Scalars[
|
|
98
|
-
calldata_lte?: InputMaybe<Scalars[
|
|
99
|
-
calldata_not?: InputMaybe<Scalars[
|
|
100
|
-
calldata_not_contains?: InputMaybe<Scalars[
|
|
101
|
-
calldata_not_in?: InputMaybe<Array<Scalars[
|
|
102
|
-
id?: InputMaybe<Scalars[
|
|
103
|
-
id_gt?: InputMaybe<Scalars[
|
|
104
|
-
id_gte?: InputMaybe<Scalars[
|
|
105
|
-
id_in?: InputMaybe<Array<Scalars[
|
|
106
|
-
id_lt?: InputMaybe<Scalars[
|
|
107
|
-
id_lte?: InputMaybe<Scalars[
|
|
108
|
-
id_not?: InputMaybe<Scalars[
|
|
109
|
-
id_not_in?: InputMaybe<Array<Scalars[
|
|
92
|
+
calldata?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
93
|
+
calldata_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
94
|
+
calldata_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
95
|
+
calldata_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
96
|
+
calldata_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
97
|
+
calldata_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
98
|
+
calldata_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
99
|
+
calldata_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
100
|
+
calldata_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
101
|
+
calldata_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
102
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
103
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
104
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
105
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
106
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
107
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
108
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
109
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
110
110
|
or?: InputMaybe<Array<InputMaybe<ExecutableCall_Filter>>>;
|
|
111
|
-
proposal?: InputMaybe<Scalars[
|
|
111
|
+
proposal?: InputMaybe<Scalars["String"]["input"]>;
|
|
112
112
|
proposal_?: InputMaybe<Proposal_Filter>;
|
|
113
|
-
proposal_contains?: InputMaybe<Scalars[
|
|
114
|
-
proposal_contains_nocase?: InputMaybe<Scalars[
|
|
115
|
-
proposal_ends_with?: InputMaybe<Scalars[
|
|
116
|
-
proposal_ends_with_nocase?: InputMaybe<Scalars[
|
|
117
|
-
proposal_gt?: InputMaybe<Scalars[
|
|
118
|
-
proposal_gte?: InputMaybe<Scalars[
|
|
119
|
-
proposal_in?: InputMaybe<Array<Scalars[
|
|
120
|
-
proposal_lt?: InputMaybe<Scalars[
|
|
121
|
-
proposal_lte?: InputMaybe<Scalars[
|
|
122
|
-
proposal_not?: InputMaybe<Scalars[
|
|
123
|
-
proposal_not_contains?: InputMaybe<Scalars[
|
|
124
|
-
proposal_not_contains_nocase?: InputMaybe<Scalars[
|
|
125
|
-
proposal_not_ends_with?: InputMaybe<Scalars[
|
|
126
|
-
proposal_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
127
|
-
proposal_not_in?: InputMaybe<Array<Scalars[
|
|
128
|
-
proposal_not_starts_with?: InputMaybe<Scalars[
|
|
129
|
-
proposal_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
130
|
-
proposal_starts_with?: InputMaybe<Scalars[
|
|
131
|
-
proposal_starts_with_nocase?: InputMaybe<Scalars[
|
|
132
|
-
signature?: InputMaybe<Scalars[
|
|
133
|
-
signature_contains?: InputMaybe<Scalars[
|
|
134
|
-
signature_contains_nocase?: InputMaybe<Scalars[
|
|
135
|
-
signature_ends_with?: InputMaybe<Scalars[
|
|
136
|
-
signature_ends_with_nocase?: InputMaybe<Scalars[
|
|
137
|
-
signature_gt?: InputMaybe<Scalars[
|
|
138
|
-
signature_gte?: InputMaybe<Scalars[
|
|
139
|
-
signature_in?: InputMaybe<Array<Scalars[
|
|
140
|
-
signature_lt?: InputMaybe<Scalars[
|
|
141
|
-
signature_lte?: InputMaybe<Scalars[
|
|
142
|
-
signature_not?: InputMaybe<Scalars[
|
|
143
|
-
signature_not_contains?: InputMaybe<Scalars[
|
|
144
|
-
signature_not_contains_nocase?: InputMaybe<Scalars[
|
|
145
|
-
signature_not_ends_with?: InputMaybe<Scalars[
|
|
146
|
-
signature_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
147
|
-
signature_not_in?: InputMaybe<Array<Scalars[
|
|
148
|
-
signature_not_starts_with?: InputMaybe<Scalars[
|
|
149
|
-
signature_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
150
|
-
signature_starts_with?: InputMaybe<Scalars[
|
|
151
|
-
signature_starts_with_nocase?: InputMaybe<Scalars[
|
|
152
|
-
target?: InputMaybe<Scalars[
|
|
153
|
-
target_contains?: InputMaybe<Scalars[
|
|
154
|
-
target_gt?: InputMaybe<Scalars[
|
|
155
|
-
target_gte?: InputMaybe<Scalars[
|
|
156
|
-
target_in?: InputMaybe<Array<Scalars[
|
|
157
|
-
target_lt?: InputMaybe<Scalars[
|
|
158
|
-
target_lte?: InputMaybe<Scalars[
|
|
159
|
-
target_not?: InputMaybe<Scalars[
|
|
160
|
-
target_not_contains?: InputMaybe<Scalars[
|
|
161
|
-
target_not_in?: InputMaybe<Array<Scalars[
|
|
162
|
-
value?: InputMaybe<Scalars[
|
|
163
|
-
value_gt?: InputMaybe<Scalars[
|
|
164
|
-
value_gte?: InputMaybe<Scalars[
|
|
165
|
-
value_in?: InputMaybe<Array<Scalars[
|
|
166
|
-
value_lt?: InputMaybe<Scalars[
|
|
167
|
-
value_lte?: InputMaybe<Scalars[
|
|
168
|
-
value_not?: InputMaybe<Scalars[
|
|
169
|
-
value_not_in?: InputMaybe<Array<Scalars[
|
|
113
|
+
proposal_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
114
|
+
proposal_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
115
|
+
proposal_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
116
|
+
proposal_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
117
|
+
proposal_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
118
|
+
proposal_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
119
|
+
proposal_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
120
|
+
proposal_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
121
|
+
proposal_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
122
|
+
proposal_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
123
|
+
proposal_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
124
|
+
proposal_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
125
|
+
proposal_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
126
|
+
proposal_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
127
|
+
proposal_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
128
|
+
proposal_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
129
|
+
proposal_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
130
|
+
proposal_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
131
|
+
proposal_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
132
|
+
signature?: InputMaybe<Scalars["String"]["input"]>;
|
|
133
|
+
signature_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
134
|
+
signature_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
135
|
+
signature_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
136
|
+
signature_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
137
|
+
signature_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
138
|
+
signature_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
139
|
+
signature_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
140
|
+
signature_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
141
|
+
signature_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
142
|
+
signature_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
143
|
+
signature_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
144
|
+
signature_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
145
|
+
signature_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
146
|
+
signature_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
147
|
+
signature_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
148
|
+
signature_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
149
|
+
signature_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
150
|
+
signature_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
151
|
+
signature_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
152
|
+
target?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
153
|
+
target_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
154
|
+
target_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
155
|
+
target_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
156
|
+
target_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
157
|
+
target_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
158
|
+
target_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
159
|
+
target_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
160
|
+
target_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
161
|
+
target_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
162
|
+
value?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
163
|
+
value_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
164
|
+
value_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
165
|
+
value_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
166
|
+
value_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
167
|
+
value_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
168
|
+
value_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
169
|
+
value_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
170
170
|
};
|
|
171
171
|
declare enum ExecutableCall_OrderBy {
|
|
172
172
|
Calldata = "calldata",
|
|
@@ -212,166 +212,166 @@ declare enum OrderDirection {
|
|
|
212
212
|
Desc = "desc"
|
|
213
213
|
}
|
|
214
214
|
type PollResult = {
|
|
215
|
-
__typename?:
|
|
216
|
-
abstain: Scalars[
|
|
217
|
-
abstainPercentage: Scalars[
|
|
218
|
-
abstainVotersCount: Scalars[
|
|
219
|
-
against: Scalars[
|
|
220
|
-
againstPercentage: Scalars[
|
|
221
|
-
againstVotersCount: Scalars[
|
|
222
|
-
for: Scalars[
|
|
223
|
-
forPercentage: Scalars[
|
|
224
|
-
forVotersCount: Scalars[
|
|
225
|
-
id: Scalars[
|
|
226
|
-
total: Scalars[
|
|
227
|
-
totalTowardsQuorum: Scalars[
|
|
228
|
-
totalVotersCount: Scalars[
|
|
215
|
+
__typename?: "PollResult";
|
|
216
|
+
abstain: Scalars["BigInt"]["output"];
|
|
217
|
+
abstainPercentage: Scalars["String"]["output"];
|
|
218
|
+
abstainVotersCount: Scalars["Int"]["output"];
|
|
219
|
+
against: Scalars["BigInt"]["output"];
|
|
220
|
+
againstPercentage: Scalars["String"]["output"];
|
|
221
|
+
againstVotersCount: Scalars["Int"]["output"];
|
|
222
|
+
for: Scalars["BigInt"]["output"];
|
|
223
|
+
forPercentage: Scalars["String"]["output"];
|
|
224
|
+
forVotersCount: Scalars["Int"]["output"];
|
|
225
|
+
id: Scalars["ID"]["output"];
|
|
226
|
+
total: Scalars["BigInt"]["output"];
|
|
227
|
+
totalTowardsQuorum: Scalars["BigInt"]["output"];
|
|
228
|
+
totalVotersCount: Scalars["Int"]["output"];
|
|
229
229
|
};
|
|
230
230
|
type PollResult_Filter = {
|
|
231
231
|
/** Filter for the block changed event. */
|
|
232
232
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
233
|
-
abstain?: InputMaybe<Scalars[
|
|
234
|
-
abstainPercentage?: InputMaybe<Scalars[
|
|
235
|
-
abstainPercentage_contains?: InputMaybe<Scalars[
|
|
236
|
-
abstainPercentage_contains_nocase?: InputMaybe<Scalars[
|
|
237
|
-
abstainPercentage_ends_with?: InputMaybe<Scalars[
|
|
238
|
-
abstainPercentage_ends_with_nocase?: InputMaybe<Scalars[
|
|
239
|
-
abstainPercentage_gt?: InputMaybe<Scalars[
|
|
240
|
-
abstainPercentage_gte?: InputMaybe<Scalars[
|
|
241
|
-
abstainPercentage_in?: InputMaybe<Array<Scalars[
|
|
242
|
-
abstainPercentage_lt?: InputMaybe<Scalars[
|
|
243
|
-
abstainPercentage_lte?: InputMaybe<Scalars[
|
|
244
|
-
abstainPercentage_not?: InputMaybe<Scalars[
|
|
245
|
-
abstainPercentage_not_contains?: InputMaybe<Scalars[
|
|
246
|
-
abstainPercentage_not_contains_nocase?: InputMaybe<Scalars[
|
|
247
|
-
abstainPercentage_not_ends_with?: InputMaybe<Scalars[
|
|
248
|
-
abstainPercentage_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
249
|
-
abstainPercentage_not_in?: InputMaybe<Array<Scalars[
|
|
250
|
-
abstainPercentage_not_starts_with?: InputMaybe<Scalars[
|
|
251
|
-
abstainPercentage_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
252
|
-
abstainPercentage_starts_with?: InputMaybe<Scalars[
|
|
253
|
-
abstainPercentage_starts_with_nocase?: InputMaybe<Scalars[
|
|
254
|
-
abstainVotersCount?: InputMaybe<Scalars[
|
|
255
|
-
abstainVotersCount_gt?: InputMaybe<Scalars[
|
|
256
|
-
abstainVotersCount_gte?: InputMaybe<Scalars[
|
|
257
|
-
abstainVotersCount_in?: InputMaybe<Array<Scalars[
|
|
258
|
-
abstainVotersCount_lt?: InputMaybe<Scalars[
|
|
259
|
-
abstainVotersCount_lte?: InputMaybe<Scalars[
|
|
260
|
-
abstainVotersCount_not?: InputMaybe<Scalars[
|
|
261
|
-
abstainVotersCount_not_in?: InputMaybe<Array<Scalars[
|
|
262
|
-
abstain_gt?: InputMaybe<Scalars[
|
|
263
|
-
abstain_gte?: InputMaybe<Scalars[
|
|
264
|
-
abstain_in?: InputMaybe<Array<Scalars[
|
|
265
|
-
abstain_lt?: InputMaybe<Scalars[
|
|
266
|
-
abstain_lte?: InputMaybe<Scalars[
|
|
267
|
-
abstain_not?: InputMaybe<Scalars[
|
|
268
|
-
abstain_not_in?: InputMaybe<Array<Scalars[
|
|
269
|
-
against?: InputMaybe<Scalars[
|
|
270
|
-
againstPercentage?: InputMaybe<Scalars[
|
|
271
|
-
againstPercentage_contains?: InputMaybe<Scalars[
|
|
272
|
-
againstPercentage_contains_nocase?: InputMaybe<Scalars[
|
|
273
|
-
againstPercentage_ends_with?: InputMaybe<Scalars[
|
|
274
|
-
againstPercentage_ends_with_nocase?: InputMaybe<Scalars[
|
|
275
|
-
againstPercentage_gt?: InputMaybe<Scalars[
|
|
276
|
-
againstPercentage_gte?: InputMaybe<Scalars[
|
|
277
|
-
againstPercentage_in?: InputMaybe<Array<Scalars[
|
|
278
|
-
againstPercentage_lt?: InputMaybe<Scalars[
|
|
279
|
-
againstPercentage_lte?: InputMaybe<Scalars[
|
|
280
|
-
againstPercentage_not?: InputMaybe<Scalars[
|
|
281
|
-
againstPercentage_not_contains?: InputMaybe<Scalars[
|
|
282
|
-
againstPercentage_not_contains_nocase?: InputMaybe<Scalars[
|
|
283
|
-
againstPercentage_not_ends_with?: InputMaybe<Scalars[
|
|
284
|
-
againstPercentage_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
285
|
-
againstPercentage_not_in?: InputMaybe<Array<Scalars[
|
|
286
|
-
againstPercentage_not_starts_with?: InputMaybe<Scalars[
|
|
287
|
-
againstPercentage_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
288
|
-
againstPercentage_starts_with?: InputMaybe<Scalars[
|
|
289
|
-
againstPercentage_starts_with_nocase?: InputMaybe<Scalars[
|
|
290
|
-
againstVotersCount?: InputMaybe<Scalars[
|
|
291
|
-
againstVotersCount_gt?: InputMaybe<Scalars[
|
|
292
|
-
againstVotersCount_gte?: InputMaybe<Scalars[
|
|
293
|
-
againstVotersCount_in?: InputMaybe<Array<Scalars[
|
|
294
|
-
againstVotersCount_lt?: InputMaybe<Scalars[
|
|
295
|
-
againstVotersCount_lte?: InputMaybe<Scalars[
|
|
296
|
-
againstVotersCount_not?: InputMaybe<Scalars[
|
|
297
|
-
againstVotersCount_not_in?: InputMaybe<Array<Scalars[
|
|
298
|
-
against_gt?: InputMaybe<Scalars[
|
|
299
|
-
against_gte?: InputMaybe<Scalars[
|
|
300
|
-
against_in?: InputMaybe<Array<Scalars[
|
|
301
|
-
against_lt?: InputMaybe<Scalars[
|
|
302
|
-
against_lte?: InputMaybe<Scalars[
|
|
303
|
-
against_not?: InputMaybe<Scalars[
|
|
304
|
-
against_not_in?: InputMaybe<Array<Scalars[
|
|
233
|
+
abstain?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
234
|
+
abstainPercentage?: InputMaybe<Scalars["String"]["input"]>;
|
|
235
|
+
abstainPercentage_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
236
|
+
abstainPercentage_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
237
|
+
abstainPercentage_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
238
|
+
abstainPercentage_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
239
|
+
abstainPercentage_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
240
|
+
abstainPercentage_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
241
|
+
abstainPercentage_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
242
|
+
abstainPercentage_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
243
|
+
abstainPercentage_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
244
|
+
abstainPercentage_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
245
|
+
abstainPercentage_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
246
|
+
abstainPercentage_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
247
|
+
abstainPercentage_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
248
|
+
abstainPercentage_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
249
|
+
abstainPercentage_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
250
|
+
abstainPercentage_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
251
|
+
abstainPercentage_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
252
|
+
abstainPercentage_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
253
|
+
abstainPercentage_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
254
|
+
abstainVotersCount?: InputMaybe<Scalars["Int"]["input"]>;
|
|
255
|
+
abstainVotersCount_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
256
|
+
abstainVotersCount_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
257
|
+
abstainVotersCount_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
258
|
+
abstainVotersCount_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
259
|
+
abstainVotersCount_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
260
|
+
abstainVotersCount_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
261
|
+
abstainVotersCount_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
262
|
+
abstain_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
263
|
+
abstain_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
264
|
+
abstain_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
265
|
+
abstain_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
266
|
+
abstain_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
267
|
+
abstain_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
268
|
+
abstain_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
269
|
+
against?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
270
|
+
againstPercentage?: InputMaybe<Scalars["String"]["input"]>;
|
|
271
|
+
againstPercentage_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
272
|
+
againstPercentage_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
273
|
+
againstPercentage_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
274
|
+
againstPercentage_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
275
|
+
againstPercentage_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
276
|
+
againstPercentage_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
277
|
+
againstPercentage_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
278
|
+
againstPercentage_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
279
|
+
againstPercentage_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
280
|
+
againstPercentage_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
281
|
+
againstPercentage_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
282
|
+
againstPercentage_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
283
|
+
againstPercentage_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
284
|
+
againstPercentage_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
285
|
+
againstPercentage_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
286
|
+
againstPercentage_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
287
|
+
againstPercentage_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
288
|
+
againstPercentage_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
289
|
+
againstPercentage_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
290
|
+
againstVotersCount?: InputMaybe<Scalars["Int"]["input"]>;
|
|
291
|
+
againstVotersCount_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
292
|
+
againstVotersCount_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
293
|
+
againstVotersCount_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
294
|
+
againstVotersCount_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
295
|
+
againstVotersCount_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
296
|
+
againstVotersCount_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
297
|
+
againstVotersCount_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
298
|
+
against_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
299
|
+
against_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
300
|
+
against_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
301
|
+
against_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
302
|
+
against_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
303
|
+
against_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
304
|
+
against_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
305
305
|
and?: InputMaybe<Array<InputMaybe<PollResult_Filter>>>;
|
|
306
|
-
for?: InputMaybe<Scalars[
|
|
307
|
-
forPercentage?: InputMaybe<Scalars[
|
|
308
|
-
forPercentage_contains?: InputMaybe<Scalars[
|
|
309
|
-
forPercentage_contains_nocase?: InputMaybe<Scalars[
|
|
310
|
-
forPercentage_ends_with?: InputMaybe<Scalars[
|
|
311
|
-
forPercentage_ends_with_nocase?: InputMaybe<Scalars[
|
|
312
|
-
forPercentage_gt?: InputMaybe<Scalars[
|
|
313
|
-
forPercentage_gte?: InputMaybe<Scalars[
|
|
314
|
-
forPercentage_in?: InputMaybe<Array<Scalars[
|
|
315
|
-
forPercentage_lt?: InputMaybe<Scalars[
|
|
316
|
-
forPercentage_lte?: InputMaybe<Scalars[
|
|
317
|
-
forPercentage_not?: InputMaybe<Scalars[
|
|
318
|
-
forPercentage_not_contains?: InputMaybe<Scalars[
|
|
319
|
-
forPercentage_not_contains_nocase?: InputMaybe<Scalars[
|
|
320
|
-
forPercentage_not_ends_with?: InputMaybe<Scalars[
|
|
321
|
-
forPercentage_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
322
|
-
forPercentage_not_in?: InputMaybe<Array<Scalars[
|
|
323
|
-
forPercentage_not_starts_with?: InputMaybe<Scalars[
|
|
324
|
-
forPercentage_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
325
|
-
forPercentage_starts_with?: InputMaybe<Scalars[
|
|
326
|
-
forPercentage_starts_with_nocase?: InputMaybe<Scalars[
|
|
327
|
-
forVotersCount?: InputMaybe<Scalars[
|
|
328
|
-
forVotersCount_gt?: InputMaybe<Scalars[
|
|
329
|
-
forVotersCount_gte?: InputMaybe<Scalars[
|
|
330
|
-
forVotersCount_in?: InputMaybe<Array<Scalars[
|
|
331
|
-
forVotersCount_lt?: InputMaybe<Scalars[
|
|
332
|
-
forVotersCount_lte?: InputMaybe<Scalars[
|
|
333
|
-
forVotersCount_not?: InputMaybe<Scalars[
|
|
334
|
-
forVotersCount_not_in?: InputMaybe<Array<Scalars[
|
|
335
|
-
for_gt?: InputMaybe<Scalars[
|
|
336
|
-
for_gte?: InputMaybe<Scalars[
|
|
337
|
-
for_in?: InputMaybe<Array<Scalars[
|
|
338
|
-
for_lt?: InputMaybe<Scalars[
|
|
339
|
-
for_lte?: InputMaybe<Scalars[
|
|
340
|
-
for_not?: InputMaybe<Scalars[
|
|
341
|
-
for_not_in?: InputMaybe<Array<Scalars[
|
|
342
|
-
id?: InputMaybe<Scalars[
|
|
343
|
-
id_gt?: InputMaybe<Scalars[
|
|
344
|
-
id_gte?: InputMaybe<Scalars[
|
|
345
|
-
id_in?: InputMaybe<Array<Scalars[
|
|
346
|
-
id_lt?: InputMaybe<Scalars[
|
|
347
|
-
id_lte?: InputMaybe<Scalars[
|
|
348
|
-
id_not?: InputMaybe<Scalars[
|
|
349
|
-
id_not_in?: InputMaybe<Array<Scalars[
|
|
306
|
+
for?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
307
|
+
forPercentage?: InputMaybe<Scalars["String"]["input"]>;
|
|
308
|
+
forPercentage_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
309
|
+
forPercentage_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
310
|
+
forPercentage_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
311
|
+
forPercentage_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
312
|
+
forPercentage_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
313
|
+
forPercentage_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
314
|
+
forPercentage_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
315
|
+
forPercentage_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
316
|
+
forPercentage_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
317
|
+
forPercentage_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
318
|
+
forPercentage_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
319
|
+
forPercentage_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
320
|
+
forPercentage_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
321
|
+
forPercentage_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
322
|
+
forPercentage_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
323
|
+
forPercentage_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
324
|
+
forPercentage_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
325
|
+
forPercentage_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
326
|
+
forPercentage_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
327
|
+
forVotersCount?: InputMaybe<Scalars["Int"]["input"]>;
|
|
328
|
+
forVotersCount_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
329
|
+
forVotersCount_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
330
|
+
forVotersCount_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
331
|
+
forVotersCount_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
332
|
+
forVotersCount_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
333
|
+
forVotersCount_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
334
|
+
forVotersCount_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
335
|
+
for_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
336
|
+
for_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
337
|
+
for_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
338
|
+
for_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
339
|
+
for_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
340
|
+
for_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
341
|
+
for_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
342
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
343
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
344
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
345
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
346
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
347
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
348
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
349
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
350
350
|
or?: InputMaybe<Array<InputMaybe<PollResult_Filter>>>;
|
|
351
|
-
total?: InputMaybe<Scalars[
|
|
352
|
-
totalTowardsQuorum?: InputMaybe<Scalars[
|
|
353
|
-
totalTowardsQuorum_gt?: InputMaybe<Scalars[
|
|
354
|
-
totalTowardsQuorum_gte?: InputMaybe<Scalars[
|
|
355
|
-
totalTowardsQuorum_in?: InputMaybe<Array<Scalars[
|
|
356
|
-
totalTowardsQuorum_lt?: InputMaybe<Scalars[
|
|
357
|
-
totalTowardsQuorum_lte?: InputMaybe<Scalars[
|
|
358
|
-
totalTowardsQuorum_not?: InputMaybe<Scalars[
|
|
359
|
-
totalTowardsQuorum_not_in?: InputMaybe<Array<Scalars[
|
|
360
|
-
totalVotersCount?: InputMaybe<Scalars[
|
|
361
|
-
totalVotersCount_gt?: InputMaybe<Scalars[
|
|
362
|
-
totalVotersCount_gte?: InputMaybe<Scalars[
|
|
363
|
-
totalVotersCount_in?: InputMaybe<Array<Scalars[
|
|
364
|
-
totalVotersCount_lt?: InputMaybe<Scalars[
|
|
365
|
-
totalVotersCount_lte?: InputMaybe<Scalars[
|
|
366
|
-
totalVotersCount_not?: InputMaybe<Scalars[
|
|
367
|
-
totalVotersCount_not_in?: InputMaybe<Array<Scalars[
|
|
368
|
-
total_gt?: InputMaybe<Scalars[
|
|
369
|
-
total_gte?: InputMaybe<Scalars[
|
|
370
|
-
total_in?: InputMaybe<Array<Scalars[
|
|
371
|
-
total_lt?: InputMaybe<Scalars[
|
|
372
|
-
total_lte?: InputMaybe<Scalars[
|
|
373
|
-
total_not?: InputMaybe<Scalars[
|
|
374
|
-
total_not_in?: InputMaybe<Array<Scalars[
|
|
351
|
+
total?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
352
|
+
totalTowardsQuorum?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
353
|
+
totalTowardsQuorum_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
354
|
+
totalTowardsQuorum_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
355
|
+
totalTowardsQuorum_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
356
|
+
totalTowardsQuorum_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
357
|
+
totalTowardsQuorum_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
358
|
+
totalTowardsQuorum_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
359
|
+
totalTowardsQuorum_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
360
|
+
totalVotersCount?: InputMaybe<Scalars["Int"]["input"]>;
|
|
361
|
+
totalVotersCount_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
362
|
+
totalVotersCount_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
363
|
+
totalVotersCount_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
364
|
+
totalVotersCount_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
365
|
+
totalVotersCount_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
366
|
+
totalVotersCount_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
367
|
+
totalVotersCount_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
368
|
+
total_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
369
|
+
total_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
370
|
+
total_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
371
|
+
total_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
372
|
+
total_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
373
|
+
total_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
374
|
+
total_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
375
375
|
};
|
|
376
376
|
declare enum PollResult_OrderBy {
|
|
377
377
|
Abstain = "abstain",
|
|
@@ -389,55 +389,55 @@ declare enum PollResult_OrderBy {
|
|
|
389
389
|
TotalVotersCount = "totalVotersCount"
|
|
390
390
|
}
|
|
391
391
|
type Proposal = {
|
|
392
|
-
__typename?:
|
|
393
|
-
cancelTxHash?: Maybe<Scalars[
|
|
394
|
-
canceledAt?: Maybe<Scalars[
|
|
395
|
-
canceledAtBlock?: Maybe<Scalars[
|
|
396
|
-
contentEncoding?: Maybe<Scalars[
|
|
397
|
-
contentType?: Maybe<Scalars[
|
|
398
|
-
createTxHash?: Maybe<Scalars[
|
|
399
|
-
createdAt: Scalars[
|
|
400
|
-
createdAtBlock: Scalars[
|
|
401
|
-
description: Scalars[
|
|
402
|
-
executableAtBlock?: Maybe<Scalars[
|
|
392
|
+
__typename?: "Proposal";
|
|
393
|
+
cancelTxHash?: Maybe<Scalars["Bytes"]["output"]>;
|
|
394
|
+
canceledAt?: Maybe<Scalars["BigInt"]["output"]>;
|
|
395
|
+
canceledAtBlock?: Maybe<Scalars["BigInt"]["output"]>;
|
|
396
|
+
contentEncoding?: Maybe<Scalars["String"]["output"]>;
|
|
397
|
+
contentType?: Maybe<Scalars["String"]["output"]>;
|
|
398
|
+
createTxHash?: Maybe<Scalars["Bytes"]["output"]>;
|
|
399
|
+
createdAt: Scalars["BigInt"]["output"];
|
|
400
|
+
createdAtBlock: Scalars["BigInt"]["output"];
|
|
401
|
+
description: Scalars["String"]["output"];
|
|
402
|
+
executableAtBlock?: Maybe<Scalars["BigInt"]["output"]>;
|
|
403
403
|
executableCalls: Array<ExecutableCall>;
|
|
404
|
-
executeTxHash?: Maybe<Scalars[
|
|
405
|
-
executedAt?: Maybe<Scalars[
|
|
406
|
-
executedAtBlock?: Maybe<Scalars[
|
|
407
|
-
id: Scalars[
|
|
404
|
+
executeTxHash?: Maybe<Scalars["Bytes"]["output"]>;
|
|
405
|
+
executedAt?: Maybe<Scalars["BigInt"]["output"]>;
|
|
406
|
+
executedAtBlock?: Maybe<Scalars["BigInt"]["output"]>;
|
|
407
|
+
id: Scalars["ID"]["output"];
|
|
408
408
|
pollResult: PollResult;
|
|
409
|
-
proposalId: Scalars[
|
|
410
|
-
proposer: Scalars[
|
|
411
|
-
queueEnd?: Maybe<Scalars[
|
|
412
|
-
queueStart?: Maybe<Scalars[
|
|
413
|
-
queueStartBlock?: Maybe<Scalars[
|
|
414
|
-
queueTxHash?: Maybe<Scalars[
|
|
415
|
-
quorum?: Maybe<Scalars[
|
|
409
|
+
proposalId: Scalars["BigInt"]["output"];
|
|
410
|
+
proposer: Scalars["Bytes"]["output"];
|
|
411
|
+
queueEnd?: Maybe<Scalars["BigInt"]["output"]>;
|
|
412
|
+
queueStart?: Maybe<Scalars["BigInt"]["output"]>;
|
|
413
|
+
queueStartBlock?: Maybe<Scalars["BigInt"]["output"]>;
|
|
414
|
+
queueTxHash?: Maybe<Scalars["Bytes"]["output"]>;
|
|
415
|
+
quorum?: Maybe<Scalars["BigInt"]["output"]>;
|
|
416
416
|
status: ProposalStatus;
|
|
417
|
-
succeededAt?: Maybe<Scalars[
|
|
418
|
-
succeededAtBlock?: Maybe<Scalars[
|
|
419
|
-
succeededVoteTxHash?: Maybe<Scalars[
|
|
417
|
+
succeededAt?: Maybe<Scalars["BigInt"]["output"]>;
|
|
418
|
+
succeededAtBlock?: Maybe<Scalars["BigInt"]["output"]>;
|
|
419
|
+
succeededVoteTxHash?: Maybe<Scalars["Bytes"]["output"]>;
|
|
420
420
|
timelock?: Maybe<Timelock>;
|
|
421
|
-
title?: Maybe<Scalars[
|
|
422
|
-
topics: Array<Scalars[
|
|
423
|
-
unparsedDescription: Scalars[
|
|
424
|
-
unverifiedForumLink?: Maybe<Scalars[
|
|
425
|
-
voteEndAt: Scalars[
|
|
426
|
-
voteStartAt: Scalars[
|
|
421
|
+
title?: Maybe<Scalars["String"]["output"]>;
|
|
422
|
+
topics: Array<Scalars["String"]["output"]>;
|
|
423
|
+
unparsedDescription: Scalars["String"]["output"];
|
|
424
|
+
unverifiedForumLink?: Maybe<Scalars["String"]["output"]>;
|
|
425
|
+
voteEndAt: Scalars["BigInt"]["output"];
|
|
426
|
+
voteStartAt: Scalars["BigInt"]["output"];
|
|
427
427
|
votes: Array<Vote>;
|
|
428
428
|
};
|
|
429
429
|
type ProposalExecutableCallsArgs = {
|
|
430
|
-
first?: InputMaybe<Scalars[
|
|
430
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
431
431
|
orderBy?: InputMaybe<ExecutableCall_OrderBy>;
|
|
432
432
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
433
|
-
skip?: InputMaybe<Scalars[
|
|
433
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
434
434
|
where?: InputMaybe<ExecutableCall_Filter>;
|
|
435
435
|
};
|
|
436
436
|
type ProposalVotesArgs = {
|
|
437
|
-
first?: InputMaybe<Scalars[
|
|
437
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
438
438
|
orderBy?: InputMaybe<Vote_OrderBy>;
|
|
439
439
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
440
|
-
skip?: InputMaybe<Scalars[
|
|
440
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
441
441
|
where?: InputMaybe<Vote_Filter>;
|
|
442
442
|
};
|
|
443
443
|
declare enum ProposalStatus {
|
|
@@ -456,356 +456,356 @@ type Proposal_Filter = {
|
|
|
456
456
|
/** Filter for the block changed event. */
|
|
457
457
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
458
458
|
and?: InputMaybe<Array<InputMaybe<Proposal_Filter>>>;
|
|
459
|
-
cancelTxHash?: InputMaybe<Scalars[
|
|
460
|
-
cancelTxHash_contains?: InputMaybe<Scalars[
|
|
461
|
-
cancelTxHash_gt?: InputMaybe<Scalars[
|
|
462
|
-
cancelTxHash_gte?: InputMaybe<Scalars[
|
|
463
|
-
cancelTxHash_in?: InputMaybe<Array<Scalars[
|
|
464
|
-
cancelTxHash_lt?: InputMaybe<Scalars[
|
|
465
|
-
cancelTxHash_lte?: InputMaybe<Scalars[
|
|
466
|
-
cancelTxHash_not?: InputMaybe<Scalars[
|
|
467
|
-
cancelTxHash_not_contains?: InputMaybe<Scalars[
|
|
468
|
-
cancelTxHash_not_in?: InputMaybe<Array<Scalars[
|
|
469
|
-
canceledAt?: InputMaybe<Scalars[
|
|
470
|
-
canceledAtBlock?: InputMaybe<Scalars[
|
|
471
|
-
canceledAtBlock_gt?: InputMaybe<Scalars[
|
|
472
|
-
canceledAtBlock_gte?: InputMaybe<Scalars[
|
|
473
|
-
canceledAtBlock_in?: InputMaybe<Array<Scalars[
|
|
474
|
-
canceledAtBlock_lt?: InputMaybe<Scalars[
|
|
475
|
-
canceledAtBlock_lte?: InputMaybe<Scalars[
|
|
476
|
-
canceledAtBlock_not?: InputMaybe<Scalars[
|
|
477
|
-
canceledAtBlock_not_in?: InputMaybe<Array<Scalars[
|
|
478
|
-
canceledAt_gt?: InputMaybe<Scalars[
|
|
479
|
-
canceledAt_gte?: InputMaybe<Scalars[
|
|
480
|
-
canceledAt_in?: InputMaybe<Array<Scalars[
|
|
481
|
-
canceledAt_lt?: InputMaybe<Scalars[
|
|
482
|
-
canceledAt_lte?: InputMaybe<Scalars[
|
|
483
|
-
canceledAt_not?: InputMaybe<Scalars[
|
|
484
|
-
canceledAt_not_in?: InputMaybe<Array<Scalars[
|
|
485
|
-
contentEncoding?: InputMaybe<Scalars[
|
|
486
|
-
contentEncoding_contains?: InputMaybe<Scalars[
|
|
487
|
-
contentEncoding_contains_nocase?: InputMaybe<Scalars[
|
|
488
|
-
contentEncoding_ends_with?: InputMaybe<Scalars[
|
|
489
|
-
contentEncoding_ends_with_nocase?: InputMaybe<Scalars[
|
|
490
|
-
contentEncoding_gt?: InputMaybe<Scalars[
|
|
491
|
-
contentEncoding_gte?: InputMaybe<Scalars[
|
|
492
|
-
contentEncoding_in?: InputMaybe<Array<Scalars[
|
|
493
|
-
contentEncoding_lt?: InputMaybe<Scalars[
|
|
494
|
-
contentEncoding_lte?: InputMaybe<Scalars[
|
|
495
|
-
contentEncoding_not?: InputMaybe<Scalars[
|
|
496
|
-
contentEncoding_not_contains?: InputMaybe<Scalars[
|
|
497
|
-
contentEncoding_not_contains_nocase?: InputMaybe<Scalars[
|
|
498
|
-
contentEncoding_not_ends_with?: InputMaybe<Scalars[
|
|
499
|
-
contentEncoding_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
500
|
-
contentEncoding_not_in?: InputMaybe<Array<Scalars[
|
|
501
|
-
contentEncoding_not_starts_with?: InputMaybe<Scalars[
|
|
502
|
-
contentEncoding_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
503
|
-
contentEncoding_starts_with?: InputMaybe<Scalars[
|
|
504
|
-
contentEncoding_starts_with_nocase?: InputMaybe<Scalars[
|
|
505
|
-
contentType?: InputMaybe<Scalars[
|
|
506
|
-
contentType_contains?: InputMaybe<Scalars[
|
|
507
|
-
contentType_contains_nocase?: InputMaybe<Scalars[
|
|
508
|
-
contentType_ends_with?: InputMaybe<Scalars[
|
|
509
|
-
contentType_ends_with_nocase?: InputMaybe<Scalars[
|
|
510
|
-
contentType_gt?: InputMaybe<Scalars[
|
|
511
|
-
contentType_gte?: InputMaybe<Scalars[
|
|
512
|
-
contentType_in?: InputMaybe<Array<Scalars[
|
|
513
|
-
contentType_lt?: InputMaybe<Scalars[
|
|
514
|
-
contentType_lte?: InputMaybe<Scalars[
|
|
515
|
-
contentType_not?: InputMaybe<Scalars[
|
|
516
|
-
contentType_not_contains?: InputMaybe<Scalars[
|
|
517
|
-
contentType_not_contains_nocase?: InputMaybe<Scalars[
|
|
518
|
-
contentType_not_ends_with?: InputMaybe<Scalars[
|
|
519
|
-
contentType_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
520
|
-
contentType_not_in?: InputMaybe<Array<Scalars[
|
|
521
|
-
contentType_not_starts_with?: InputMaybe<Scalars[
|
|
522
|
-
contentType_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
523
|
-
contentType_starts_with?: InputMaybe<Scalars[
|
|
524
|
-
contentType_starts_with_nocase?: InputMaybe<Scalars[
|
|
525
|
-
createTxHash?: InputMaybe<Scalars[
|
|
526
|
-
createTxHash_contains?: InputMaybe<Scalars[
|
|
527
|
-
createTxHash_gt?: InputMaybe<Scalars[
|
|
528
|
-
createTxHash_gte?: InputMaybe<Scalars[
|
|
529
|
-
createTxHash_in?: InputMaybe<Array<Scalars[
|
|
530
|
-
createTxHash_lt?: InputMaybe<Scalars[
|
|
531
|
-
createTxHash_lte?: InputMaybe<Scalars[
|
|
532
|
-
createTxHash_not?: InputMaybe<Scalars[
|
|
533
|
-
createTxHash_not_contains?: InputMaybe<Scalars[
|
|
534
|
-
createTxHash_not_in?: InputMaybe<Array<Scalars[
|
|
535
|
-
createdAt?: InputMaybe<Scalars[
|
|
536
|
-
createdAtBlock?: InputMaybe<Scalars[
|
|
537
|
-
createdAtBlock_gt?: InputMaybe<Scalars[
|
|
538
|
-
createdAtBlock_gte?: InputMaybe<Scalars[
|
|
539
|
-
createdAtBlock_in?: InputMaybe<Array<Scalars[
|
|
540
|
-
createdAtBlock_lt?: InputMaybe<Scalars[
|
|
541
|
-
createdAtBlock_lte?: InputMaybe<Scalars[
|
|
542
|
-
createdAtBlock_not?: InputMaybe<Scalars[
|
|
543
|
-
createdAtBlock_not_in?: InputMaybe<Array<Scalars[
|
|
544
|
-
createdAt_gt?: InputMaybe<Scalars[
|
|
545
|
-
createdAt_gte?: InputMaybe<Scalars[
|
|
546
|
-
createdAt_in?: InputMaybe<Array<Scalars[
|
|
547
|
-
createdAt_lt?: InputMaybe<Scalars[
|
|
548
|
-
createdAt_lte?: InputMaybe<Scalars[
|
|
549
|
-
createdAt_not?: InputMaybe<Scalars[
|
|
550
|
-
createdAt_not_in?: InputMaybe<Array<Scalars[
|
|
551
|
-
description?: InputMaybe<Scalars[
|
|
552
|
-
description_contains?: InputMaybe<Scalars[
|
|
553
|
-
description_contains_nocase?: InputMaybe<Scalars[
|
|
554
|
-
description_ends_with?: InputMaybe<Scalars[
|
|
555
|
-
description_ends_with_nocase?: InputMaybe<Scalars[
|
|
556
|
-
description_gt?: InputMaybe<Scalars[
|
|
557
|
-
description_gte?: InputMaybe<Scalars[
|
|
558
|
-
description_in?: InputMaybe<Array<Scalars[
|
|
559
|
-
description_lt?: InputMaybe<Scalars[
|
|
560
|
-
description_lte?: InputMaybe<Scalars[
|
|
561
|
-
description_not?: InputMaybe<Scalars[
|
|
562
|
-
description_not_contains?: InputMaybe<Scalars[
|
|
563
|
-
description_not_contains_nocase?: InputMaybe<Scalars[
|
|
564
|
-
description_not_ends_with?: InputMaybe<Scalars[
|
|
565
|
-
description_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
566
|
-
description_not_in?: InputMaybe<Array<Scalars[
|
|
567
|
-
description_not_starts_with?: InputMaybe<Scalars[
|
|
568
|
-
description_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
569
|
-
description_starts_with?: InputMaybe<Scalars[
|
|
570
|
-
description_starts_with_nocase?: InputMaybe<Scalars[
|
|
571
|
-
executableAtBlock?: InputMaybe<Scalars[
|
|
572
|
-
executableAtBlock_gt?: InputMaybe<Scalars[
|
|
573
|
-
executableAtBlock_gte?: InputMaybe<Scalars[
|
|
574
|
-
executableAtBlock_in?: InputMaybe<Array<Scalars[
|
|
575
|
-
executableAtBlock_lt?: InputMaybe<Scalars[
|
|
576
|
-
executableAtBlock_lte?: InputMaybe<Scalars[
|
|
577
|
-
executableAtBlock_not?: InputMaybe<Scalars[
|
|
578
|
-
executableAtBlock_not_in?: InputMaybe<Array<Scalars[
|
|
459
|
+
cancelTxHash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
460
|
+
cancelTxHash_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
461
|
+
cancelTxHash_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
462
|
+
cancelTxHash_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
463
|
+
cancelTxHash_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
464
|
+
cancelTxHash_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
465
|
+
cancelTxHash_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
466
|
+
cancelTxHash_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
467
|
+
cancelTxHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
468
|
+
cancelTxHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
469
|
+
canceledAt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
470
|
+
canceledAtBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
471
|
+
canceledAtBlock_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
472
|
+
canceledAtBlock_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
473
|
+
canceledAtBlock_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
474
|
+
canceledAtBlock_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
475
|
+
canceledAtBlock_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
476
|
+
canceledAtBlock_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
477
|
+
canceledAtBlock_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
478
|
+
canceledAt_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
479
|
+
canceledAt_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
480
|
+
canceledAt_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
481
|
+
canceledAt_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
482
|
+
canceledAt_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
483
|
+
canceledAt_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
484
|
+
canceledAt_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
485
|
+
contentEncoding?: InputMaybe<Scalars["String"]["input"]>;
|
|
486
|
+
contentEncoding_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
487
|
+
contentEncoding_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
488
|
+
contentEncoding_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
489
|
+
contentEncoding_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
490
|
+
contentEncoding_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
491
|
+
contentEncoding_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
492
|
+
contentEncoding_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
493
|
+
contentEncoding_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
494
|
+
contentEncoding_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
495
|
+
contentEncoding_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
496
|
+
contentEncoding_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
497
|
+
contentEncoding_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
498
|
+
contentEncoding_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
499
|
+
contentEncoding_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
500
|
+
contentEncoding_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
501
|
+
contentEncoding_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
502
|
+
contentEncoding_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
503
|
+
contentEncoding_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
504
|
+
contentEncoding_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
505
|
+
contentType?: InputMaybe<Scalars["String"]["input"]>;
|
|
506
|
+
contentType_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
507
|
+
contentType_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
508
|
+
contentType_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
509
|
+
contentType_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
510
|
+
contentType_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
511
|
+
contentType_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
512
|
+
contentType_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
513
|
+
contentType_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
514
|
+
contentType_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
515
|
+
contentType_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
516
|
+
contentType_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
517
|
+
contentType_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
518
|
+
contentType_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
519
|
+
contentType_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
520
|
+
contentType_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
521
|
+
contentType_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
522
|
+
contentType_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
523
|
+
contentType_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
524
|
+
contentType_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
525
|
+
createTxHash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
526
|
+
createTxHash_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
527
|
+
createTxHash_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
528
|
+
createTxHash_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
529
|
+
createTxHash_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
530
|
+
createTxHash_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
531
|
+
createTxHash_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
532
|
+
createTxHash_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
533
|
+
createTxHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
534
|
+
createTxHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
535
|
+
createdAt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
536
|
+
createdAtBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
537
|
+
createdAtBlock_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
538
|
+
createdAtBlock_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
539
|
+
createdAtBlock_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
540
|
+
createdAtBlock_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
541
|
+
createdAtBlock_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
542
|
+
createdAtBlock_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
543
|
+
createdAtBlock_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
544
|
+
createdAt_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
545
|
+
createdAt_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
546
|
+
createdAt_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
547
|
+
createdAt_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
548
|
+
createdAt_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
549
|
+
createdAt_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
550
|
+
createdAt_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
551
|
+
description?: InputMaybe<Scalars["String"]["input"]>;
|
|
552
|
+
description_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
553
|
+
description_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
554
|
+
description_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
555
|
+
description_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
556
|
+
description_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
557
|
+
description_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
558
|
+
description_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
559
|
+
description_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
560
|
+
description_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
561
|
+
description_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
562
|
+
description_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
563
|
+
description_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
564
|
+
description_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
565
|
+
description_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
566
|
+
description_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
567
|
+
description_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
568
|
+
description_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
569
|
+
description_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
570
|
+
description_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
571
|
+
executableAtBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
572
|
+
executableAtBlock_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
573
|
+
executableAtBlock_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
574
|
+
executableAtBlock_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
575
|
+
executableAtBlock_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
576
|
+
executableAtBlock_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
577
|
+
executableAtBlock_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
578
|
+
executableAtBlock_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
579
579
|
executableCalls_?: InputMaybe<ExecutableCall_Filter>;
|
|
580
|
-
executeTxHash?: InputMaybe<Scalars[
|
|
581
|
-
executeTxHash_contains?: InputMaybe<Scalars[
|
|
582
|
-
executeTxHash_gt?: InputMaybe<Scalars[
|
|
583
|
-
executeTxHash_gte?: InputMaybe<Scalars[
|
|
584
|
-
executeTxHash_in?: InputMaybe<Array<Scalars[
|
|
585
|
-
executeTxHash_lt?: InputMaybe<Scalars[
|
|
586
|
-
executeTxHash_lte?: InputMaybe<Scalars[
|
|
587
|
-
executeTxHash_not?: InputMaybe<Scalars[
|
|
588
|
-
executeTxHash_not_contains?: InputMaybe<Scalars[
|
|
589
|
-
executeTxHash_not_in?: InputMaybe<Array<Scalars[
|
|
590
|
-
executedAt?: InputMaybe<Scalars[
|
|
591
|
-
executedAtBlock?: InputMaybe<Scalars[
|
|
592
|
-
executedAtBlock_gt?: InputMaybe<Scalars[
|
|
593
|
-
executedAtBlock_gte?: InputMaybe<Scalars[
|
|
594
|
-
executedAtBlock_in?: InputMaybe<Array<Scalars[
|
|
595
|
-
executedAtBlock_lt?: InputMaybe<Scalars[
|
|
596
|
-
executedAtBlock_lte?: InputMaybe<Scalars[
|
|
597
|
-
executedAtBlock_not?: InputMaybe<Scalars[
|
|
598
|
-
executedAtBlock_not_in?: InputMaybe<Array<Scalars[
|
|
599
|
-
executedAt_gt?: InputMaybe<Scalars[
|
|
600
|
-
executedAt_gte?: InputMaybe<Scalars[
|
|
601
|
-
executedAt_in?: InputMaybe<Array<Scalars[
|
|
602
|
-
executedAt_lt?: InputMaybe<Scalars[
|
|
603
|
-
executedAt_lte?: InputMaybe<Scalars[
|
|
604
|
-
executedAt_not?: InputMaybe<Scalars[
|
|
605
|
-
executedAt_not_in?: InputMaybe<Array<Scalars[
|
|
606
|
-
id?: InputMaybe<Scalars[
|
|
607
|
-
id_gt?: InputMaybe<Scalars[
|
|
608
|
-
id_gte?: InputMaybe<Scalars[
|
|
609
|
-
id_in?: InputMaybe<Array<Scalars[
|
|
610
|
-
id_lt?: InputMaybe<Scalars[
|
|
611
|
-
id_lte?: InputMaybe<Scalars[
|
|
612
|
-
id_not?: InputMaybe<Scalars[
|
|
613
|
-
id_not_in?: InputMaybe<Array<Scalars[
|
|
580
|
+
executeTxHash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
581
|
+
executeTxHash_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
582
|
+
executeTxHash_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
583
|
+
executeTxHash_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
584
|
+
executeTxHash_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
585
|
+
executeTxHash_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
586
|
+
executeTxHash_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
587
|
+
executeTxHash_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
588
|
+
executeTxHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
589
|
+
executeTxHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
590
|
+
executedAt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
591
|
+
executedAtBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
592
|
+
executedAtBlock_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
593
|
+
executedAtBlock_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
594
|
+
executedAtBlock_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
595
|
+
executedAtBlock_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
596
|
+
executedAtBlock_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
597
|
+
executedAtBlock_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
598
|
+
executedAtBlock_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
599
|
+
executedAt_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
600
|
+
executedAt_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
601
|
+
executedAt_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
602
|
+
executedAt_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
603
|
+
executedAt_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
604
|
+
executedAt_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
605
|
+
executedAt_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
606
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
607
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
608
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
609
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
610
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
611
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
612
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
613
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
614
614
|
or?: InputMaybe<Array<InputMaybe<Proposal_Filter>>>;
|
|
615
|
-
pollResult?: InputMaybe<Scalars[
|
|
615
|
+
pollResult?: InputMaybe<Scalars["String"]["input"]>;
|
|
616
616
|
pollResult_?: InputMaybe<PollResult_Filter>;
|
|
617
|
-
pollResult_contains?: InputMaybe<Scalars[
|
|
618
|
-
pollResult_contains_nocase?: InputMaybe<Scalars[
|
|
619
|
-
pollResult_ends_with?: InputMaybe<Scalars[
|
|
620
|
-
pollResult_ends_with_nocase?: InputMaybe<Scalars[
|
|
621
|
-
pollResult_gt?: InputMaybe<Scalars[
|
|
622
|
-
pollResult_gte?: InputMaybe<Scalars[
|
|
623
|
-
pollResult_in?: InputMaybe<Array<Scalars[
|
|
624
|
-
pollResult_lt?: InputMaybe<Scalars[
|
|
625
|
-
pollResult_lte?: InputMaybe<Scalars[
|
|
626
|
-
pollResult_not?: InputMaybe<Scalars[
|
|
627
|
-
pollResult_not_contains?: InputMaybe<Scalars[
|
|
628
|
-
pollResult_not_contains_nocase?: InputMaybe<Scalars[
|
|
629
|
-
pollResult_not_ends_with?: InputMaybe<Scalars[
|
|
630
|
-
pollResult_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
631
|
-
pollResult_not_in?: InputMaybe<Array<Scalars[
|
|
632
|
-
pollResult_not_starts_with?: InputMaybe<Scalars[
|
|
633
|
-
pollResult_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
634
|
-
pollResult_starts_with?: InputMaybe<Scalars[
|
|
635
|
-
pollResult_starts_with_nocase?: InputMaybe<Scalars[
|
|
636
|
-
proposalId?: InputMaybe<Scalars[
|
|
637
|
-
proposalId_gt?: InputMaybe<Scalars[
|
|
638
|
-
proposalId_gte?: InputMaybe<Scalars[
|
|
639
|
-
proposalId_in?: InputMaybe<Array<Scalars[
|
|
640
|
-
proposalId_lt?: InputMaybe<Scalars[
|
|
641
|
-
proposalId_lte?: InputMaybe<Scalars[
|
|
642
|
-
proposalId_not?: InputMaybe<Scalars[
|
|
643
|
-
proposalId_not_in?: InputMaybe<Array<Scalars[
|
|
644
|
-
proposer?: InputMaybe<Scalars[
|
|
645
|
-
proposer_contains?: InputMaybe<Scalars[
|
|
646
|
-
proposer_gt?: InputMaybe<Scalars[
|
|
647
|
-
proposer_gte?: InputMaybe<Scalars[
|
|
648
|
-
proposer_in?: InputMaybe<Array<Scalars[
|
|
649
|
-
proposer_lt?: InputMaybe<Scalars[
|
|
650
|
-
proposer_lte?: InputMaybe<Scalars[
|
|
651
|
-
proposer_not?: InputMaybe<Scalars[
|
|
652
|
-
proposer_not_contains?: InputMaybe<Scalars[
|
|
653
|
-
proposer_not_in?: InputMaybe<Array<Scalars[
|
|
654
|
-
queueEnd?: InputMaybe<Scalars[
|
|
655
|
-
queueEnd_gt?: InputMaybe<Scalars[
|
|
656
|
-
queueEnd_gte?: InputMaybe<Scalars[
|
|
657
|
-
queueEnd_in?: InputMaybe<Array<Scalars[
|
|
658
|
-
queueEnd_lt?: InputMaybe<Scalars[
|
|
659
|
-
queueEnd_lte?: InputMaybe<Scalars[
|
|
660
|
-
queueEnd_not?: InputMaybe<Scalars[
|
|
661
|
-
queueEnd_not_in?: InputMaybe<Array<Scalars[
|
|
662
|
-
queueStart?: InputMaybe<Scalars[
|
|
663
|
-
queueStartBlock?: InputMaybe<Scalars[
|
|
664
|
-
queueStartBlock_gt?: InputMaybe<Scalars[
|
|
665
|
-
queueStartBlock_gte?: InputMaybe<Scalars[
|
|
666
|
-
queueStartBlock_in?: InputMaybe<Array<Scalars[
|
|
667
|
-
queueStartBlock_lt?: InputMaybe<Scalars[
|
|
668
|
-
queueStartBlock_lte?: InputMaybe<Scalars[
|
|
669
|
-
queueStartBlock_not?: InputMaybe<Scalars[
|
|
670
|
-
queueStartBlock_not_in?: InputMaybe<Array<Scalars[
|
|
671
|
-
queueStart_gt?: InputMaybe<Scalars[
|
|
672
|
-
queueStart_gte?: InputMaybe<Scalars[
|
|
673
|
-
queueStart_in?: InputMaybe<Array<Scalars[
|
|
674
|
-
queueStart_lt?: InputMaybe<Scalars[
|
|
675
|
-
queueStart_lte?: InputMaybe<Scalars[
|
|
676
|
-
queueStart_not?: InputMaybe<Scalars[
|
|
677
|
-
queueStart_not_in?: InputMaybe<Array<Scalars[
|
|
678
|
-
queueTxHash?: InputMaybe<Scalars[
|
|
679
|
-
queueTxHash_contains?: InputMaybe<Scalars[
|
|
680
|
-
queueTxHash_gt?: InputMaybe<Scalars[
|
|
681
|
-
queueTxHash_gte?: InputMaybe<Scalars[
|
|
682
|
-
queueTxHash_in?: InputMaybe<Array<Scalars[
|
|
683
|
-
queueTxHash_lt?: InputMaybe<Scalars[
|
|
684
|
-
queueTxHash_lte?: InputMaybe<Scalars[
|
|
685
|
-
queueTxHash_not?: InputMaybe<Scalars[
|
|
686
|
-
queueTxHash_not_contains?: InputMaybe<Scalars[
|
|
687
|
-
queueTxHash_not_in?: InputMaybe<Array<Scalars[
|
|
688
|
-
quorum?: InputMaybe<Scalars[
|
|
689
|
-
quorum_gt?: InputMaybe<Scalars[
|
|
690
|
-
quorum_gte?: InputMaybe<Scalars[
|
|
691
|
-
quorum_in?: InputMaybe<Array<Scalars[
|
|
692
|
-
quorum_lt?: InputMaybe<Scalars[
|
|
693
|
-
quorum_lte?: InputMaybe<Scalars[
|
|
694
|
-
quorum_not?: InputMaybe<Scalars[
|
|
695
|
-
quorum_not_in?: InputMaybe<Array<Scalars[
|
|
617
|
+
pollResult_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
618
|
+
pollResult_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
619
|
+
pollResult_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
620
|
+
pollResult_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
621
|
+
pollResult_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
622
|
+
pollResult_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
623
|
+
pollResult_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
624
|
+
pollResult_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
625
|
+
pollResult_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
626
|
+
pollResult_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
627
|
+
pollResult_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
628
|
+
pollResult_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
629
|
+
pollResult_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
630
|
+
pollResult_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
631
|
+
pollResult_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
632
|
+
pollResult_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
633
|
+
pollResult_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
634
|
+
pollResult_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
635
|
+
pollResult_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
636
|
+
proposalId?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
637
|
+
proposalId_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
638
|
+
proposalId_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
639
|
+
proposalId_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
640
|
+
proposalId_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
641
|
+
proposalId_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
642
|
+
proposalId_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
643
|
+
proposalId_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
644
|
+
proposer?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
645
|
+
proposer_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
646
|
+
proposer_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
647
|
+
proposer_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
648
|
+
proposer_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
649
|
+
proposer_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
650
|
+
proposer_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
651
|
+
proposer_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
652
|
+
proposer_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
653
|
+
proposer_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
654
|
+
queueEnd?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
655
|
+
queueEnd_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
656
|
+
queueEnd_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
657
|
+
queueEnd_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
658
|
+
queueEnd_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
659
|
+
queueEnd_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
660
|
+
queueEnd_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
661
|
+
queueEnd_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
662
|
+
queueStart?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
663
|
+
queueStartBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
664
|
+
queueStartBlock_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
665
|
+
queueStartBlock_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
666
|
+
queueStartBlock_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
667
|
+
queueStartBlock_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
668
|
+
queueStartBlock_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
669
|
+
queueStartBlock_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
670
|
+
queueStartBlock_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
671
|
+
queueStart_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
672
|
+
queueStart_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
673
|
+
queueStart_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
674
|
+
queueStart_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
675
|
+
queueStart_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
676
|
+
queueStart_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
677
|
+
queueStart_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
678
|
+
queueTxHash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
679
|
+
queueTxHash_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
680
|
+
queueTxHash_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
681
|
+
queueTxHash_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
682
|
+
queueTxHash_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
683
|
+
queueTxHash_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
684
|
+
queueTxHash_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
685
|
+
queueTxHash_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
686
|
+
queueTxHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
687
|
+
queueTxHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
688
|
+
quorum?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
689
|
+
quorum_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
690
|
+
quorum_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
691
|
+
quorum_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
692
|
+
quorum_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
693
|
+
quorum_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
694
|
+
quorum_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
695
|
+
quorum_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
696
696
|
status?: InputMaybe<ProposalStatus>;
|
|
697
697
|
status_in?: InputMaybe<Array<ProposalStatus>>;
|
|
698
698
|
status_not?: InputMaybe<ProposalStatus>;
|
|
699
699
|
status_not_in?: InputMaybe<Array<ProposalStatus>>;
|
|
700
|
-
succeededAt?: InputMaybe<Scalars[
|
|
701
|
-
succeededAtBlock?: InputMaybe<Scalars[
|
|
702
|
-
succeededAtBlock_gt?: InputMaybe<Scalars[
|
|
703
|
-
succeededAtBlock_gte?: InputMaybe<Scalars[
|
|
704
|
-
succeededAtBlock_in?: InputMaybe<Array<Scalars[
|
|
705
|
-
succeededAtBlock_lt?: InputMaybe<Scalars[
|
|
706
|
-
succeededAtBlock_lte?: InputMaybe<Scalars[
|
|
707
|
-
succeededAtBlock_not?: InputMaybe<Scalars[
|
|
708
|
-
succeededAtBlock_not_in?: InputMaybe<Array<Scalars[
|
|
709
|
-
succeededAt_gt?: InputMaybe<Scalars[
|
|
710
|
-
succeededAt_gte?: InputMaybe<Scalars[
|
|
711
|
-
succeededAt_in?: InputMaybe<Array<Scalars[
|
|
712
|
-
succeededAt_lt?: InputMaybe<Scalars[
|
|
713
|
-
succeededAt_lte?: InputMaybe<Scalars[
|
|
714
|
-
succeededAt_not?: InputMaybe<Scalars[
|
|
715
|
-
succeededAt_not_in?: InputMaybe<Array<Scalars[
|
|
716
|
-
succeededVoteTxHash?: InputMaybe<Scalars[
|
|
717
|
-
succeededVoteTxHash_contains?: InputMaybe<Scalars[
|
|
718
|
-
succeededVoteTxHash_gt?: InputMaybe<Scalars[
|
|
719
|
-
succeededVoteTxHash_gte?: InputMaybe<Scalars[
|
|
720
|
-
succeededVoteTxHash_in?: InputMaybe<Array<Scalars[
|
|
721
|
-
succeededVoteTxHash_lt?: InputMaybe<Scalars[
|
|
722
|
-
succeededVoteTxHash_lte?: InputMaybe<Scalars[
|
|
723
|
-
succeededVoteTxHash_not?: InputMaybe<Scalars[
|
|
724
|
-
succeededVoteTxHash_not_contains?: InputMaybe<Scalars[
|
|
725
|
-
succeededVoteTxHash_not_in?: InputMaybe<Array<Scalars[
|
|
700
|
+
succeededAt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
701
|
+
succeededAtBlock?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
702
|
+
succeededAtBlock_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
703
|
+
succeededAtBlock_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
704
|
+
succeededAtBlock_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
705
|
+
succeededAtBlock_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
706
|
+
succeededAtBlock_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
707
|
+
succeededAtBlock_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
708
|
+
succeededAtBlock_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
709
|
+
succeededAt_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
710
|
+
succeededAt_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
711
|
+
succeededAt_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
712
|
+
succeededAt_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
713
|
+
succeededAt_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
714
|
+
succeededAt_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
715
|
+
succeededAt_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
716
|
+
succeededVoteTxHash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
717
|
+
succeededVoteTxHash_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
718
|
+
succeededVoteTxHash_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
719
|
+
succeededVoteTxHash_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
720
|
+
succeededVoteTxHash_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
721
|
+
succeededVoteTxHash_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
722
|
+
succeededVoteTxHash_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
723
|
+
succeededVoteTxHash_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
724
|
+
succeededVoteTxHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
725
|
+
succeededVoteTxHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
726
726
|
timelock_?: InputMaybe<Timelock_Filter>;
|
|
727
|
-
title?: InputMaybe<Scalars[
|
|
728
|
-
title_contains?: InputMaybe<Scalars[
|
|
729
|
-
title_contains_nocase?: InputMaybe<Scalars[
|
|
730
|
-
title_ends_with?: InputMaybe<Scalars[
|
|
731
|
-
title_ends_with_nocase?: InputMaybe<Scalars[
|
|
732
|
-
title_gt?: InputMaybe<Scalars[
|
|
733
|
-
title_gte?: InputMaybe<Scalars[
|
|
734
|
-
title_in?: InputMaybe<Array<Scalars[
|
|
735
|
-
title_lt?: InputMaybe<Scalars[
|
|
736
|
-
title_lte?: InputMaybe<Scalars[
|
|
737
|
-
title_not?: InputMaybe<Scalars[
|
|
738
|
-
title_not_contains?: InputMaybe<Scalars[
|
|
739
|
-
title_not_contains_nocase?: InputMaybe<Scalars[
|
|
740
|
-
title_not_ends_with?: InputMaybe<Scalars[
|
|
741
|
-
title_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
742
|
-
title_not_in?: InputMaybe<Array<Scalars[
|
|
743
|
-
title_not_starts_with?: InputMaybe<Scalars[
|
|
744
|
-
title_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
745
|
-
title_starts_with?: InputMaybe<Scalars[
|
|
746
|
-
title_starts_with_nocase?: InputMaybe<Scalars[
|
|
747
|
-
topics?: InputMaybe<Array<Scalars[
|
|
748
|
-
topics_contains?: InputMaybe<Array<Scalars[
|
|
749
|
-
topics_contains_nocase?: InputMaybe<Array<Scalars[
|
|
750
|
-
topics_not?: InputMaybe<Array<Scalars[
|
|
751
|
-
topics_not_contains?: InputMaybe<Array<Scalars[
|
|
752
|
-
topics_not_contains_nocase?: InputMaybe<Array<Scalars[
|
|
753
|
-
unparsedDescription?: InputMaybe<Scalars[
|
|
754
|
-
unparsedDescription_contains?: InputMaybe<Scalars[
|
|
755
|
-
unparsedDescription_contains_nocase?: InputMaybe<Scalars[
|
|
756
|
-
unparsedDescription_ends_with?: InputMaybe<Scalars[
|
|
757
|
-
unparsedDescription_ends_with_nocase?: InputMaybe<Scalars[
|
|
758
|
-
unparsedDescription_gt?: InputMaybe<Scalars[
|
|
759
|
-
unparsedDescription_gte?: InputMaybe<Scalars[
|
|
760
|
-
unparsedDescription_in?: InputMaybe<Array<Scalars[
|
|
761
|
-
unparsedDescription_lt?: InputMaybe<Scalars[
|
|
762
|
-
unparsedDescription_lte?: InputMaybe<Scalars[
|
|
763
|
-
unparsedDescription_not?: InputMaybe<Scalars[
|
|
764
|
-
unparsedDescription_not_contains?: InputMaybe<Scalars[
|
|
765
|
-
unparsedDescription_not_contains_nocase?: InputMaybe<Scalars[
|
|
766
|
-
unparsedDescription_not_ends_with?: InputMaybe<Scalars[
|
|
767
|
-
unparsedDescription_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
768
|
-
unparsedDescription_not_in?: InputMaybe<Array<Scalars[
|
|
769
|
-
unparsedDescription_not_starts_with?: InputMaybe<Scalars[
|
|
770
|
-
unparsedDescription_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
771
|
-
unparsedDescription_starts_with?: InputMaybe<Scalars[
|
|
772
|
-
unparsedDescription_starts_with_nocase?: InputMaybe<Scalars[
|
|
773
|
-
unverifiedForumLink?: InputMaybe<Scalars[
|
|
774
|
-
unverifiedForumLink_contains?: InputMaybe<Scalars[
|
|
775
|
-
unverifiedForumLink_contains_nocase?: InputMaybe<Scalars[
|
|
776
|
-
unverifiedForumLink_ends_with?: InputMaybe<Scalars[
|
|
777
|
-
unverifiedForumLink_ends_with_nocase?: InputMaybe<Scalars[
|
|
778
|
-
unverifiedForumLink_gt?: InputMaybe<Scalars[
|
|
779
|
-
unverifiedForumLink_gte?: InputMaybe<Scalars[
|
|
780
|
-
unverifiedForumLink_in?: InputMaybe<Array<Scalars[
|
|
781
|
-
unverifiedForumLink_lt?: InputMaybe<Scalars[
|
|
782
|
-
unverifiedForumLink_lte?: InputMaybe<Scalars[
|
|
783
|
-
unverifiedForumLink_not?: InputMaybe<Scalars[
|
|
784
|
-
unverifiedForumLink_not_contains?: InputMaybe<Scalars[
|
|
785
|
-
unverifiedForumLink_not_contains_nocase?: InputMaybe<Scalars[
|
|
786
|
-
unverifiedForumLink_not_ends_with?: InputMaybe<Scalars[
|
|
787
|
-
unverifiedForumLink_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
788
|
-
unverifiedForumLink_not_in?: InputMaybe<Array<Scalars[
|
|
789
|
-
unverifiedForumLink_not_starts_with?: InputMaybe<Scalars[
|
|
790
|
-
unverifiedForumLink_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
791
|
-
unverifiedForumLink_starts_with?: InputMaybe<Scalars[
|
|
792
|
-
unverifiedForumLink_starts_with_nocase?: InputMaybe<Scalars[
|
|
793
|
-
voteEndAt?: InputMaybe<Scalars[
|
|
794
|
-
voteEndAt_gt?: InputMaybe<Scalars[
|
|
795
|
-
voteEndAt_gte?: InputMaybe<Scalars[
|
|
796
|
-
voteEndAt_in?: InputMaybe<Array<Scalars[
|
|
797
|
-
voteEndAt_lt?: InputMaybe<Scalars[
|
|
798
|
-
voteEndAt_lte?: InputMaybe<Scalars[
|
|
799
|
-
voteEndAt_not?: InputMaybe<Scalars[
|
|
800
|
-
voteEndAt_not_in?: InputMaybe<Array<Scalars[
|
|
801
|
-
voteStartAt?: InputMaybe<Scalars[
|
|
802
|
-
voteStartAt_gt?: InputMaybe<Scalars[
|
|
803
|
-
voteStartAt_gte?: InputMaybe<Scalars[
|
|
804
|
-
voteStartAt_in?: InputMaybe<Array<Scalars[
|
|
805
|
-
voteStartAt_lt?: InputMaybe<Scalars[
|
|
806
|
-
voteStartAt_lte?: InputMaybe<Scalars[
|
|
807
|
-
voteStartAt_not?: InputMaybe<Scalars[
|
|
808
|
-
voteStartAt_not_in?: InputMaybe<Array<Scalars[
|
|
727
|
+
title?: InputMaybe<Scalars["String"]["input"]>;
|
|
728
|
+
title_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
729
|
+
title_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
730
|
+
title_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
731
|
+
title_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
732
|
+
title_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
733
|
+
title_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
734
|
+
title_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
735
|
+
title_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
736
|
+
title_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
737
|
+
title_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
738
|
+
title_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
739
|
+
title_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
740
|
+
title_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
741
|
+
title_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
742
|
+
title_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
743
|
+
title_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
744
|
+
title_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
745
|
+
title_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
746
|
+
title_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
747
|
+
topics?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
748
|
+
topics_contains?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
749
|
+
topics_contains_nocase?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
750
|
+
topics_not?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
751
|
+
topics_not_contains?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
752
|
+
topics_not_contains_nocase?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
753
|
+
unparsedDescription?: InputMaybe<Scalars["String"]["input"]>;
|
|
754
|
+
unparsedDescription_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
755
|
+
unparsedDescription_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
756
|
+
unparsedDescription_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
757
|
+
unparsedDescription_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
758
|
+
unparsedDescription_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
759
|
+
unparsedDescription_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
760
|
+
unparsedDescription_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
761
|
+
unparsedDescription_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
762
|
+
unparsedDescription_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
763
|
+
unparsedDescription_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
764
|
+
unparsedDescription_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
765
|
+
unparsedDescription_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
766
|
+
unparsedDescription_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
767
|
+
unparsedDescription_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
768
|
+
unparsedDescription_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
769
|
+
unparsedDescription_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
770
|
+
unparsedDescription_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
771
|
+
unparsedDescription_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
772
|
+
unparsedDescription_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
773
|
+
unverifiedForumLink?: InputMaybe<Scalars["String"]["input"]>;
|
|
774
|
+
unverifiedForumLink_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
775
|
+
unverifiedForumLink_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
776
|
+
unverifiedForumLink_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
777
|
+
unverifiedForumLink_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
778
|
+
unverifiedForumLink_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
779
|
+
unverifiedForumLink_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
780
|
+
unverifiedForumLink_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
781
|
+
unverifiedForumLink_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
782
|
+
unverifiedForumLink_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
783
|
+
unverifiedForumLink_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
784
|
+
unverifiedForumLink_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
785
|
+
unverifiedForumLink_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
786
|
+
unverifiedForumLink_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
787
|
+
unverifiedForumLink_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
788
|
+
unverifiedForumLink_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
789
|
+
unverifiedForumLink_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
790
|
+
unverifiedForumLink_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
791
|
+
unverifiedForumLink_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
792
|
+
unverifiedForumLink_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
793
|
+
voteEndAt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
794
|
+
voteEndAt_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
795
|
+
voteEndAt_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
796
|
+
voteEndAt_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
797
|
+
voteEndAt_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
798
|
+
voteEndAt_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
799
|
+
voteEndAt_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
800
|
+
voteEndAt_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
801
|
+
voteStartAt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
802
|
+
voteStartAt_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
803
|
+
voteStartAt_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
804
|
+
voteStartAt_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
805
|
+
voteStartAt_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
806
|
+
voteStartAt_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
807
|
+
voteStartAt_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
808
|
+
voteStartAt_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
809
809
|
votes_?: InputMaybe<Vote_Filter>;
|
|
810
810
|
};
|
|
811
811
|
declare enum Proposal_OrderBy {
|
|
@@ -860,7 +860,7 @@ declare enum Proposal_OrderBy {
|
|
|
860
860
|
Votes = "votes"
|
|
861
861
|
}
|
|
862
862
|
type Query = {
|
|
863
|
-
__typename?:
|
|
863
|
+
__typename?: "Query";
|
|
864
864
|
/** Access to subgraph metadata */
|
|
865
865
|
_meta?: Maybe<_Meta_>;
|
|
866
866
|
executableCall?: Maybe<ExecutableCall>;
|
|
@@ -880,123 +880,123 @@ type Query_MetaArgs = {
|
|
|
880
880
|
};
|
|
881
881
|
type QueryExecutableCallArgs = {
|
|
882
882
|
block?: InputMaybe<Block_Height>;
|
|
883
|
-
id: Scalars[
|
|
883
|
+
id: Scalars["ID"]["input"];
|
|
884
884
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
885
885
|
};
|
|
886
886
|
type QueryExecutableCallsArgs = {
|
|
887
887
|
block?: InputMaybe<Block_Height>;
|
|
888
|
-
first?: InputMaybe<Scalars[
|
|
888
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
889
889
|
orderBy?: InputMaybe<ExecutableCall_OrderBy>;
|
|
890
890
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
891
|
-
skip?: InputMaybe<Scalars[
|
|
891
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
892
892
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
893
893
|
where?: InputMaybe<ExecutableCall_Filter>;
|
|
894
894
|
};
|
|
895
895
|
type QueryPollResultArgs = {
|
|
896
896
|
block?: InputMaybe<Block_Height>;
|
|
897
|
-
id: Scalars[
|
|
897
|
+
id: Scalars["ID"]["input"];
|
|
898
898
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
899
899
|
};
|
|
900
900
|
type QueryPollResultsArgs = {
|
|
901
901
|
block?: InputMaybe<Block_Height>;
|
|
902
|
-
first?: InputMaybe<Scalars[
|
|
902
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
903
903
|
orderBy?: InputMaybe<PollResult_OrderBy>;
|
|
904
904
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
905
|
-
skip?: InputMaybe<Scalars[
|
|
905
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
906
906
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
907
907
|
where?: InputMaybe<PollResult_Filter>;
|
|
908
908
|
};
|
|
909
909
|
type QueryProposalArgs = {
|
|
910
910
|
block?: InputMaybe<Block_Height>;
|
|
911
|
-
id: Scalars[
|
|
911
|
+
id: Scalars["ID"]["input"];
|
|
912
912
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
913
913
|
};
|
|
914
914
|
type QueryProposalSearchArgs = {
|
|
915
915
|
block?: InputMaybe<Block_Height>;
|
|
916
|
-
first?: InputMaybe<Scalars[
|
|
917
|
-
skip?: InputMaybe<Scalars[
|
|
916
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
917
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
918
918
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
919
|
-
text: Scalars[
|
|
919
|
+
text: Scalars["String"]["input"];
|
|
920
920
|
where?: InputMaybe<Proposal_Filter>;
|
|
921
921
|
};
|
|
922
922
|
type QueryProposalsArgs = {
|
|
923
923
|
block?: InputMaybe<Block_Height>;
|
|
924
|
-
first?: InputMaybe<Scalars[
|
|
924
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
925
925
|
orderBy?: InputMaybe<Proposal_OrderBy>;
|
|
926
926
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
927
|
-
skip?: InputMaybe<Scalars[
|
|
927
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
928
928
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
929
929
|
where?: InputMaybe<Proposal_Filter>;
|
|
930
930
|
};
|
|
931
931
|
type QueryTimelockArgs = {
|
|
932
932
|
block?: InputMaybe<Block_Height>;
|
|
933
|
-
id: Scalars[
|
|
933
|
+
id: Scalars["ID"]["input"];
|
|
934
934
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
935
935
|
};
|
|
936
936
|
type QueryTimelocksArgs = {
|
|
937
937
|
block?: InputMaybe<Block_Height>;
|
|
938
|
-
first?: InputMaybe<Scalars[
|
|
938
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
939
939
|
orderBy?: InputMaybe<Timelock_OrderBy>;
|
|
940
940
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
941
|
-
skip?: InputMaybe<Scalars[
|
|
941
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
942
942
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
943
943
|
where?: InputMaybe<Timelock_Filter>;
|
|
944
944
|
};
|
|
945
945
|
type QueryVoteArgs = {
|
|
946
946
|
block?: InputMaybe<Block_Height>;
|
|
947
|
-
id: Scalars[
|
|
947
|
+
id: Scalars["ID"]["input"];
|
|
948
948
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
949
949
|
};
|
|
950
950
|
type QueryVotesArgs = {
|
|
951
951
|
block?: InputMaybe<Block_Height>;
|
|
952
|
-
first?: InputMaybe<Scalars[
|
|
952
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
953
953
|
orderBy?: InputMaybe<Vote_OrderBy>;
|
|
954
954
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
955
|
-
skip?: InputMaybe<Scalars[
|
|
955
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
956
956
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
957
957
|
where?: InputMaybe<Vote_Filter>;
|
|
958
958
|
};
|
|
959
959
|
type Timelock = {
|
|
960
|
-
__typename?:
|
|
961
|
-
id: Scalars[
|
|
960
|
+
__typename?: "Timelock";
|
|
961
|
+
id: Scalars["Bytes"]["output"];
|
|
962
962
|
proposal: Proposal;
|
|
963
963
|
};
|
|
964
964
|
type Timelock_Filter = {
|
|
965
965
|
/** Filter for the block changed event. */
|
|
966
966
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
967
967
|
and?: InputMaybe<Array<InputMaybe<Timelock_Filter>>>;
|
|
968
|
-
id?: InputMaybe<Scalars[
|
|
969
|
-
id_contains?: InputMaybe<Scalars[
|
|
970
|
-
id_gt?: InputMaybe<Scalars[
|
|
971
|
-
id_gte?: InputMaybe<Scalars[
|
|
972
|
-
id_in?: InputMaybe<Array<Scalars[
|
|
973
|
-
id_lt?: InputMaybe<Scalars[
|
|
974
|
-
id_lte?: InputMaybe<Scalars[
|
|
975
|
-
id_not?: InputMaybe<Scalars[
|
|
976
|
-
id_not_contains?: InputMaybe<Scalars[
|
|
977
|
-
id_not_in?: InputMaybe<Array<Scalars[
|
|
968
|
+
id?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
969
|
+
id_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
970
|
+
id_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
971
|
+
id_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
972
|
+
id_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
973
|
+
id_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
974
|
+
id_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
975
|
+
id_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
976
|
+
id_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
977
|
+
id_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
978
978
|
or?: InputMaybe<Array<InputMaybe<Timelock_Filter>>>;
|
|
979
|
-
proposal?: InputMaybe<Scalars[
|
|
979
|
+
proposal?: InputMaybe<Scalars["String"]["input"]>;
|
|
980
980
|
proposal_?: InputMaybe<Proposal_Filter>;
|
|
981
|
-
proposal_contains?: InputMaybe<Scalars[
|
|
982
|
-
proposal_contains_nocase?: InputMaybe<Scalars[
|
|
983
|
-
proposal_ends_with?: InputMaybe<Scalars[
|
|
984
|
-
proposal_ends_with_nocase?: InputMaybe<Scalars[
|
|
985
|
-
proposal_gt?: InputMaybe<Scalars[
|
|
986
|
-
proposal_gte?: InputMaybe<Scalars[
|
|
987
|
-
proposal_in?: InputMaybe<Array<Scalars[
|
|
988
|
-
proposal_lt?: InputMaybe<Scalars[
|
|
989
|
-
proposal_lte?: InputMaybe<Scalars[
|
|
990
|
-
proposal_not?: InputMaybe<Scalars[
|
|
991
|
-
proposal_not_contains?: InputMaybe<Scalars[
|
|
992
|
-
proposal_not_contains_nocase?: InputMaybe<Scalars[
|
|
993
|
-
proposal_not_ends_with?: InputMaybe<Scalars[
|
|
994
|
-
proposal_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
995
|
-
proposal_not_in?: InputMaybe<Array<Scalars[
|
|
996
|
-
proposal_not_starts_with?: InputMaybe<Scalars[
|
|
997
|
-
proposal_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
998
|
-
proposal_starts_with?: InputMaybe<Scalars[
|
|
999
|
-
proposal_starts_with_nocase?: InputMaybe<Scalars[
|
|
981
|
+
proposal_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
982
|
+
proposal_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
983
|
+
proposal_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
984
|
+
proposal_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
985
|
+
proposal_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
986
|
+
proposal_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
987
|
+
proposal_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
988
|
+
proposal_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
989
|
+
proposal_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
990
|
+
proposal_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
991
|
+
proposal_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
992
|
+
proposal_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
993
|
+
proposal_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
994
|
+
proposal_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
995
|
+
proposal_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
996
|
+
proposal_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
997
|
+
proposal_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
998
|
+
proposal_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
999
|
+
proposal_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1000
1000
|
};
|
|
1001
1001
|
declare enum Timelock_OrderBy {
|
|
1002
1002
|
Id = "id",
|
|
@@ -1033,15 +1033,15 @@ declare enum Timelock_OrderBy {
|
|
|
1033
1033
|
ProposalVoteStartAt = "proposal__voteStartAt"
|
|
1034
1034
|
}
|
|
1035
1035
|
type Vote = {
|
|
1036
|
-
__typename?:
|
|
1037
|
-
id: Scalars[
|
|
1038
|
-
params?: Maybe<Scalars[
|
|
1036
|
+
__typename?: "Vote";
|
|
1037
|
+
id: Scalars["Int8"]["output"];
|
|
1038
|
+
params?: Maybe<Scalars["Bytes"]["output"]>;
|
|
1039
1039
|
proposalId: Proposal;
|
|
1040
|
-
reason: Scalars[
|
|
1040
|
+
reason: Scalars["String"]["output"];
|
|
1041
1041
|
support: VoteSupportType;
|
|
1042
|
-
timestamp: Scalars[
|
|
1043
|
-
voter: Scalars[
|
|
1044
|
-
weight: Scalars[
|
|
1042
|
+
timestamp: Scalars["BigInt"]["output"];
|
|
1043
|
+
voter: Scalars["Bytes"]["output"];
|
|
1044
|
+
weight: Scalars["BigInt"]["output"];
|
|
1045
1045
|
};
|
|
1046
1046
|
declare enum VoteSupportType {
|
|
1047
1047
|
Abstain = "ABSTAIN",
|
|
@@ -1052,96 +1052,96 @@ type Vote_Filter = {
|
|
|
1052
1052
|
/** Filter for the block changed event. */
|
|
1053
1053
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1054
1054
|
and?: InputMaybe<Array<InputMaybe<Vote_Filter>>>;
|
|
1055
|
-
id?: InputMaybe<Scalars[
|
|
1056
|
-
id_gt?: InputMaybe<Scalars[
|
|
1057
|
-
id_gte?: InputMaybe<Scalars[
|
|
1058
|
-
id_in?: InputMaybe<Array<Scalars[
|
|
1059
|
-
id_lt?: InputMaybe<Scalars[
|
|
1060
|
-
id_lte?: InputMaybe<Scalars[
|
|
1061
|
-
id_not?: InputMaybe<Scalars[
|
|
1062
|
-
id_not_in?: InputMaybe<Array<Scalars[
|
|
1055
|
+
id?: InputMaybe<Scalars["Int8"]["input"]>;
|
|
1056
|
+
id_gt?: InputMaybe<Scalars["Int8"]["input"]>;
|
|
1057
|
+
id_gte?: InputMaybe<Scalars["Int8"]["input"]>;
|
|
1058
|
+
id_in?: InputMaybe<Array<Scalars["Int8"]["input"]>>;
|
|
1059
|
+
id_lt?: InputMaybe<Scalars["Int8"]["input"]>;
|
|
1060
|
+
id_lte?: InputMaybe<Scalars["Int8"]["input"]>;
|
|
1061
|
+
id_not?: InputMaybe<Scalars["Int8"]["input"]>;
|
|
1062
|
+
id_not_in?: InputMaybe<Array<Scalars["Int8"]["input"]>>;
|
|
1063
1063
|
or?: InputMaybe<Array<InputMaybe<Vote_Filter>>>;
|
|
1064
|
-
params?: InputMaybe<Scalars[
|
|
1065
|
-
params_contains?: InputMaybe<Scalars[
|
|
1066
|
-
params_gt?: InputMaybe<Scalars[
|
|
1067
|
-
params_gte?: InputMaybe<Scalars[
|
|
1068
|
-
params_in?: InputMaybe<Array<Scalars[
|
|
1069
|
-
params_lt?: InputMaybe<Scalars[
|
|
1070
|
-
params_lte?: InputMaybe<Scalars[
|
|
1071
|
-
params_not?: InputMaybe<Scalars[
|
|
1072
|
-
params_not_contains?: InputMaybe<Scalars[
|
|
1073
|
-
params_not_in?: InputMaybe<Array<Scalars[
|
|
1074
|
-
proposalId?: InputMaybe<Scalars[
|
|
1064
|
+
params?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1065
|
+
params_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1066
|
+
params_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1067
|
+
params_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1068
|
+
params_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1069
|
+
params_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1070
|
+
params_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1071
|
+
params_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1072
|
+
params_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1073
|
+
params_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1074
|
+
proposalId?: InputMaybe<Scalars["String"]["input"]>;
|
|
1075
1075
|
proposalId_?: InputMaybe<Proposal_Filter>;
|
|
1076
|
-
proposalId_contains?: InputMaybe<Scalars[
|
|
1077
|
-
proposalId_contains_nocase?: InputMaybe<Scalars[
|
|
1078
|
-
proposalId_ends_with?: InputMaybe<Scalars[
|
|
1079
|
-
proposalId_ends_with_nocase?: InputMaybe<Scalars[
|
|
1080
|
-
proposalId_gt?: InputMaybe<Scalars[
|
|
1081
|
-
proposalId_gte?: InputMaybe<Scalars[
|
|
1082
|
-
proposalId_in?: InputMaybe<Array<Scalars[
|
|
1083
|
-
proposalId_lt?: InputMaybe<Scalars[
|
|
1084
|
-
proposalId_lte?: InputMaybe<Scalars[
|
|
1085
|
-
proposalId_not?: InputMaybe<Scalars[
|
|
1086
|
-
proposalId_not_contains?: InputMaybe<Scalars[
|
|
1087
|
-
proposalId_not_contains_nocase?: InputMaybe<Scalars[
|
|
1088
|
-
proposalId_not_ends_with?: InputMaybe<Scalars[
|
|
1089
|
-
proposalId_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
1090
|
-
proposalId_not_in?: InputMaybe<Array<Scalars[
|
|
1091
|
-
proposalId_not_starts_with?: InputMaybe<Scalars[
|
|
1092
|
-
proposalId_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
1093
|
-
proposalId_starts_with?: InputMaybe<Scalars[
|
|
1094
|
-
proposalId_starts_with_nocase?: InputMaybe<Scalars[
|
|
1095
|
-
reason?: InputMaybe<Scalars[
|
|
1096
|
-
reason_contains?: InputMaybe<Scalars[
|
|
1097
|
-
reason_contains_nocase?: InputMaybe<Scalars[
|
|
1098
|
-
reason_ends_with?: InputMaybe<Scalars[
|
|
1099
|
-
reason_ends_with_nocase?: InputMaybe<Scalars[
|
|
1100
|
-
reason_gt?: InputMaybe<Scalars[
|
|
1101
|
-
reason_gte?: InputMaybe<Scalars[
|
|
1102
|
-
reason_in?: InputMaybe<Array<Scalars[
|
|
1103
|
-
reason_lt?: InputMaybe<Scalars[
|
|
1104
|
-
reason_lte?: InputMaybe<Scalars[
|
|
1105
|
-
reason_not?: InputMaybe<Scalars[
|
|
1106
|
-
reason_not_contains?: InputMaybe<Scalars[
|
|
1107
|
-
reason_not_contains_nocase?: InputMaybe<Scalars[
|
|
1108
|
-
reason_not_ends_with?: InputMaybe<Scalars[
|
|
1109
|
-
reason_not_ends_with_nocase?: InputMaybe<Scalars[
|
|
1110
|
-
reason_not_in?: InputMaybe<Array<Scalars[
|
|
1111
|
-
reason_not_starts_with?: InputMaybe<Scalars[
|
|
1112
|
-
reason_not_starts_with_nocase?: InputMaybe<Scalars[
|
|
1113
|
-
reason_starts_with?: InputMaybe<Scalars[
|
|
1114
|
-
reason_starts_with_nocase?: InputMaybe<Scalars[
|
|
1076
|
+
proposalId_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1077
|
+
proposalId_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1078
|
+
proposalId_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1079
|
+
proposalId_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1080
|
+
proposalId_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1081
|
+
proposalId_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1082
|
+
proposalId_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1083
|
+
proposalId_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1084
|
+
proposalId_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1085
|
+
proposalId_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
1086
|
+
proposalId_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1087
|
+
proposalId_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1088
|
+
proposalId_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1089
|
+
proposalId_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1090
|
+
proposalId_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1091
|
+
proposalId_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1092
|
+
proposalId_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1093
|
+
proposalId_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1094
|
+
proposalId_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1095
|
+
reason?: InputMaybe<Scalars["String"]["input"]>;
|
|
1096
|
+
reason_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1097
|
+
reason_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1098
|
+
reason_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1099
|
+
reason_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1100
|
+
reason_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1101
|
+
reason_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1102
|
+
reason_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1103
|
+
reason_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1104
|
+
reason_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1105
|
+
reason_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
1106
|
+
reason_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1107
|
+
reason_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1108
|
+
reason_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1109
|
+
reason_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1110
|
+
reason_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1111
|
+
reason_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1112
|
+
reason_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1113
|
+
reason_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1114
|
+
reason_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1115
1115
|
support?: InputMaybe<VoteSupportType>;
|
|
1116
1116
|
support_in?: InputMaybe<Array<VoteSupportType>>;
|
|
1117
1117
|
support_not?: InputMaybe<VoteSupportType>;
|
|
1118
1118
|
support_not_in?: InputMaybe<Array<VoteSupportType>>;
|
|
1119
|
-
timestamp?: InputMaybe<Scalars[
|
|
1120
|
-
timestamp_gt?: InputMaybe<Scalars[
|
|
1121
|
-
timestamp_gte?: InputMaybe<Scalars[
|
|
1122
|
-
timestamp_in?: InputMaybe<Array<Scalars[
|
|
1123
|
-
timestamp_lt?: InputMaybe<Scalars[
|
|
1124
|
-
timestamp_lte?: InputMaybe<Scalars[
|
|
1125
|
-
timestamp_not?: InputMaybe<Scalars[
|
|
1126
|
-
timestamp_not_in?: InputMaybe<Array<Scalars[
|
|
1127
|
-
voter?: InputMaybe<Scalars[
|
|
1128
|
-
voter_contains?: InputMaybe<Scalars[
|
|
1129
|
-
voter_gt?: InputMaybe<Scalars[
|
|
1130
|
-
voter_gte?: InputMaybe<Scalars[
|
|
1131
|
-
voter_in?: InputMaybe<Array<Scalars[
|
|
1132
|
-
voter_lt?: InputMaybe<Scalars[
|
|
1133
|
-
voter_lte?: InputMaybe<Scalars[
|
|
1134
|
-
voter_not?: InputMaybe<Scalars[
|
|
1135
|
-
voter_not_contains?: InputMaybe<Scalars[
|
|
1136
|
-
voter_not_in?: InputMaybe<Array<Scalars[
|
|
1137
|
-
weight?: InputMaybe<Scalars[
|
|
1138
|
-
weight_gt?: InputMaybe<Scalars[
|
|
1139
|
-
weight_gte?: InputMaybe<Scalars[
|
|
1140
|
-
weight_in?: InputMaybe<Array<Scalars[
|
|
1141
|
-
weight_lt?: InputMaybe<Scalars[
|
|
1142
|
-
weight_lte?: InputMaybe<Scalars[
|
|
1143
|
-
weight_not?: InputMaybe<Scalars[
|
|
1144
|
-
weight_not_in?: InputMaybe<Array<Scalars[
|
|
1119
|
+
timestamp?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1120
|
+
timestamp_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1121
|
+
timestamp_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1122
|
+
timestamp_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1123
|
+
timestamp_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1124
|
+
timestamp_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1125
|
+
timestamp_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1126
|
+
timestamp_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1127
|
+
voter?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1128
|
+
voter_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1129
|
+
voter_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1130
|
+
voter_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1131
|
+
voter_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1132
|
+
voter_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1133
|
+
voter_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1134
|
+
voter_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1135
|
+
voter_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1136
|
+
voter_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1137
|
+
weight?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1138
|
+
weight_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1139
|
+
weight_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1140
|
+
weight_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1141
|
+
weight_lt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1142
|
+
weight_lte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1143
|
+
weight_not?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
1144
|
+
weight_not_in?: InputMaybe<Array<Scalars["BigInt"]["input"]>>;
|
|
1145
1145
|
};
|
|
1146
1146
|
declare enum Vote_OrderBy {
|
|
1147
1147
|
Id = "id",
|
|
@@ -1184,19 +1184,19 @@ declare enum Vote_OrderBy {
|
|
|
1184
1184
|
Weight = "weight"
|
|
1185
1185
|
}
|
|
1186
1186
|
type _Block_ = {
|
|
1187
|
-
__typename?:
|
|
1187
|
+
__typename?: "_Block_";
|
|
1188
1188
|
/** The hash of the block */
|
|
1189
|
-
hash?: Maybe<Scalars[
|
|
1189
|
+
hash?: Maybe<Scalars["Bytes"]["output"]>;
|
|
1190
1190
|
/** The block number */
|
|
1191
|
-
number: Scalars[
|
|
1191
|
+
number: Scalars["Int"]["output"];
|
|
1192
1192
|
/** The hash of the parent block */
|
|
1193
|
-
parentHash?: Maybe<Scalars[
|
|
1193
|
+
parentHash?: Maybe<Scalars["Bytes"]["output"]>;
|
|
1194
1194
|
/** Integer representation of the timestamp stored in blocks for the chain */
|
|
1195
|
-
timestamp?: Maybe<Scalars[
|
|
1195
|
+
timestamp?: Maybe<Scalars["Int"]["output"]>;
|
|
1196
1196
|
};
|
|
1197
1197
|
/** The type for the top-level _meta field */
|
|
1198
1198
|
type _Meta_ = {
|
|
1199
|
-
__typename?:
|
|
1199
|
+
__typename?: "_Meta_";
|
|
1200
1200
|
/**
|
|
1201
1201
|
* Information about a specific subgraph block. The hash of the block
|
|
1202
1202
|
* will be null if the _meta field has a block constraint that asks for
|
|
@@ -1205,9 +1205,9 @@ type _Meta_ = {
|
|
|
1205
1205
|
*/
|
|
1206
1206
|
block: _Block_;
|
|
1207
1207
|
/** The deployment ID */
|
|
1208
|
-
deployment: Scalars[
|
|
1208
|
+
deployment: Scalars["String"]["output"];
|
|
1209
1209
|
/** If `true`, the subgraph encountered indexing errors at some past block */
|
|
1210
|
-
hasIndexingErrors: Scalars[
|
|
1210
|
+
hasIndexingErrors: Scalars["Boolean"]["output"];
|
|
1211
1211
|
};
|
|
1212
1212
|
declare enum _SubgraphErrorPolicy_ {
|
|
1213
1213
|
/** Data will be returned even if the subgraph has indexing errors */
|
|
@@ -1216,7 +1216,7 @@ declare enum _SubgraphErrorPolicy_ {
|
|
|
1216
1216
|
Deny = "deny"
|
|
1217
1217
|
}
|
|
1218
1218
|
type ProposalSelectionFragment = {
|
|
1219
|
-
__typename?:
|
|
1219
|
+
__typename?: "Proposal";
|
|
1220
1220
|
id: string;
|
|
1221
1221
|
proposer: `0x${string}`;
|
|
1222
1222
|
proposalId: string;
|
|
@@ -1236,11 +1236,11 @@ type ProposalSelectionFragment = {
|
|
|
1236
1236
|
title?: string | null;
|
|
1237
1237
|
topics: Array<string>;
|
|
1238
1238
|
timelock?: {
|
|
1239
|
-
__typename?:
|
|
1239
|
+
__typename?: "Timelock";
|
|
1240
1240
|
id: `0x${string}`;
|
|
1241
1241
|
} | null;
|
|
1242
1242
|
pollResult: {
|
|
1243
|
-
__typename?:
|
|
1243
|
+
__typename?: "PollResult";
|
|
1244
1244
|
for: string;
|
|
1245
1245
|
forVotersCount: number;
|
|
1246
1246
|
forPercentage: string;
|
|
@@ -1256,14 +1256,14 @@ type ProposalSelectionFragment = {
|
|
|
1256
1256
|
};
|
|
1257
1257
|
};
|
|
1258
1258
|
type ExecutableCallSubsetFragment = {
|
|
1259
|
-
__typename?:
|
|
1259
|
+
__typename?: "ExecutableCall";
|
|
1260
1260
|
id: string;
|
|
1261
1261
|
target: `0x${string}`;
|
|
1262
1262
|
value: string;
|
|
1263
1263
|
calldata: `0x${string}`;
|
|
1264
1264
|
};
|
|
1265
1265
|
type ProposalVoteFragment = {
|
|
1266
|
-
__typename?:
|
|
1266
|
+
__typename?: "Vote";
|
|
1267
1267
|
id: string;
|
|
1268
1268
|
voter: `0x${string}`;
|
|
1269
1269
|
weight: string;
|
|
@@ -1272,7 +1272,7 @@ type ProposalVoteFragment = {
|
|
|
1272
1272
|
reason: string;
|
|
1273
1273
|
};
|
|
1274
1274
|
type ProposalWithVotesFragment = {
|
|
1275
|
-
__typename?:
|
|
1275
|
+
__typename?: "Proposal";
|
|
1276
1276
|
queueTxHash?: `0x${string}` | null;
|
|
1277
1277
|
createTxHash?: `0x${string}` | null;
|
|
1278
1278
|
cancelTxHash?: `0x${string}` | null;
|
|
@@ -1296,18 +1296,18 @@ type ProposalWithVotesFragment = {
|
|
|
1296
1296
|
title?: string | null;
|
|
1297
1297
|
topics: Array<string>;
|
|
1298
1298
|
executableCalls: Array<{
|
|
1299
|
-
__typename?:
|
|
1299
|
+
__typename?: "ExecutableCall";
|
|
1300
1300
|
id: string;
|
|
1301
1301
|
target: `0x${string}`;
|
|
1302
1302
|
value: string;
|
|
1303
1303
|
calldata: `0x${string}`;
|
|
1304
1304
|
}>;
|
|
1305
1305
|
timelock?: {
|
|
1306
|
-
__typename?:
|
|
1306
|
+
__typename?: "Timelock";
|
|
1307
1307
|
id: `0x${string}`;
|
|
1308
1308
|
} | null;
|
|
1309
1309
|
votes: Array<{
|
|
1310
|
-
__typename?:
|
|
1310
|
+
__typename?: "Vote";
|
|
1311
1311
|
id: string;
|
|
1312
1312
|
voter: `0x${string}`;
|
|
1313
1313
|
weight: string;
|
|
@@ -1316,7 +1316,7 @@ type ProposalWithVotesFragment = {
|
|
|
1316
1316
|
reason: string;
|
|
1317
1317
|
}>;
|
|
1318
1318
|
pollResult: {
|
|
1319
|
-
__typename?:
|
|
1319
|
+
__typename?: "PollResult";
|
|
1320
1320
|
for: string;
|
|
1321
1321
|
forVotersCount: number;
|
|
1322
1322
|
forPercentage: string;
|
|
@@ -1332,16 +1332,16 @@ type ProposalWithVotesFragment = {
|
|
|
1332
1332
|
};
|
|
1333
1333
|
};
|
|
1334
1334
|
type GetProposalVotesQueryVariables = Exact<{
|
|
1335
|
-
proposalId: Scalars[
|
|
1335
|
+
proposalId: Scalars["String"]["input"];
|
|
1336
1336
|
orderBy?: InputMaybe<Vote_OrderBy>;
|
|
1337
1337
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1338
|
-
limit: Scalars[
|
|
1339
|
-
offset?: InputMaybe<Scalars[
|
|
1338
|
+
limit: Scalars["Int"]["input"];
|
|
1339
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1340
1340
|
}>;
|
|
1341
1341
|
type GetProposalVotesQuery = {
|
|
1342
|
-
__typename?:
|
|
1342
|
+
__typename?: "Query";
|
|
1343
1343
|
votes: Array<{
|
|
1344
|
-
__typename?:
|
|
1344
|
+
__typename?: "Vote";
|
|
1345
1345
|
id: string;
|
|
1346
1346
|
voter: `0x${string}`;
|
|
1347
1347
|
weight: string;
|
|
@@ -1351,16 +1351,16 @@ type GetProposalVotesQuery = {
|
|
|
1351
1351
|
}>;
|
|
1352
1352
|
};
|
|
1353
1353
|
type GetProposalsQueryVariables = Exact<{
|
|
1354
|
-
offset?: InputMaybe<Scalars[
|
|
1355
|
-
limit?: InputMaybe<Scalars[
|
|
1354
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1355
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1356
1356
|
where?: InputMaybe<Proposal_Filter>;
|
|
1357
1357
|
orderBy?: InputMaybe<Proposal_OrderBy>;
|
|
1358
1358
|
orderDirection?: InputMaybe<OrderDirection>;
|
|
1359
1359
|
}>;
|
|
1360
1360
|
type GetProposalsQuery = {
|
|
1361
|
-
__typename?:
|
|
1361
|
+
__typename?: "Query";
|
|
1362
1362
|
proposals: Array<{
|
|
1363
|
-
__typename?:
|
|
1363
|
+
__typename?: "Proposal";
|
|
1364
1364
|
id: string;
|
|
1365
1365
|
proposer: `0x${string}`;
|
|
1366
1366
|
proposalId: string;
|
|
@@ -1380,11 +1380,11 @@ type GetProposalsQuery = {
|
|
|
1380
1380
|
title?: string | null;
|
|
1381
1381
|
topics: Array<string>;
|
|
1382
1382
|
timelock?: {
|
|
1383
|
-
__typename?:
|
|
1383
|
+
__typename?: "Timelock";
|
|
1384
1384
|
id: `0x${string}`;
|
|
1385
1385
|
} | null;
|
|
1386
1386
|
pollResult: {
|
|
1387
|
-
__typename?:
|
|
1387
|
+
__typename?: "PollResult";
|
|
1388
1388
|
for: string;
|
|
1389
1389
|
forVotersCount: number;
|
|
1390
1390
|
forPercentage: string;
|
|
@@ -1401,15 +1401,15 @@ type GetProposalsQuery = {
|
|
|
1401
1401
|
}>;
|
|
1402
1402
|
};
|
|
1403
1403
|
type SearchProposalsQueryVariables = Exact<{
|
|
1404
|
-
offset?: InputMaybe<Scalars[
|
|
1405
|
-
limit?: InputMaybe<Scalars[
|
|
1404
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1405
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1406
1406
|
where?: InputMaybe<Proposal_Filter>;
|
|
1407
|
-
text: Scalars[
|
|
1407
|
+
text: Scalars["String"]["input"];
|
|
1408
1408
|
}>;
|
|
1409
1409
|
type SearchProposalsQuery = {
|
|
1410
|
-
__typename?:
|
|
1410
|
+
__typename?: "Query";
|
|
1411
1411
|
proposals: Array<{
|
|
1412
|
-
__typename?:
|
|
1412
|
+
__typename?: "Proposal";
|
|
1413
1413
|
id: string;
|
|
1414
1414
|
proposer: `0x${string}`;
|
|
1415
1415
|
proposalId: string;
|
|
@@ -1429,11 +1429,11 @@ type SearchProposalsQuery = {
|
|
|
1429
1429
|
title?: string | null;
|
|
1430
1430
|
topics: Array<string>;
|
|
1431
1431
|
timelock?: {
|
|
1432
|
-
__typename?:
|
|
1432
|
+
__typename?: "Timelock";
|
|
1433
1433
|
id: `0x${string}`;
|
|
1434
1434
|
} | null;
|
|
1435
1435
|
pollResult: {
|
|
1436
|
-
__typename?:
|
|
1436
|
+
__typename?: "PollResult";
|
|
1437
1437
|
for: string;
|
|
1438
1438
|
forVotersCount: number;
|
|
1439
1439
|
forPercentage: string;
|
|
@@ -1450,12 +1450,12 @@ type SearchProposalsQuery = {
|
|
|
1450
1450
|
}>;
|
|
1451
1451
|
};
|
|
1452
1452
|
type GetProposalQueryVariables = Exact<{
|
|
1453
|
-
id: Scalars[
|
|
1453
|
+
id: Scalars["ID"]["input"];
|
|
1454
1454
|
}>;
|
|
1455
1455
|
type GetProposalQuery = {
|
|
1456
|
-
__typename?:
|
|
1456
|
+
__typename?: "Query";
|
|
1457
1457
|
proposal?: {
|
|
1458
|
-
__typename?:
|
|
1458
|
+
__typename?: "Proposal";
|
|
1459
1459
|
queueTxHash?: `0x${string}` | null;
|
|
1460
1460
|
createTxHash?: `0x${string}` | null;
|
|
1461
1461
|
cancelTxHash?: `0x${string}` | null;
|
|
@@ -1479,18 +1479,18 @@ type GetProposalQuery = {
|
|
|
1479
1479
|
title?: string | null;
|
|
1480
1480
|
topics: Array<string>;
|
|
1481
1481
|
executableCalls: Array<{
|
|
1482
|
-
__typename?:
|
|
1482
|
+
__typename?: "ExecutableCall";
|
|
1483
1483
|
id: string;
|
|
1484
1484
|
target: `0x${string}`;
|
|
1485
1485
|
value: string;
|
|
1486
1486
|
calldata: `0x${string}`;
|
|
1487
1487
|
}>;
|
|
1488
1488
|
timelock?: {
|
|
1489
|
-
__typename?:
|
|
1489
|
+
__typename?: "Timelock";
|
|
1490
1490
|
id: `0x${string}`;
|
|
1491
1491
|
} | null;
|
|
1492
1492
|
votes: Array<{
|
|
1493
|
-
__typename?:
|
|
1493
|
+
__typename?: "Vote";
|
|
1494
1494
|
id: string;
|
|
1495
1495
|
voter: `0x${string}`;
|
|
1496
1496
|
weight: string;
|
|
@@ -1499,7 +1499,7 @@ type GetProposalQuery = {
|
|
|
1499
1499
|
reason: string;
|
|
1500
1500
|
}>;
|
|
1501
1501
|
pollResult: {
|
|
1502
|
-
__typename?:
|
|
1502
|
+
__typename?: "PollResult";
|
|
1503
1503
|
for: string;
|
|
1504
1504
|
forVotersCount: number;
|
|
1505
1505
|
forPercentage: string;
|