@@ -6,18 +6,24 @@ import GhoFMTaker from "./forge-out/GhoFMTaker.sol/GhoFMTaker.json" assert { typ
66import GhoLiquidator from "./forge-out/GhoLiquidator.sol/GhoLiquidator.json" assert { type : "json " } ;
77import SiloFLTaker from "./forge-out/SiloFLTaker.sol/SiloFLTaker.json" assert { type : "json " } ;
88import SiloLiquidator from "./forge-out/SiloLiquidator.sol/SiloLiquidator.json" assert { type : "json " } ;
9+ import AaveUnwinder from "./forge-out/AaveUnwinder.sol/AaveUnwinder.json" assert { type : "json " } ;
10+ import GhoUnwinder from "./forge-out/GhoUnwinder.sol/GhoUnwinder.json" assert { type : "json " } ;
11+ import SiloUnwinder from "./forge-out/SiloUnwinder.sol/SiloUnwinder.json" assert { type : "json " } ;
912import { writeFileSync } from "node:fs" ;
1013
1114const address = "`0x${string}`" ;
1215
1316const bytecode = `export const AaveFLTaker_bytecode: ${ address } = "${ AaveFLTaker . bytecode . object } ";
1417export const AaveLiquidator_bytecode: ${ address } = "${ AaveLiquidator . bytecode . object } ";
18+ export const AaveUnwinder_bytecode: ${ address } = "${ AaveUnwinder . bytecode . object } ";
1519export const BatchLiquidator_bytecode: ${ address } = "${ BatchLiquidator . bytecode . object } ";
1620export const GhoFMTaker_bytecode: ${ address } = "${ GhoFMTaker . bytecode . object } ";
1721export const GhoLiquidator_bytecode: ${ address } = "${ GhoLiquidator . bytecode . object } ";
22+ export const GhoUnwinder_bytecode: ${ address } = "${ GhoUnwinder . bytecode . object } ";
1823export const PriceHelper_bytecode: ${ address } = "${ PriceHelper . bytecode . object } ";
1924export const SiloFLTaker_bytecode: ${ address } = "${ SiloFLTaker . bytecode . object } ";
2025export const SiloLiquidator_bytecode: ${ address } = "${ SiloLiquidator . bytecode . object } ";
26+ export const SiloUnwinder_bytecode: ${ address } = "${ SiloUnwinder . bytecode . object } ";
2127` ;
2228
2329writeFileSync ( "./src/bytecode/bytecode.generated.ts" , bytecode , "utf-8" ) ;
0 commit comments