@bandz/protocol-js
Version:
Bandz protocol data aggregation tool
6 lines (5 loc) • 339 B
TypeScript
import { SmartBCHTransactionTypeExtended } from '../types';
import { RepayWithCollateralType } from '../types/RepayWithCollateralMethodTypes';
export default interface RepayWithCollateralAdapterInterface {
swapAndRepay: (args: RepayWithCollateralType, txs: SmartBCHTransactionTypeExtended[]) => SmartBCHTransactionTypeExtended;
}