Back to HomeToken Name leafcoin Symbol LF Decimals 2 Deployer 0x146db8...23bf6e Deployment Block 1,209,456 Deployment Date Mar 24, 2016, 08:09 PM Code Size 716.0 B Gas at Deploy 354,506
Deployed March 24, 2016 (10 years ago)Block 1,209,456
This contract is not yet documented
Know something about this contract? Switch to the History tab and suggest an edit to help preserve Ethereum history.
Homestead EraVerified Source
Token Information
Key Facts
Transactions by Year
20161
Deployment Transaction: 0x1946086252a393e4...f8254a97d636e64b
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Detected Type: Token
Has ERC-20-like patterns
Homestead Era
The first planned hard fork. Removed the canary contract, adjusted gas costs.
Block span: 1,150,000 — 1,919,999
March 14, 2016 — July 20, 2016
Bytecode Overview
Opcodes716
Unique Opcodes95
Jump Instructions32
Storage Operations18
Verified Source Available
This contract has verified source code on Etherscan.
Show source code (Solidity)
contract MyToken {
string public name;
string public symbol;
uint8 public decimals;
mapping (address => uint256) public balanceOf;
event Transfer(address indexed from, address indexed to, uint256 value);
function MyToken(uint256 initialSupply, string tokenName, uint8 decimalUnits, string tokenSymbol) {
balanceOf[msg.sender] = initialSupply;
name = tokenName;
symbol = tokenSymbol;
decimals = decimalUnits;
}
function transfer(address _to, uint256 _value) {
if (balanceOf[msg.sender] < _value) throw;
if (balanceOf[_to] + _value < balanceOf[_to]) throw;
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
Transfer(msg.sender, _to, _value);
}
}