ens-usernames/contracts/token/TestToken.sol
Ricardo Guilherme Schmidt 9067b7a21c Implement TestToken
2018-05-07 23:38:01 -03:00

20 lines
400 B
Solidity

pragma solidity ^0.4.23;
import "./StandardToken.sol";
/**
* @notice ERC20Token for test scripts, can be minted by anyone.
*/
contract TestToken is StandardToken {
constructor() public { }
/**
* @notice any caller can mint any `_amount`
* @param _amount how much to be minted
*/
function mint(uint256 _amount) public {
mint(msg.sender, _amount);
}
}