Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.14 KB

File metadata and controls

59 lines (41 loc) · 1.14 KB

Burnable Token (BurnableToken.sol)

contract BurnableToken is BasicToken

BurnableToken

Token that can be irreversibly burned (destroyed).

Events

event Burn(address indexed burner, uint256 value);

Functions

burn

Burns a specific amount of tokens.

function burn(uint256 _value) public

Arguments

Name Type Description
_value uint256 The amount of token to be burned.

_burn

function _burn(address _who, uint256 _value) internal

Arguments

Name Type Description
_who address
_value uint256

Contracts