BurnMintERC677Helper v0.2.2 API Reference
BurnMintERC677Helper
A helper contract that extends the BurnMintERC677 token contract with additional minting functionality for testing and development purposes.
Functions
constructor
Creates a new BurnMintERC677Helper token with the specified name and symbol.
constructor(
    string memory name,
    string memory symbol
) BurnMintERC677(name, symbol, 18, 0)
Parameters
| Parameter | Type | Description | 
|---|---|---|
| name | string | The name of the token | 
| symbol | string | The symbol of the token | 
drip
Mints a single token to the specified address for testing purposes.
function drip(address to) external
Parameters
| Parameter | Type | Description | 
|---|---|---|
| to | address | The address to receive the minted token |