Back to HomeToken Name DinastyCoinToken Symbol DCT Decimals 6 Deployer 0x6f6b48...35e3C6 Deployment Block 1,148,743 Deployment Date Mar 14, 2016, 04:56 PM Code Size 695.0 B
Deployed March 14, 2016 (10 years ago)Block 1,148,743
Homestead-era transfer-only token, DinastyCoinToken (DCT), fixed supply 200000000 and 6 decimals.
Token Information
Key Facts
Transactions by Year
20162
Deployment Transaction: 0x47865d091aea696b...4ac800e7d3693d2b
Source Verified
Soliditysource_reconstructed
Compiler: solc v0
Runtime bytecode exact match (695 bytes). Creation/init bytecode is close but not yet exact.
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
Opcodes695
Unique Opcodes97
Jump Instructions30
Storage Operations14
Verified Source Available
This contract has verified source code.
View Verification ProofShow source code (Solidity)
contract DinastyCoinToken {
mapping (address => uint256) public balanceOf;
string public name;
string public symbol;
uint8 public decimals;
event Transfer(address indexed from, address indexed to, uint256 value);
function DinastyCoinToken(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 || balanceOf[_to] + _value < balanceOf[_to]) throw;
Transfer(msg.sender, _to, _value);
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
}
}