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