Skip to content

Commit

Permalink
DO_NOT_MERGE_INTO_DEVELOP
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Mar 13, 2024
1 parent f256712 commit 8ccc2d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/account/src/BiconomySmartAccountV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ export class BiconomySmartAccountV2 extends BaseSmartContractAccount {

bundler?: IBundler;

/** @ignore */
private accountContract?: GetContractReturnType<typeof BiconomyAccountAbi, PublicClient>;
/** @ignore */
protected entryPoint: any;

Check failure on line 93 in packages/account/src/BiconomySmartAccountV2.ts

View workflow job for this annotation

GitHub Actions / Lint sources (18.x)

Expected blank line between class members

private defaultFallbackHandlerAddress: Hex;

Expand Down Expand Up @@ -420,6 +423,7 @@ export class BiconomySmartAccountV2 extends BaseSmartContractAccount {
}
}

/** @ignore */
async _getAccountContract(): Promise<GetContractReturnType<typeof BiconomyAccountAbi, PublicClient>> {
if (this.accountContract == null) {
this.accountContract = getContract({
Expand Down

0 comments on commit 8ccc2d5

Please sign in to comment.