@aave/protocol-js
Version:
Aave protocol data aggregation tool
14 lines (13 loc) • 436 B
TypeScript
import { BytesLike } from 'ethers';
import { PermitSignature, tEthereumAddress } from '.';
export declare type SwapAndDepositMethodType = {
user: tEthereumAddress;
assetToSwapFrom: tEthereumAddress;
assetToSwapTo: tEthereumAddress;
amountToSwap: string;
minAmountToReceive: string;
permitParams: PermitSignature;
swapCallData: BytesLike;
augustus: tEthereumAddress;
swapAll: boolean;
};