@@ -32,9 +32,10 @@ export interface BallotInterface extends utils.Interface {
32
32
"choices(uint256)" : FunctionFragment ;
33
33
"close()" : FunctionFragment ;
34
34
"closed()" : FunctionFragment ;
35
+ "factory()" : FunctionFragment ;
35
36
"getChoices()" : FunctionFragment ;
36
37
"getResults()" : FunctionFragment ;
37
- "init(string,string,string[])" : FunctionFragment ;
38
+ "init(address,address,address, string,string,string[])" : FunctionFragment ;
38
39
"owner()" : FunctionFragment ;
39
40
"proxy()" : FunctionFragment ;
40
41
"renounceOwnership()" : FunctionFragment ;
@@ -51,6 +52,7 @@ export interface BallotInterface extends utils.Interface {
51
52
| "choices"
52
53
| "close"
53
54
| "closed"
55
+ | "factory"
54
56
| "getChoices"
55
57
| "getResults"
56
58
| "init"
@@ -71,6 +73,7 @@ export interface BallotInterface extends utils.Interface {
71
73
) : string ;
72
74
encodeFunctionData ( functionFragment : "close" , values ?: undefined ) : string ;
73
75
encodeFunctionData ( functionFragment : "closed" , values ?: undefined ) : string ;
76
+ encodeFunctionData ( functionFragment : "factory" , values ?: undefined ) : string ;
74
77
encodeFunctionData (
75
78
functionFragment : "getChoices" ,
76
79
values ?: undefined
@@ -81,7 +84,7 @@ export interface BallotInterface extends utils.Interface {
81
84
) : string ;
82
85
encodeFunctionData (
83
86
functionFragment : "init" ,
84
- values : [ string , string , string [ ] ]
87
+ values : [ string , string , string , string , string , string [ ] ]
85
88
) : string ;
86
89
encodeFunctionData ( functionFragment : "owner" , values ?: undefined ) : string ;
87
90
encodeFunctionData ( functionFragment : "proxy" , values ?: undefined ) : string ;
@@ -105,6 +108,7 @@ export interface BallotInterface extends utils.Interface {
105
108
decodeFunctionResult ( functionFragment : "choices" , data : BytesLike ) : Result ;
106
109
decodeFunctionResult ( functionFragment : "close" , data : BytesLike ) : Result ;
107
110
decodeFunctionResult ( functionFragment : "closed" , data : BytesLike ) : Result ;
111
+ decodeFunctionResult ( functionFragment : "factory" , data : BytesLike ) : Result ;
108
112
decodeFunctionResult ( functionFragment : "getChoices" , data : BytesLike ) : Result ;
109
113
decodeFunctionResult ( functionFragment : "getResults" , data : BytesLike ) : Result ;
110
114
decodeFunctionResult ( functionFragment : "init" , data : BytesLike ) : Result ;
@@ -182,11 +186,16 @@ export interface Ballot extends BaseContract {
182
186
183
187
closed ( overrides ?: CallOverrides ) : Promise < [ boolean ] > ;
184
188
189
+ factory ( overrides ?: CallOverrides ) : Promise < [ string ] > ;
190
+
185
191
getChoices ( overrides ?: CallOverrides ) : Promise < [ string [ ] ] > ;
186
192
187
193
getResults ( overrides ?: CallOverrides ) : Promise < [ BigNumber [ ] ] > ;
188
194
189
195
init (
196
+ _DPS : string ,
197
+ _proxy : string ,
198
+ _factory : string ,
190
199
_subject : string ,
191
200
_topic : string ,
192
201
_choices : string [ ] ,
@@ -231,11 +240,16 @@ export interface Ballot extends BaseContract {
231
240
232
241
closed ( overrides ?: CallOverrides ) : Promise < boolean > ;
233
242
243
+ factory ( overrides ?: CallOverrides ) : Promise < string > ;
244
+
234
245
getChoices ( overrides ?: CallOverrides ) : Promise < string [ ] > ;
235
246
236
247
getResults ( overrides ?: CallOverrides ) : Promise < BigNumber [ ] > ;
237
248
238
249
init (
250
+ _DPS : string ,
251
+ _proxy : string ,
252
+ _factory : string ,
239
253
_subject : string ,
240
254
_topic : string ,
241
255
_choices : string [ ] ,
@@ -278,11 +292,16 @@ export interface Ballot extends BaseContract {
278
292
279
293
closed ( overrides ?: CallOverrides ) : Promise < boolean > ;
280
294
295
+ factory ( overrides ?: CallOverrides ) : Promise < string > ;
296
+
281
297
getChoices ( overrides ?: CallOverrides ) : Promise < string [ ] > ;
282
298
283
299
getResults ( overrides ?: CallOverrides ) : Promise < BigNumber [ ] > ;
284
300
285
301
init (
302
+ _DPS : string ,
303
+ _proxy : string ,
304
+ _factory : string ,
286
305
_subject : string ,
287
306
_topic : string ,
288
307
_choices : string [ ] ,
@@ -334,11 +353,16 @@ export interface Ballot extends BaseContract {
334
353
335
354
closed ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
336
355
356
+ factory ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
357
+
337
358
getChoices ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
338
359
339
360
getResults ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
340
361
341
362
init (
363
+ _DPS : string ,
364
+ _proxy : string ,
365
+ _factory : string ,
342
366
_subject : string ,
343
367
_topic : string ,
344
368
_choices : string [ ] ,
@@ -387,11 +411,16 @@ export interface Ballot extends BaseContract {
387
411
388
412
closed ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
389
413
414
+ factory ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
415
+
390
416
getChoices ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
391
417
392
418
getResults ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
393
419
394
420
init (
421
+ _DPS : string ,
422
+ _proxy : string ,
423
+ _factory : string ,
395
424
_subject : string ,
396
425
_topic : string ,
397
426
_choices : string [ ] ,
0 commit comments