@aave/protocol-js
Version:
Aave protocol data aggregation tool
12 lines (11 loc) • 357 B
TypeScript
import { PermitSignature, tEthereumAddress } from '.';
export declare type RepayWithCollateralType = {
user: tEthereumAddress;
collateralAsset: tEthereumAddress;
debtAsset: tEthereumAddress;
collateralAmount: string;
debtRepayAmount: string;
debtRateMode: number;
permit: PermitSignature;
useEthPath?: boolean;
};