From 5a711806d3bf78dc1aeaeb99c182d4fbe21b1514 Mon Sep 17 00:00:00 2001 From: Dror Tirosh Date: Sat, 23 Jul 2022 16:45:40 +0300 Subject: [PATCH] fix typechain error (#101) --- src/AASigner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AASigner.ts b/src/AASigner.ts index e6d70c5b..9d7d23bc 100644 --- a/src/AASigner.ts +++ b/src/AASigner.ts @@ -225,7 +225,7 @@ export class AASigner extends Signer { async _deploymentTransaction (): Promise { const ownerAddress = await this.signer.getAddress() - return new SimpleWallet__factory() + return new SimpleWallet__factory(this.signer) .getDeployTransaction(this.entryPoint.address, ownerAddress).data! }