Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ import { run as getAcrossBridgingId } from "./scripts/bridging/getAcrossBridging
import { run as getEthFlowId } from "./scripts/ethflow/getEthFlowId";
import { run as minimalAppData } from "./scripts/app-data/minimalAppData";
import { run as collateralSwapAave } from "./scripts/flash-loans/collateralSwapAave";
import { run as collateralSwapAavePoC } from "./scripts/flash-loans/collateralSwapAavePoC";
import { run as repayDebtWithCollateralAavePoC } from "./scripts/flash-loans/repayDebtWithCollateralAavePoC";
import { run as debtSwapAavePoC } from "./scripts/flash-loans/debtSwapAavePoC";

dotenv.config();

Expand Down Expand Up @@ -85,7 +88,9 @@ const JOBS: (() => Promise<unknown>)[] = [
// getAcrossBridgingId,
// getEthFlowId,
// minimalAppData,
collateralSwapAave,
// collateralSwapAavePoC,
//repayDebtWithCollateralAavePoC,
debtSwapAavePoC,
];

async function main() {
Expand Down
Loading