This token is claimed to be the first ERC-20 token on Ethereum. Read more about it in this post by feindura.
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 184 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 24138540 | 22 days ago | IN | 0 ETH | 0.00009505 | ||||
| Transfer | 23108718 | 166 days ago | IN | 0 ETH | 0.00010505 | ||||
| Transfer | 22251964 | 286 days ago | IN | 0 ETH | 0.00004283 | ||||
| Transfer | 21631149 | 373 days ago | IN | 0 ETH | 0.00069384 | ||||
| Transfer | 21630960 | 373 days ago | IN | 0 ETH | 0.00061631 | ||||
| Transfer | 21630931 | 373 days ago | IN | 0 ETH | 0.00044062 | ||||
| Transfer | 21624246 | 374 days ago | IN | 0 ETH | 0.0006417 | ||||
| Transfer | 21460454 | 397 days ago | IN | 0 ETH | 0.0003477 | ||||
| Transfer | 21423829 | 402 days ago | IN | 0 ETH | 0.00149744 | ||||
| Transfer | 21264290 | 424 days ago | IN | 0 ETH | 0.00083811 | ||||
| Transfer | 20867399 | 479 days ago | IN | 0 ETH | 0.00036295 | ||||
| Transfer | 20277443 | 562 days ago | IN | 0 ETH | 0.00048165 | ||||
| Transfer | 20183311 | 575 days ago | IN | 0 ETH | 0.0005378 | ||||
| Transfer | 19959117 | 606 days ago | IN | 0 ETH | 0.00021797 | ||||
| Transfer | 19959061 | 606 days ago | IN | 0 ETH | 0.00029424 | ||||
| 0x0a9059cb | 19959034 | 606 days ago | IN | 0 ETH | 0.00018148 | ||||
| Transfer | 19958992 | 606 days ago | IN | 0 ETH | 0.00024904 | ||||
| Transfer | 19958957 | 606 days ago | IN | 0 ETH | 0.00032209 | ||||
| Transfer | 19958771 | 606 days ago | IN | 0 ETH | 0.00037582 | ||||
| 0x0a9059cb | 19957935 | 606 days ago | IN | 0 ETH | 0.00008573 | ||||
| Transfer | 19639354 | 651 days ago | IN | 0 ETH | 0.00085729 | ||||
| Transfer | 19636927 | 651 days ago | IN | 0 ETH | 0.00071478 | ||||
| Transfer | 19634240 | 652 days ago | IN | 0 ETH | 0.00055987 | ||||
| Transfer | 19634225 | 652 days ago | IN | 0 ETH | 0.00069306 | ||||
| Transfer | 19634194 | 652 days ago | IN | 0 ETH | 0.0010052 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MistCoin
Compiler Version
v0.1.6+commit.d41f8b7c
Optimization Enabled:
Yes with 200 runs
Other Settings:
default EvmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-05-23
*/
contract MyToken {
/* Public variables of the token */
string public name;
string public symbol;
uint8 public decimals;
/* This creates an array with all balances */
mapping (address => uint256) public balanceOf;
/* This generates a public event on the blockchain that will notify clients */
event Transfer(address indexed from, address indexed to, uint256 value);
/* Initializes contract with initial supply tokens to the creator of the contract */
function MyToken(uint256 _supply, string _name, string _symbol, uint8 _decimals) {
/* if supply not given then generate 1 million of the smallest unit of the token */
if (_supply == 0) _supply = 1000000;
/* Unless you add other functions these variables will never change */
balanceOf[msg.sender] = _supply;
name = _name;
symbol = _symbol;
/* If you want a divisible token then add the amount of decimals the base unit has */
decimals = _decimals;
}
/* Send coins */
function transfer(address _to, uint256 _value) {
/* if the sender doenst have enough balance then stop */
if (balanceOf[msg.sender] < _value) throw;
if (balanceOf[_to] + _value < balanceOf[_to]) throw;
/* Add and subtract new balances */
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
/* Notifiy anyone listening that this transfer took place */
Transfer(msg.sender, _to, _value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant": true,"inputs": [],"name": "name","outputs": [{"name": "","type": "string"}],"type": "function","stateMutability": "view","payable": false},{"constant": true,"inputs": [],"name": "decimals","outputs": [{"name": "","type": "uint8"}],"type": "function","stateMutability": "view","payable": false},{"constant": true,"inputs": [{"name": "","type": "address"}],"name": "balanceOf","outputs": [{"name": "","type": "uint256"}],"type": "function","stateMutability": "view","payable": false},{"constant": true,"inputs": [],"name": "symbol","outputs": [{"name": "","type": "string"}],"type": "function","stateMutability": "view","payable": false},{"constant": false,"inputs": [{"name": "_to","type": "address"},{"name": "_value","type": "uint256"}],"name": "transfer","outputs": [],"type": "function","payable": true,"stateMutability": "payable"},{"inputs": [{"name": "_supply","type": "uint256"},{"name": "_name","type": "string"},{"name": "_symbol","type": "string"},{"name": "_decimals","type": "uint8"}],"type": "constructor","payable": true,"stateMutability": "payable"},{"anonymous": false,"inputs": [{"indexed": true,"name": "from","type": "address"},{"indexed": true,"name": "to","type": "address"},{"indexed": false,"name": "value","type": "uint256"}],"name": "Transfer","type": "event"},{"type": "fallback","payable": true,"stateMutability": "payable"}]Contract Creation Code
606060405260e060020a600035046306fdde038114610047578063313ce567146100a457806370a08231146100b057806395d89b41146100c8578063a9059cbb14610123575b005b61015260008054602060026001831615610100026000190190921691909104601f810182900490910260809081016040526060828152929190828280156101f55780601f106101ca576101008083540402835291602001916101f5565b6101c060025460ff1681565b6101c060043560036020526000908152604090205481565b610152600180546020601f6002600019610100858716150201909316929092049182018190040260809081016040526060828152929190828280156101f55780601f106101ca576101008083540402835291602001916101f5565b610045600435602435600160a060020a033316600090815260036020526040902054819010156101fd57610002565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6060908152602090f35b820191906000526020600020905b8154815290600101906020018083116101d857829003601f168201915b505050505081565b600160a060020a03821660009081526040902054808201101561021f57610002565b806003600050600033600160a060020a03168152602001908152602001600020600082828250540392505081905550806003600050600084600160a060020a0316815260200190815260200160002060008282825054019250508190555081600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056
Deployed Bytecode
0x606060405260e060020a600035046306fdde038114610047578063313ce567146100a457806370a08231146100b057806395d89b41146100c8578063a9059cbb14610123575b005b61015260008054602060026001831615610100026000190190921691909104601f810182900490910260809081016040526060828152929190828280156101f55780601f106101ca576101008083540402835291602001916101f5565b6101c060025460ff1681565b6101c060043560036020526000908152604090205481565b610152600180546020601f6002600019610100858716150201909316929092049182018190040260809081016040526060828152929190828280156101f55780601f106101ca576101008083540402835291602001916101f5565b610045600435602435600160a060020a033316600090815260036020526040902054819010156101fd57610002565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156101b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6060908152602090f35b820191906000526020600020905b8154815290600101906020018083116101d857829003601f168201915b505050505081565b600160a060020a03821660009081526040902054808201101561021f57610002565b806003600050600033600160a060020a03168152602001908152602001600020600082828250540392505081905550806003600050600084600160a060020a0316815260200190815260200160002060008282825054019250508190555081600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.03
Net Worth in ETH
0.00001
Token Allocations
ETH
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,953.68 | 0.00001 | $0.029537 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.