Skip to content

Commit

Permalink
Merge pull request #124 from morpho-org/fix/use-relative-imports-liqu…
Browse files Browse the repository at this point in the history
…idation

fix relative imports in blue sdk ethers liquidation
  • Loading branch information
0x666c6f authored Oct 9, 2024
2 parents 4b35a13 + f68aae3 commit be4896a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { Address, ChainId } from "@morpho-org/blue-sdk";
import { AbstractSigner, MaxUint256, Provider } from "ethers";
import { ExecutorEncoder } from "executooor";
import { addresses, contracts, pendle, usual } from "../src";
import * as addresses from "./addresses";
import * as contracts from "./contracts";
import * as pendle from "./tokens/pendle";
import * as usual from "./tokens/usual";

export class LiquidationEncoder extends ExecutorEncoder {
constructor(address: string, runner: AbstractSigner<Provider>) {
Expand Down

0 comments on commit be4896a

Please sign in to comment.