import { EthereumTransactionTypeExtended } from '../types'; import { WETHBorrowParamsType, WETHDepositParamsType, WETHRepayParamsType, WETHWithdrawParamsType } from '../types/WethGatewayMethodTypes'; export default interface WETHGatewayInterface { depositETH: (args: WETHDepositParamsType) => Promise; withdrawETH: (args: WETHWithdrawParamsType) => Promise; repayETH: (args: WETHRepayParamsType) => Promise; borrowETH: (args: WETHBorrowParamsType) => Promise; }