0.0.8 • Published 3 years ago

@thenextblock/hardhat-erc20-plugin v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Deploy ERC-20 token

Example:

import { deployErc20Token, Erc20Token } from '@thenextblock/hardhat-erc20-plugin';
...
const args = {
  name: 'ABC Token',
  symbol: 'ABC',
  decimals: 8
};
const abcToken: Erc20Token = await deployErc20Token(args, deployer);