Package Exports
- create-erc20
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-erc20) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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);
})();