@@ -32,9 +32,10 @@ export interface BallotInterface extends utils.Interface {
3232 "choices(uint256)" : FunctionFragment ;
3333 "close()" : FunctionFragment ;
3434 "closed()" : FunctionFragment ;
35+ "factory()" : FunctionFragment ;
3536 "getChoices()" : FunctionFragment ;
3637 "getResults()" : FunctionFragment ;
37- "init(string,string,string[])" : FunctionFragment ;
38+ "init(address,address,address, string,string,string[])" : FunctionFragment ;
3839 "owner()" : FunctionFragment ;
3940 "proxy()" : FunctionFragment ;
4041 "renounceOwnership()" : FunctionFragment ;
@@ -51,6 +52,7 @@ export interface BallotInterface extends utils.Interface {
5152 | "choices"
5253 | "close"
5354 | "closed"
55+ | "factory"
5456 | "getChoices"
5557 | "getResults"
5658 | "init"
@@ -71,6 +73,7 @@ export interface BallotInterface extends utils.Interface {
7173 ) : string ;
7274 encodeFunctionData ( functionFragment : "close" , values ?: undefined ) : string ;
7375 encodeFunctionData ( functionFragment : "closed" , values ?: undefined ) : string ;
76+ encodeFunctionData ( functionFragment : "factory" , values ?: undefined ) : string ;
7477 encodeFunctionData (
7578 functionFragment : "getChoices" ,
7679 values ?: undefined
@@ -81,7 +84,7 @@ export interface BallotInterface extends utils.Interface {
8184 ) : string ;
8285 encodeFunctionData (
8386 functionFragment : "init" ,
84- values : [ string , string , string [ ] ]
87+ values : [ string , string , string , string , string , string [ ] ]
8588 ) : string ;
8689 encodeFunctionData ( functionFragment : "owner" , values ?: undefined ) : string ;
8790 encodeFunctionData ( functionFragment : "proxy" , values ?: undefined ) : string ;
@@ -105,6 +108,7 @@ export interface BallotInterface extends utils.Interface {
105108 decodeFunctionResult ( functionFragment : "choices" , data : BytesLike ) : Result ;
106109 decodeFunctionResult ( functionFragment : "close" , data : BytesLike ) : Result ;
107110 decodeFunctionResult ( functionFragment : "closed" , data : BytesLike ) : Result ;
111+ decodeFunctionResult ( functionFragment : "factory" , data : BytesLike ) : Result ;
108112 decodeFunctionResult ( functionFragment : "getChoices" , data : BytesLike ) : Result ;
109113 decodeFunctionResult ( functionFragment : "getResults" , data : BytesLike ) : Result ;
110114 decodeFunctionResult ( functionFragment : "init" , data : BytesLike ) : Result ;
@@ -182,11 +186,16 @@ export interface Ballot extends BaseContract {
182186
183187 closed ( overrides ?: CallOverrides ) : Promise < [ boolean ] > ;
184188
189+ factory ( overrides ?: CallOverrides ) : Promise < [ string ] > ;
190+
185191 getChoices ( overrides ?: CallOverrides ) : Promise < [ string [ ] ] > ;
186192
187193 getResults ( overrides ?: CallOverrides ) : Promise < [ BigNumber [ ] ] > ;
188194
189195 init (
196+ _DPS : string ,
197+ _proxy : string ,
198+ _factory : string ,
190199 _subject : string ,
191200 _topic : string ,
192201 _choices : string [ ] ,
@@ -231,11 +240,16 @@ export interface Ballot extends BaseContract {
231240
232241 closed ( overrides ?: CallOverrides ) : Promise < boolean > ;
233242
243+ factory ( overrides ?: CallOverrides ) : Promise < string > ;
244+
234245 getChoices ( overrides ?: CallOverrides ) : Promise < string [ ] > ;
235246
236247 getResults ( overrides ?: CallOverrides ) : Promise < BigNumber [ ] > ;
237248
238249 init (
250+ _DPS : string ,
251+ _proxy : string ,
252+ _factory : string ,
239253 _subject : string ,
240254 _topic : string ,
241255 _choices : string [ ] ,
@@ -278,11 +292,16 @@ export interface Ballot extends BaseContract {
278292
279293 closed ( overrides ?: CallOverrides ) : Promise < boolean > ;
280294
295+ factory ( overrides ?: CallOverrides ) : Promise < string > ;
296+
281297 getChoices ( overrides ?: CallOverrides ) : Promise < string [ ] > ;
282298
283299 getResults ( overrides ?: CallOverrides ) : Promise < BigNumber [ ] > ;
284300
285301 init (
302+ _DPS : string ,
303+ _proxy : string ,
304+ _factory : string ,
286305 _subject : string ,
287306 _topic : string ,
288307 _choices : string [ ] ,
@@ -334,11 +353,16 @@ export interface Ballot extends BaseContract {
334353
335354 closed ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
336355
356+ factory ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
357+
337358 getChoices ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
338359
339360 getResults ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
340361
341362 init (
363+ _DPS : string ,
364+ _proxy : string ,
365+ _factory : string ,
342366 _subject : string ,
343367 _topic : string ,
344368 _choices : string [ ] ,
@@ -387,11 +411,16 @@ export interface Ballot extends BaseContract {
387411
388412 closed ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
389413
414+ factory ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
415+
390416 getChoices ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
391417
392418 getResults ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
393419
394420 init (
421+ _DPS : string ,
422+ _proxy : string ,
423+ _factory : string ,
395424 _subject : string ,
396425 _topic : string ,
397426 _choices : string [ ] ,
0 commit comments