erc20-wizard
Version:
CLI for creating and deploying ERC20 tokens on Ethereum network.
17 lines (14 loc) • 330 B
text/typescript
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;
}