@@ -20,7 +20,6 @@ import type {
2020 TypedEvent ,
2121 TypedListener ,
2222 OnEvent ,
23- PromiseOrValue ,
2423} from "./common" ;
2524
2625export interface ECDSAKernelFactoryInterface extends utils . Interface {
@@ -43,15 +42,15 @@ export interface ECDSAKernelFactoryInterface extends utils.Interface {
4342
4443 encodeFunctionData (
4544 functionFragment : "createAccount" ,
46- values : [ PromiseOrValue < string > , PromiseOrValue < BigNumberish > ]
45+ values : [ string , BigNumberish ]
4746 ) : string ;
4847 encodeFunctionData (
4948 functionFragment : "entryPoint" ,
5049 values ?: undefined
5150 ) : string ;
5251 encodeFunctionData (
5352 functionFragment : "getAccountAddress" ,
54- values : [ PromiseOrValue < string > , PromiseOrValue < BigNumberish > ]
53+ values : [ string , BigNumberish ]
5554 ) : string ;
5655 encodeFunctionData (
5756 functionFragment : "singletonFactory" ,
@@ -105,16 +104,16 @@ export interface ECDSAKernelFactory extends BaseContract {
105104
106105 functions : {
107106 createAccount (
108- _owner : PromiseOrValue < string > ,
109- _index : PromiseOrValue < BigNumberish > ,
110- overrides ?: Overrides & { from ?: PromiseOrValue < string > }
107+ _owner : string ,
108+ _index : BigNumberish ,
109+ overrides ?: Overrides & { from ?: string }
111110 ) : Promise < ContractTransaction > ;
112111
113112 entryPoint ( overrides ?: CallOverrides ) : Promise < [ string ] > ;
114113
115114 getAccountAddress (
116- _owner : PromiseOrValue < string > ,
117- _index : PromiseOrValue < BigNumberish > ,
115+ _owner : string ,
116+ _index : BigNumberish ,
118117 overrides ?: CallOverrides
119118 ) : Promise < [ string ] > ;
120119
@@ -124,16 +123,16 @@ export interface ECDSAKernelFactory extends BaseContract {
124123 } ;
125124
126125 createAccount (
127- _owner : PromiseOrValue < string > ,
128- _index : PromiseOrValue < BigNumberish > ,
129- overrides ?: Overrides & { from ?: PromiseOrValue < string > }
126+ _owner : string ,
127+ _index : BigNumberish ,
128+ overrides ?: Overrides & { from ?: string }
130129 ) : Promise < ContractTransaction > ;
131130
132131 entryPoint ( overrides ?: CallOverrides ) : Promise < string > ;
133132
134133 getAccountAddress (
135- _owner : PromiseOrValue < string > ,
136- _index : PromiseOrValue < BigNumberish > ,
134+ _owner : string ,
135+ _index : BigNumberish ,
137136 overrides ?: CallOverrides
138137 ) : Promise < string > ;
139138
@@ -143,16 +142,16 @@ export interface ECDSAKernelFactory extends BaseContract {
143142
144143 callStatic : {
145144 createAccount (
146- _owner : PromiseOrValue < string > ,
147- _index : PromiseOrValue < BigNumberish > ,
145+ _owner : string ,
146+ _index : BigNumberish ,
148147 overrides ?: CallOverrides
149148 ) : Promise < string > ;
150149
151150 entryPoint ( overrides ?: CallOverrides ) : Promise < string > ;
152151
153152 getAccountAddress (
154- _owner : PromiseOrValue < string > ,
155- _index : PromiseOrValue < BigNumberish > ,
153+ _owner : string ,
154+ _index : BigNumberish ,
156155 overrides ?: CallOverrides
157156 ) : Promise < string > ;
158157
@@ -165,16 +164,16 @@ export interface ECDSAKernelFactory extends BaseContract {
165164
166165 estimateGas : {
167166 createAccount (
168- _owner : PromiseOrValue < string > ,
169- _index : PromiseOrValue < BigNumberish > ,
170- overrides ?: Overrides & { from ?: PromiseOrValue < string > }
167+ _owner : string ,
168+ _index : BigNumberish ,
169+ overrides ?: Overrides & { from ?: string }
171170 ) : Promise < BigNumber > ;
172171
173172 entryPoint ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
174173
175174 getAccountAddress (
176- _owner : PromiseOrValue < string > ,
177- _index : PromiseOrValue < BigNumberish > ,
175+ _owner : string ,
176+ _index : BigNumberish ,
178177 overrides ?: CallOverrides
179178 ) : Promise < BigNumber > ;
180179
@@ -185,16 +184,16 @@ export interface ECDSAKernelFactory extends BaseContract {
185184
186185 populateTransaction : {
187186 createAccount (
188- _owner : PromiseOrValue < string > ,
189- _index : PromiseOrValue < BigNumberish > ,
190- overrides ?: Overrides & { from ?: PromiseOrValue < string > }
187+ _owner : string ,
188+ _index : BigNumberish ,
189+ overrides ?: Overrides & { from ?: string }
191190 ) : Promise < PopulatedTransaction > ;
192191
193192 entryPoint ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
194193
195194 getAccountAddress (
196- _owner : PromiseOrValue < string > ,
197- _index : PromiseOrValue < BigNumberish > ,
195+ _owner : string ,
196+ _index : BigNumberish ,
198197 overrides ?: CallOverrides
199198 ) : Promise < PopulatedTransaction > ;
200199
0 commit comments