@@ -236,81 +236,6 @@ function buildWrappedFallback(contract: BaseContract): WrappedFallback {
236
236
return < WrappedFallback > method ;
237
237
}
238
238
239
- /*
240
- class WrappedFallback {
241
-
242
- constructor (contract: BaseContract) {
243
- defineProperties<WrappedFallback>(this, { _contract: contract });
244
-
245
- const proxy = new Proxy(this, {
246
- // Perform send when called
247
- apply: async (target, thisArg, args: Array<any>) => {
248
- return await target.send(...args);
249
- },
250
- });
251
-
252
- return proxy;
253
- }
254
-
255
- async populateTransaction(overrides?: Omit<TransactionRequest, "to">): Promise<ContractTransaction> {
256
- // If an overrides was passed in, copy it and normalize the values
257
-
258
- const tx: ContractTransaction = <any>(await copyOverrides<"data">(overrides, [ "data" ]));
259
- tx.to = await this._contract.getAddress();
260
-
261
- const iface = this._contract.interface;
262
-
263
- // Only allow payable contracts to set non-zero value
264
- const payable = iface.receive || (iface.fallback && iface.fallback.payable);
265
- assertArgument(payable || (tx.value || BN_0) === BN_0,
266
- "cannot send value to non-payable contract", "overrides.value", tx.value);
267
-
268
- // Only allow fallback contracts to set non-empty data
269
- assertArgument(iface.fallback || (tx.data || "0x") === "0x",
270
- "cannot send data to receive-only contract", "overrides.data", tx.data);
271
-
272
- return tx;
273
- }
274
-
275
- async staticCall(overrides?: Omit<TransactionRequest, "to">): Promise<string> {
276
- const runner = getRunner(this._contract.runner, "call");
277
- assert(canCall(runner), "contract runner does not support calling",
278
- "UNSUPPORTED_OPERATION", { operation: "call" });
279
-
280
- const tx = await this.populateTransaction(overrides);
281
-
282
- try {
283
- return await runner.call(tx);
284
- } catch (error: any) {
285
- if (isCallException(error) && error.data) {
286
- throw this._contract.interface.makeError(error.data, tx);
287
- }
288
- throw error;
289
- }
290
- }
291
-
292
- async send(overrides?: Omit<TransactionRequest, "to">): Promise<ContractTransactionResponse> {
293
- const runner = this._contract.runner;
294
- assert(canSend(runner), "contract runner does not support sending transactions",
295
- "UNSUPPORTED_OPERATION", { operation: "sendTransaction" });
296
-
297
- const tx = await runner.sendTransaction(await this.populateTransaction(overrides));
298
- const provider = getProvider(this._contract.runner);
299
- // @TODO : the provider can be null; make a custom dummy provider that will throw a
300
- // meaningful error
301
- return new ContractTransactionResponse(this._contract.interface, <Provider>provider, tx);
302
- }
303
-
304
- async estimateGas(overrides?: Omit<TransactionRequest, "to">): Promise<bigint> {
305
- const runner = getRunner(this._contract.runner, "estimateGas");
306
- assert(canEstimate(runner), "contract runner does not support gas estimation",
307
- "UNSUPPORTED_OPERATION", { operation: "estimateGas" });
308
-
309
- return await runner.estimateGas(await this.populateTransaction(overrides));
310
- }
311
- }
312
- */
313
-
314
239
function buildWrappedMethod < A extends Array < any > = Array < any > , R = any , D extends R | ContractTransactionResponse = ContractTransactionResponse > ( contract : BaseContract , key : string ) : BaseContractMethod < A , R , D > {
315
240
316
241
const getFragment = function ( ...args : ContractMethodArgs < A > ) : FunctionFragment {
@@ -748,6 +673,14 @@ export class BaseContract implements Addressable, EventEmitterable<ContractEvent
748
673
if ( result ) { return result ; }
749
674
750
675
throw new Error ( `unknown contract event: ${ prop } ` ) ;
676
+ } ,
677
+ has : ( target , prop ) => {
678
+ // Pass important checks (like `then` for Promise) through
679
+ if ( passProperties . indexOf ( < string > prop ) >= 0 ) {
680
+ return Reflect . has ( target , prop ) ;
681
+ }
682
+
683
+ return Reflect . has ( target , prop ) || this . interface . hasEvent ( String ( prop ) ) ;
751
684
}
752
685
} ) ;
753
686
defineProperties < BaseContract > ( this , { filters } ) ;
@@ -769,6 +702,13 @@ export class BaseContract implements Addressable, EventEmitterable<ContractEvent
769
702
if ( result ) { return result ; }
770
703
771
704
throw new Error ( `unknown contract method: ${ prop } ` ) ;
705
+ } ,
706
+ has : ( target , prop ) => {
707
+ if ( prop in target || passProperties . indexOf ( < string > prop ) >= 0 ) {
708
+ return Reflect . has ( target , prop ) ;
709
+ }
710
+
711
+ return target . interface . hasFunction ( String ( prop ) ) ;
772
712
}
773
713
} ) ;
774
714
0 commit comments