Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
No addresses found
Latest 25 from a total of 949 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 7315020 | 2230 days ago | IN | 0 ETH | 0.00011371 | ||||
Transfer | 7314971 | 2230 days ago | IN | 0 ETH | 0.00011371 | ||||
Transfer | 7314428 | 2230 days ago | IN | 0 ETH | 0.00015871 | ||||
Transfer | 7307077 | 2231 days ago | IN | 0 ETH | 0.00007593 | ||||
Transfer | 7282981 | 2235 days ago | IN | 0 ETH | 0.00018984 | ||||
Transfer | 7277135 | 2236 days ago | IN | 0 ETH | 0.00074155 | ||||
Transfer | 6913701 | 2307 days ago | IN | 0 ETH | 0.00057381 | ||||
Transfer | 6913698 | 2307 days ago | IN | 0 ETH | 0.00128579 | ||||
Transfer | 6849135 | 2318 days ago | IN | 0 ETH | 0.00086288 | ||||
Transfer | 6840333 | 2319 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6840321 | 2319 days ago | IN | 0 ETH | 0.00053096 | ||||
Transfer | 6840302 | 2319 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6840292 | 2319 days ago | IN | 0 ETH | 0.00053149 | ||||
Transfer | 6835817 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835813 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835813 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835811 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835807 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835807 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835805 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835805 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835803 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835800 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835800 | 2320 days ago | IN | 0 ETH | 0.00092384 | ||||
Transfer | 6835798 | 2320 days ago | IN | 0 ETH | 0.00092384 |
Loading...
Loading
Contract Name:
TaichiWorldCoin
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-11-08 */ pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TaichiWorldCoin{ // Public variables of the token string constant public name = "Taichi World Coin"; string constant public symbol = "TCC"; uint8 public decimals = 18; // 18 decimals is the strongly suggested default, avoid changing it uint256 public totalSupply; address public owner; // This creates an array with all balances mapping (address => uint256) public balanceOf; mapping (address => uint256) public freezeOf; mapping (address => mapping (address => uint256)) public allowance; // This generates a public event on the blockchain that will notify clients event Transfer(address indexed from, address indexed to, uint256 value); // This generates a public event on the blockchain that will notify clients event Approval(address indexed _owner, address indexed _spender, uint256 _value); // This notifies clients about the amount burnt event Burn(address indexed from, uint256 value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint256 value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint256 value); /** * Constructor function * * Initializes contract with initial supply tokens to the creator of the contract */ constructor(uint256 initialSupply) public { totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens owner = msg.sender; // Set the symbol for display purposes } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead require(_to != 0x0); // Check if the sender has enough require(balanceOf[_from] >= _value); // Check for overflows require(balanceOf[_to] + _value >= balanceOf[_to]); // Save this for an assertion in the future uint previousBalances = balanceOf[_from] + balanceOf[_to]; // Subtract from the sender balanceOf[_from] -= _value; // Add the same to the recipient balanceOf[_to] += _value; emit Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balanceOf[_from] + balanceOf[_to] == previousBalances); } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public returns (bool success) { _transfer(msg.sender, _to, _value); return true; } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` on behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // Check allowance allowance[_from][msg.sender] -= _value; _transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens on your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens on your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { tokenRecipient spender = tokenRecipient(_spender); if (approve(_spender, _value)) { spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value); // Check if the sender has enough balanceOf[msg.sender] -= _value; // Subtract from the sender totalSupply -= _value; // Updates totalSupply emit Burn(msg.sender, _value); return true; } /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns (bool success) { require(balanceOf[_from] >= _value); // Check if the targeted balance is enough require(_value <= allowance[_from][msg.sender]); // Check allowance balanceOf[_from] -= _value; // Subtract from the targeted balance allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance totalSupply -= _value; // Update totalSupply emit Burn(_from, _value); return true; } function freeze(uint256 _value) public returns (bool success) { require(balanceOf[msg.sender] >= _value); // Check if the sender has enough require(freezeOf[msg.sender] + _value > freezeOf[msg.sender]); require(_value > 0); balanceOf[msg.sender] -= _value; // Subtract from the sender freezeOf[msg.sender] += _value; // Updates totalSupply emit Freeze(msg.sender, _value); return true; } function unfreeze(uint256 _value) public returns (bool success) { require(freezeOf[msg.sender] >= _value); // Check if the sender has enough require(balanceOf[msg.sender] + _value > balanceOf[msg.sender]); require(_value > 0); freezeOf[msg.sender] -= _value; // Subtract from the sender balanceOf[msg.sender] += _value; emit Unfreeze(msg.sender, _value); return true; } // transfer balance to owner function withdrawEther(uint256 amount) public { require(msg.sender == owner); owner.transfer(amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"unfreeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"freeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"}]
Contract Creation Code
60806040526000805460ff1916601217905534801561001d57600080fd5b50604051602080610b5883398101604090815290516000805460ff16600a0a9091026001819055338083526003602052929091205560028054600160a060020a0319169091179055610ae4806100746000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce567146102085780633bed33ce1461023357806342966c681461024d5780636623fc461461026557806370a082311461027d57806379cc67901461029e5780638da5cb5b146102c257806395d89b41146102f3578063a9059cbb14610308578063cae9ca511461032c578063cd4217c114610395578063d7a78db8146103b6578063dd62ed3e146103ce575b600080fd5b34801561010157600080fd5b5061010a6103f5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561042c565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610492565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a0360043581169060243516604435610498565b34801561021457600080fd5b5061021d610507565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b5061024b600435610510565b005b34801561025957600080fd5b506101a3600435610565565b34801561027157600080fd5b506101a36004356105dd565b34801561028957600080fd5b506101cc600160a060020a0360043516610683565b3480156102aa57600080fd5b506101a3600160a060020a0360043516602435610695565b3480156102ce57600080fd5b506102d7610766565b60408051600160a060020a039092168252519081900360200190f35b3480156102ff57600080fd5b5061010a610775565b34801561031457600080fd5b506101a3600160a060020a03600435166024356107ac565b34801561033857600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107c29650505050505050565b3480156103a157600080fd5b506101cc600160a060020a03600435166108db565b3480156103c257600080fd5b506101a36004356108ed565b3480156103da57600080fd5b506101cc600160a060020a0360043581169060243516610993565b60408051808201909152601181527f54616963686920576f726c6420436f696e000000000000000000000000000000602082015281565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015481565b600160a060020a03831660009081526005602090815260408083203384529091528120548211156104c857600080fd5b600160a060020a03841660009081526005602090815260408083203384529091529020805483900390556104fd8484846109b0565b5060019392505050565b60005460ff1681565b600254600160a060020a0316331461052757600080fd5b600254604051600160a060020a039091169082156108fc029083906000818181858888f19350505050158015610561573d6000803e3d6000fd5b5050565b3360009081526003602052604081205482111561058157600080fd5b3360008181526003602090815260409182902080548690039055600180548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b336000908152600460205260408120548211156105f957600080fd5b336000908152600360205260409020548281011161061657600080fd5b6000821161062357600080fd5b336000818152600460209081526040808320805487900390556003825291829020805486019055815185815291517f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f9281900390910190a2506001919050565b60036020526000908152604090205481565b600160a060020a0382166000908152600360205260408120548211156106ba57600080fd5b600160a060020a03831660009081526005602090815260408083203384529091529020548211156106ea57600080fd5b600160a060020a0383166000818152600360209081526040808320805487900390556005825280832033845282529182902080548690039055600180548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600254600160a060020a031681565b60408051808201909152600381527f5443430000000000000000000000000000000000000000000000000000000000602082015281565b60006107b93384846109b0565b50600192915050565b6000836107cf818561042c565b156108d3576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b8381101561086757818101518382015260200161084f565b50505050905090810190601f1680156108945780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156108b657600080fd5b505af11580156108ca573d6000803e3d6000fd5b50505050600191505b509392505050565b60046020526000908152604090205481565b3360009081526003602052604081205482111561090957600080fd5b336000908152600460205260409020548281011161092657600080fd5b6000821161093357600080fd5b336000818152600360209081526040808320805487900390556004825291829020805486019055815185815291517ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e09281900390910190a2506001919050565b600560209081526000928352604080842090915290825290205481565b6000600160a060020a03831615156109c757600080fd5b600160a060020a0384166000908152600360205260409020548211156109ec57600080fd5b600160a060020a0383166000908152600360205260409020548281011015610a1357600080fd5b50600160a060020a038083166000818152600360209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a03808416600090815260036020526040808220549287168252902054018114610ab257fe5b505050505600a165627a7a72305820390a3f12a6e5a2c9ad35ea218c923e6e77770d47137540c75a6e8ebdce7282d10029000000000000000000000000000000000000000000000000000000174876e800
Deployed Bytecode
0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce567146102085780633bed33ce1461023357806342966c681461024d5780636623fc461461026557806370a082311461027d57806379cc67901461029e5780638da5cb5b146102c257806395d89b41146102f3578063a9059cbb14610308578063cae9ca511461032c578063cd4217c114610395578063d7a78db8146103b6578063dd62ed3e146103ce575b600080fd5b34801561010157600080fd5b5061010a6103f5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a036004351660243561042c565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc610492565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a0360043581169060243516604435610498565b34801561021457600080fd5b5061021d610507565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b5061024b600435610510565b005b34801561025957600080fd5b506101a3600435610565565b34801561027157600080fd5b506101a36004356105dd565b34801561028957600080fd5b506101cc600160a060020a0360043516610683565b3480156102aa57600080fd5b506101a3600160a060020a0360043516602435610695565b3480156102ce57600080fd5b506102d7610766565b60408051600160a060020a039092168252519081900360200190f35b3480156102ff57600080fd5b5061010a610775565b34801561031457600080fd5b506101a3600160a060020a03600435166024356107ac565b34801561033857600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a3948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506107c29650505050505050565b3480156103a157600080fd5b506101cc600160a060020a03600435166108db565b3480156103c257600080fd5b506101a36004356108ed565b3480156103da57600080fd5b506101cc600160a060020a0360043581169060243516610993565b60408051808201909152601181527f54616963686920576f726c6420436f696e000000000000000000000000000000602082015281565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015481565b600160a060020a03831660009081526005602090815260408083203384529091528120548211156104c857600080fd5b600160a060020a03841660009081526005602090815260408083203384529091529020805483900390556104fd8484846109b0565b5060019392505050565b60005460ff1681565b600254600160a060020a0316331461052757600080fd5b600254604051600160a060020a039091169082156108fc029083906000818181858888f19350505050158015610561573d6000803e3d6000fd5b5050565b3360009081526003602052604081205482111561058157600080fd5b3360008181526003602090815260409182902080548690039055600180548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b336000908152600460205260408120548211156105f957600080fd5b336000908152600360205260409020548281011161061657600080fd5b6000821161062357600080fd5b336000818152600460209081526040808320805487900390556003825291829020805486019055815185815291517f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f9281900390910190a2506001919050565b60036020526000908152604090205481565b600160a060020a0382166000908152600360205260408120548211156106ba57600080fd5b600160a060020a03831660009081526005602090815260408083203384529091529020548211156106ea57600080fd5b600160a060020a0383166000818152600360209081526040808320805487900390556005825280832033845282529182902080548690039055600180548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b600254600160a060020a031681565b60408051808201909152600381527f5443430000000000000000000000000000000000000000000000000000000000602082015281565b60006107b93384846109b0565b50600192915050565b6000836107cf818561042c565b156108d3576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b8381101561086757818101518382015260200161084f565b50505050905090810190601f1680156108945780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156108b657600080fd5b505af11580156108ca573d6000803e3d6000fd5b50505050600191505b509392505050565b60046020526000908152604090205481565b3360009081526003602052604081205482111561090957600080fd5b336000908152600460205260409020548281011161092657600080fd5b6000821161093357600080fd5b336000818152600360209081526040808320805487900390556004825291829020805486019055815185815291517ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e09281900390910190a2506001919050565b600560209081526000928352604080842090915290825290205481565b6000600160a060020a03831615156109c757600080fd5b600160a060020a0384166000908152600360205260409020548211156109ec57600080fd5b600160a060020a0383166000908152600360205260409020548281011015610a1357600080fd5b50600160a060020a038083166000818152600360209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a03808416600090815260036020526040808220549287168252902054018114610ab257fe5b505050505600a165627a7a72305820390a3f12a6e5a2c9ad35ea218c923e6e77770d47137540c75a6e8ebdce7282d10029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000174876e800
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000174876e800
Swarm Source
bzzr://390a3f12a6e5a2c9ad35ea218c923e6e77770d47137540c75a6e8ebdce7282d1
Loading...
Loading
Loading...
Loading
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.