Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
Signed-off-by: GopherJ <[email protected]>
  • Loading branch information
GopherJ committed Aug 31, 2023
1 parent 044af57 commit 294e91b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions helpers/contracts-deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {MockContract} from "ethereum-waffle";
import {
Account,
AccountFactory,
AccountRegistry,
ACLManager,
AirdropFlashClaimReceiver,
ApeStakingLogic,
Expand Down Expand Up @@ -2763,7 +2764,10 @@ export const deployAutoYieldApeImplAndAssignItToProxy = async (
);
};

export const deployHelperContractImpl = async (cApeV1: tEthereumAddress, verify?: boolean) => {
export const deployHelperContractImpl = async (
cApeV1: tEthereumAddress,
verify?: boolean
) => {
const allTokens = await getAllTokens();
const protocolDataProvider = await getProtocolDataProvider();
const pCApe = (
Expand All @@ -2786,7 +2790,10 @@ export const deployHelperContractImpl = async (cApeV1: tEthereumAddress, verify?
) as Promise<HelperContract>;
};

export const deployHelperContract = async (cApeV1: tEthereumAddress, verify?: boolean) => {
export const deployHelperContract = async (
cApeV1: tEthereumAddress,
verify?: boolean
) => {
const helperImplementation = await deployHelperContractImpl(cApeV1, verify);

const deployer = await getFirstSigner();
Expand Down

0 comments on commit 294e91b

Please sign in to comment.