August 2018
Intermediate to advanced
404 pages
11h 19m
English
pragma solidity ^0.4.23;import "./ERC20.sol";contract Burnable is ERC20 { ...}
function burn(uint256 _value) public { }
require(_value <= balances[msg.sender]);
balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value);
// Event declarationevent Burn(address indexed ...
Read now
Unlock full access