Skip to content

Commit

Permalink
fix: fix lint and build
Browse files Browse the repository at this point in the history
  • Loading branch information
denniswon committed Dec 5, 2023
1 parent efe5a58 commit 0ea8203
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions packages/accounts/src/msca/account-loupe/decorator.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import type { Address, ISmartContractAccount } from "@alchemy/aa-core";
import type { Address } from "@alchemy/aa-core";
import type { Hash } from "viem";
import { IAccountLoupeAbi } from "../abis/IAccountLoupe.js";
import type { IMSCA } from "../builder.js";
import type { FunctionReference, IAccountLoupe } from "./types.js";

export const accountLoupeDecorators = (
account: IMSCA
account: IMSCA<any, any>
): IAccountLoupe => ({
getExecutionFunctionConfig: async (selector: FunctionReference) =>
account.rpcProvider.readContract({
Expand Down
6 changes: 3 additions & 3 deletions packages/accounts/src/msca/plugins/multi-owner.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { type GetFunctionArgs, encodeFunctionData } from "viem";
import type { Plugin } from "./types";
import type { IMSCA } from "../builder";
import type {
ISmartAccountProvider,
SupportedTransports,
} from "@alchemy/aa-core";
import { encodeFunctionData, type GetFunctionArgs } from "viem";
import type { IMSCA } from "../builder";
import type { Plugin } from "./types";

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ERC6900PluginGen: This file is auto-generated by plugingen
Expand Down

0 comments on commit 0ea8203

Please sign in to comment.