1.0.1 • Published 5 years ago

create-erc20 v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

erc-20

Create a new ERC20 token in a single line with Node.js.

Usage:

const erc20 = require('create-erc20');

(async function(){
  var created = await erc20.create({
    name: 'ZimbabweToken',
    web3_url: 'https://kovan.infura.io/v1',
    symbol: 'ZIM',
    contractName: 'Zimbawe',
    supply: '10000000',
    decimals: '10',
    mintable: true,
    burnable: true,
    deploy: true,
    source: '0x627306090abaB3A6e1400e9345bC60c78a8BEf57',
    key: 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3'
  });
  console.log(created);
})();