@@ -20,7 +20,6 @@ import type {
20
20
TypedEvent ,
21
21
TypedListener ,
22
22
OnEvent ,
23
- PromiseOrValue ,
24
23
} from "./common" ;
25
24
26
25
export interface ECDSAKernelFactoryInterface extends utils . Interface {
@@ -43,15 +42,15 @@ export interface ECDSAKernelFactoryInterface extends utils.Interface {
43
42
44
43
encodeFunctionData (
45
44
functionFragment : "createAccount" ,
46
- values : [ PromiseOrValue < string > , PromiseOrValue < BigNumberish > ]
45
+ values : [ string , BigNumberish ]
47
46
) : string ;
48
47
encodeFunctionData (
49
48
functionFragment : "entryPoint" ,
50
49
values ?: undefined
51
50
) : string ;
52
51
encodeFunctionData (
53
52
functionFragment : "getAccountAddress" ,
54
- values : [ PromiseOrValue < string > , PromiseOrValue < BigNumberish > ]
53
+ values : [ string , BigNumberish ]
55
54
) : string ;
56
55
encodeFunctionData (
57
56
functionFragment : "singletonFactory" ,
@@ -105,16 +104,16 @@ export interface ECDSAKernelFactory extends BaseContract {
105
104
106
105
functions : {
107
106
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 }
111
110
) : Promise < ContractTransaction > ;
112
111
113
112
entryPoint ( overrides ?: CallOverrides ) : Promise < [ string ] > ;
114
113
115
114
getAccountAddress (
116
- _owner : PromiseOrValue < string > ,
117
- _index : PromiseOrValue < BigNumberish > ,
115
+ _owner : string ,
116
+ _index : BigNumberish ,
118
117
overrides ?: CallOverrides
119
118
) : Promise < [ string ] > ;
120
119
@@ -124,16 +123,16 @@ export interface ECDSAKernelFactory extends BaseContract {
124
123
} ;
125
124
126
125
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 }
130
129
) : Promise < ContractTransaction > ;
131
130
132
131
entryPoint ( overrides ?: CallOverrides ) : Promise < string > ;
133
132
134
133
getAccountAddress (
135
- _owner : PromiseOrValue < string > ,
136
- _index : PromiseOrValue < BigNumberish > ,
134
+ _owner : string ,
135
+ _index : BigNumberish ,
137
136
overrides ?: CallOverrides
138
137
) : Promise < string > ;
139
138
@@ -143,16 +142,16 @@ export interface ECDSAKernelFactory extends BaseContract {
143
142
144
143
callStatic : {
145
144
createAccount (
146
- _owner : PromiseOrValue < string > ,
147
- _index : PromiseOrValue < BigNumberish > ,
145
+ _owner : string ,
146
+ _index : BigNumberish ,
148
147
overrides ?: CallOverrides
149
148
) : Promise < string > ;
150
149
151
150
entryPoint ( overrides ?: CallOverrides ) : Promise < string > ;
152
151
153
152
getAccountAddress (
154
- _owner : PromiseOrValue < string > ,
155
- _index : PromiseOrValue < BigNumberish > ,
153
+ _owner : string ,
154
+ _index : BigNumberish ,
156
155
overrides ?: CallOverrides
157
156
) : Promise < string > ;
158
157
@@ -165,16 +164,16 @@ export interface ECDSAKernelFactory extends BaseContract {
165
164
166
165
estimateGas : {
167
166
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 }
171
170
) : Promise < BigNumber > ;
172
171
173
172
entryPoint ( overrides ?: CallOverrides ) : Promise < BigNumber > ;
174
173
175
174
getAccountAddress (
176
- _owner : PromiseOrValue < string > ,
177
- _index : PromiseOrValue < BigNumberish > ,
175
+ _owner : string ,
176
+ _index : BigNumberish ,
178
177
overrides ?: CallOverrides
179
178
) : Promise < BigNumber > ;
180
179
@@ -185,16 +184,16 @@ export interface ECDSAKernelFactory extends BaseContract {
185
184
186
185
populateTransaction : {
187
186
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 }
191
190
) : Promise < PopulatedTransaction > ;
192
191
193
192
entryPoint ( overrides ?: CallOverrides ) : Promise < PopulatedTransaction > ;
194
193
195
194
getAccountAddress (
196
- _owner : PromiseOrValue < string > ,
197
- _index : PromiseOrValue < BigNumberish > ,
195
+ _owner : string ,
196
+ _index : BigNumberish ,
198
197
overrides ?: CallOverrides
199
198
) : Promise < PopulatedTransaction > ;
200
199
0 commit comments