Skip to content

Commit eb3315c

Browse files
committed
fix: forgot to generate bytecode
1 parent 8146a22 commit eb3315c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

generate-bytecode.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import AaveLiquidator from "./forge-out/AaveLiquidator.sol/AaveLiquidator.json"
44
import PriceHelper from "./forge-out/PriceHelper.sol/PriceHelper.json" assert { type: "json" };
55
import GhoFMTaker from "./forge-out/GhoFMTaker.sol/GhoFMTaker.json" assert { type: "json" };
66
import GhoLiquidator from "./forge-out/GhoLiquidator.sol/GhoLiquidator.json" assert { type: "json" };
7+
import SiloFLTaker from "./forge-out/SiloFLTaker.sol/SiloFLTaker.json" assert { type: "json" };
8+
import SiloLiquidator from "./forge-out/SiloLiquidator.sol/SiloLiquidator.json" assert { type: "json" };
79
import { writeFileSync } from "node:fs";
810

911
const address = "`0x${string}`";
@@ -14,6 +16,8 @@ export const BatchLiquidator_bytecode: ${address} = "${BatchLiquidator.bytecode.
1416
export const GhoFMTaker_bytecode: ${address} = "${GhoFMTaker.bytecode.object}";
1517
export const GhoLiquidator_bytecode: ${address} = "${GhoLiquidator.bytecode.object}";
1618
export const PriceHelper_bytecode: ${address} = "${PriceHelper.bytecode.object}";
19+
export const SiloFLTaker_bytecode: ${address} = "${SiloFLTaker.bytecode.object}";
20+
export const SiloLiquidator_bytecode: ${address} = "${SiloLiquidator.bytecode.object}";
1721
`;
1822

1923
writeFileSync("./src/bytecode/bytecode.generated.ts", bytecode, "utf-8");

0 commit comments

Comments
 (0)