UNPKG

erc20-wizard

Version:

CLI for creating and deploying ERC20 tokens on Ethereum network.

15 lines (14 loc) 346 B
import { IContract } from './contract'; export interface IContractDeploymentOptions { web3Provider: any; name: string; symbol: string; decimals: number; totalSupply: number; compiledContract: IContract; } export interface IContractDeploymentResult { account: string; error?: Error; contractAddress?: string; }