From edec9e5d2667990900f780fe70693a31a12aecaa Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Thu, 1 Aug 2024 19:05:17 +0100 Subject: [PATCH] github action fix --- libs/ghaction-helper/src/signer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ghaction-helper/src/signer.ts b/libs/ghaction-helper/src/signer.ts index ff5626b566..1527b9424e 100644 --- a/libs/ghaction-helper/src/signer.ts +++ b/libs/ghaction-helper/src/signer.ts @@ -11,7 +11,7 @@ export class SignerWithAddress extends ethers.Signer { connect: (provider: any) => any, _signTypedData: (...params: any) => any } - provider: any + provider: any = null static async create(signer: any) { return new SignerWithAddress(await signer.getAddress(), signer) } @@ -50,4 +50,4 @@ export class SignerWithAddress extends ethers.Signer { toJSON() { return `` } -} \ No newline at end of file +}