import BigNumber from "bignumber.js"; import { defineStrategy, defineInput, StrategyInputType, StrategyProtocol } from "../../helpers"; export default defineStrategy({ protocol: StrategyProtocol.COMPOUND, name: "Payback & Withdraw", description: "Payback debt & withdraw collateral in a single txn.", author: "Instadapp Team", submitText: "Payback & Withdraw", details: `

This strategy executes:

`, inputs: [ defineInput({ type: StrategyInputType.INPUT_WITH_TOKEN, name: "Debt", placeholder: ({ input }) => input.token ? `${input.token.symbol} to Payback` : "", validate: ({ input, toBN, dsaBalances }) => { if (!input.token) { return "Debt token is required"; } const balance = toBN(dsaBalances[input.token.address]?.balance); if (toBN(balance).lt(input.value)) { return "You don't have enough balance to payback."; } }, defaults: ({ getTokenByKey }) => ({ token: getTokenByKey?.("dai") }) }), defineInput({ type: StrategyInputType.INPUT_WITH_TOKEN, name: "Collateral", placeholder: ({ input }) => input.token ? `${input.token.symbol} to Withdraw` : "", validate: ({ input, position, toBN, tokenIdMapping }) => { if (!input.token) { return "Collateral token is required"; } if (!input.value) { return "Collateral amount is required"; } const { tokenToId } = tokenIdMapping; if (position) { const collateralBalance = toBN( position.data.find( pos => pos.cTokenId === tokenToId.compound[input.token.key] )?.supply || "0" ); if (collateralBalance.lt(input.value)) { const collateralBalanceFormatted = collateralBalance.toFixed( 2, BigNumber.ROUND_FLOOR ); return `Your amount exceeds your maximum limit of ${collateralBalanceFormatted} ${input.token.symbol}`; } } }, defaults: ({ getTokenByKey }) => ({ token: getTokenByKey?.("eth") }) }) ], validate: async ({ position, inputs, toBN, tokenIdMapping }) => { if (toBN(inputs[0].value).isZero() && toBN(inputs[1].value).isZero()) { return; } const { tokenToId } = tokenIdMapping; const newPositionData = position.data.map(position => { const changedPosition = { ...position }; if (tokenToId.compound[inputs[0].token.key] === position.cTokenId) { changedPosition.borrow = BigNumber.max( toBN(position.borrow).minus(inputs[0].value), "0" ).toFixed(); } if (tokenToId.compound[inputs[1].token.key] === position.cTokenId) { changedPosition.supply = BigNumber.max( toBN(position.supply).minus(inputs[1].value), "0" ).toFixed(); } return changedPosition; }); const stats = newPositionData.reduce( (stats, { key, supply, borrow, priceInEth, factor }) => { if (key === "eth") { stats.ethSupplied = supply; } stats.totalSupplyInEth = toBN(supply) .times(priceInEth) .plus(stats.totalSupplyInEth) .toFixed(); stats.totalBorrowInEth = toBN(borrow) .times(priceInEth) .plus(stats.totalBorrowInEth) .toFixed(); stats.totalMaxBorrowLimitInEth = toBN(priceInEth) .times(factor) .times(supply) .plus(stats.totalMaxBorrowLimitInEth) .toFixed(); return stats; }, { totalSupplyInEth: "0", totalBorrowInEth: "0", totalMaxBorrowLimitInEth: "0", ethSupplied: '0', } ); let liquidation = "0"; if (!toBN(stats.totalSupplyInEth).isZero()) { liquidation = BigNumber.max( toBN(stats.totalMaxBorrowLimitInEth).div(stats.totalSupplyInEth), "0" ).toFixed(); } const status = BigNumber.max( toBN(stats.totalBorrowInEth).div(stats.totalSupplyInEth), "0" ); if (status.gt(toBN(liquidation).minus("0.0001"))) { return "Position will liquidate."; } }, spells: async ({ inputs, convertTokenAmountToWei, tokenIdMapping }) => { const { tokenToId } = tokenIdMapping; const debtTokenId = tokenToId.compound[inputs[0].token.key]; const collateralTokenId = tokenToId.compound[inputs[1].token.key]; return [ { connector: "compound", method: "payback", args: [ debtTokenId, convertTokenAmountToWei(inputs[0].value, inputs[0].token.decimals), 0, 0 ] }, { connector: "compound", method: "withdraw", args: [ collateralTokenId, convertTokenAmountToWei(inputs[1].value, inputs[1].token.decimals), 0, 0 ] } ]; } });