@makerdao/dai
Version:
Library for interacting with the Dai Stablecoin System.
12 lines (11 loc) • 353 B
TypeScript
import Erc20Token from './Erc20Token';
export default class WethToken extends Erc20Token {
constructor(contract: any, web3Service: any, decimals: any);
name(): any;
deposit(amount: any, { unit, ...options }?: {
unit?: any;
}): any;
withdraw(amount: any, { unit, ...options }?: {
unit?: any;
}): any;
}