Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,598 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 14352592 | 1476 days ago | IN | 0 ETH | 0.00085144 | ||||
| Transfer | 13845593 | 1555 days ago | IN | 0 ETH | 0.00308555 | ||||
| Transfer | 13845535 | 1555 days ago | IN | 0 ETH | 0.00282896 | ||||
| Transfer | 13832585 | 1557 days ago | IN | 0 ETH | 0.00243915 | ||||
| Transfer | 13832034 | 1557 days ago | IN | 0 ETH | 0.00250985 | ||||
| Transfer | 13582013 | 1596 days ago | IN | 0 ETH | 0.00404187 | ||||
| Transfer | 13492336 | 1610 days ago | IN | 0 ETH | 0.00414659 | ||||
| Transfer | 12619326 | 1746 days ago | IN | 0 ETH | 0.00028289 | ||||
| Transfer | 12531719 | 1760 days ago | IN | 0 ETH | 0.00088375 | ||||
| Transfer | 12524669 | 1761 days ago | IN | 0 ETH | 0.0012726 | ||||
| Transfer | 12506116 | 1764 days ago | IN | 0 ETH | 0.00166145 | ||||
| Transfer | 12503770 | 1764 days ago | IN | 0 ETH | 0.00137865 | ||||
| Transfer | 12493499 | 1766 days ago | IN | 0 ETH | 0.0020503 | ||||
| Transfer | 12491414 | 1766 days ago | IN | 0 ETH | 0.00413595 | ||||
| Transfer | 12474039 | 1769 days ago | IN | 0 ETH | 0.00222705 | ||||
| Transfer | 12471342 | 1769 days ago | IN | 0 ETH | 0.002828 | ||||
| Transfer | 12461927 | 1771 days ago | IN | 0 ETH | 0.00314615 | ||||
| Transfer | 12460124 | 1771 days ago | IN | 0 ETH | 0.0027573 | ||||
| Transfer | 12459174 | 1771 days ago | IN | 0 ETH | 0.0043834 | ||||
| Transfer | 12457975 | 1771 days ago | IN | 0 ETH | 0.00166145 | ||||
| Transfer | 12277554 | 1799 days ago | IN | 0 ETH | 0.01678016 | ||||
| Transfer | 12273996 | 1800 days ago | IN | 0 ETH | 0.01096205 | ||||
| Transfer | 12270882 | 1800 days ago | IN | 0 ETH | 0.00970325 | ||||
| Transfer | 12270411 | 1800 days ago | IN | 0 ETH | 0.00399455 | ||||
| Transfer | 12142789 | 1820 days ago | IN | 0 ETH | 0.00487045 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TEX
Compiler Version
v0.4.12+commit.194ff033
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-10-30
*/
pragma solidity ^0.4.8;
/**
* Math operations with safety checks
*/
contract SafeMath {
function safeMul(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function safeDiv(uint256 a, uint256 b) internal returns (uint256) {
assert(b > 0);
uint256 c = a / b;
assert(a == b * c + a % b);
return c;
}
function safeSub(uint256 a, uint256 b) internal returns (uint256) {
assert(b <= a);
return a - b;
}
function safeAdd(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a + b;
assert(c>=a && c>=b);
return c;
}
function assert(bool assertion) internal {
if (!assertion) {
throw;
}
}
}
contract TEX is SafeMath{
string public name;
string public symbol;
uint8 public decimals;
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 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);
/* Initializes contract with initial supply tokens to the creator of the contract */
function TEX(
uint256 initialSupply,
string tokenName,
uint8 decimalUnits,
string tokenSymbol
) {
balanceOf[msg.sender] = initialSupply; // Give the creator all initial tokens
totalSupply = initialSupply; // Update total supply
name = tokenName; // Set the name for display purposes
symbol = tokenSymbol; // Set the symbol for display purposes
decimals = decimalUnits; // Amount of decimals for display purposes
owner = msg.sender;
}
/* Send coins */
function transfer(address _to, uint256 _value) {
if (_to == 0x0) throw; // Prevent transfer to 0x0 address. Use burn() instead
if (_value <= 0) throw;
if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough
if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender
balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient
Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place
}
/* Allow another contract to spend some tokens in your behalf */
function approve(address _spender, uint256 _value)
returns (bool success) {
if (_value <= 0) throw;
allowance[msg.sender][_spender] = _value;
return true;
}
/* A contract attempts to get the coins */
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
if (_to == 0x0) throw; // Prevent transfer to 0x0 address. Use burn() instead
if (_value <= 0) throw;
if (balanceOf[_from] < _value) throw; // Check if the sender has enough
if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
if (_value > allowance[_from][msg.sender]) throw; // Check allowance
balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value); // Subtract from the sender
balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient
allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value);
Transfer(_from, _to, _value);
return true;
}
function burn(uint256 _value) returns (bool success) {
if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough
if (_value <= 0) throw;
balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender
totalSupply = SafeMath.safeSub(totalSupply,_value); // Updates totalSupply
Burn(msg.sender, _value);
return true;
}
function freeze(uint256 _value) returns (bool success) {
if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough
if (_value <= 0) throw;
balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender
freezeOf[msg.sender] = SafeMath.safeAdd(freezeOf[msg.sender], _value); // Updates totalSupply
Freeze(msg.sender, _value);
return true;
}
function unfreeze(uint256 _value) returns (bool success) {
if (freezeOf[msg.sender] < _value) throw; // Check if the sender has enough
if (_value <= 0) throw;
freezeOf[msg.sender] = SafeMath.safeSub(freezeOf[msg.sender], _value); // Subtract from the sender
balanceOf[msg.sender] = SafeMath.safeAdd(balanceOf[msg.sender], _value);
Unfreeze(msg.sender, _value);
return true;
}
// transfer balance to owner
function withdrawEther(uint256 amount) {
if(msg.sender != owner)throw;
owner.transfer(amount);
}
// can accept ether
function() payable {
}
}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,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"unfreeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"freeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"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":"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
6060604052341561000f57600080fd5b604051610d97380380610d9783398101604052808051919060200180518201919060200180519190602001805190910190505b600160a060020a033316600090815260056020526040812085905560038590558380516100739291602001906100bc565b5060018180516100879291602001906100bc565b506002805460ff191660ff841617905560048054600160a060020a03191633600160a060020a03161790555b5050505061015c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100fd57805160ff191683800117855561012a565b8280016001018555821561012a579182015b8281111561012a57825182559160200191906001019061010f565b5b5061013792915061013b565b5090565b61015991905b808211156101375760008155600101610141565b5090565b90565b610c2c8061016b6000396000f300606060405236156100d85763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100e1578063095ea7b31461016c57806318160ddd146101a257806323b872dd146101c7578063313ce567146102035780633bed33ce1461022c57806342966c68146102445780636623fc461461026e57806370a08231146102985780638da5cb5b146102c957806395d89b41146102f8578063a9059cbb14610383578063cd4217c1146103a7578063d7a78db8146103d8578063dd62ed3e14610402575b6100df5b5b565b005b34156100ec57600080fd5b6100f4610439565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101315780820151818401525b602001610118565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017757600080fd5b61018e600160a060020a03600435166024356104d7565b604051901515815260200160405180910390f35b34156101ad57600080fd5b6101b5610517565b60405190815260200160405180910390f35b34156101d257600080fd5b61018e600160a060020a036004358116906024351660443561051d565b604051901515815260200160405180910390f35b341561020e57600080fd5b6102166106c3565b60405160ff909116815260200160405180910390f35b341561023757600080fd5b6100df6004356106cc565b005b341561024f57600080fd5b61018e60043561071e565b604051901515815260200160405180910390f35b341561027957600080fd5b61018e6004356107e3565b604051901515815260200160405180910390f35b34156102a357600080fd5b6101b5600160a060020a03600435166108c3565b60405190815260200160405180910390f35b34156102d457600080fd5b6102dc6108d5565b604051600160a060020a03909116815260200160405180910390f35b341561030357600080fd5b6100f46108e4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101315780820151818401525b602001610118565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038e57600080fd5b6100df600160a060020a0360043516602435610982565b005b34156103b257600080fd5b6101b5600160a060020a0360043516610aa0565b60405190815260200160405180910390f35b34156103e357600080fd5b61018e600435610ab2565b604051901515815260200160405180910390f35b341561040d57600080fd5b6101b5600160a060020a0360043581169060243516610b92565b60405190815260200160405180910390f35b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b505050505081565b60008082116104e557600080fd5b50600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60035481565b6000600160a060020a038316151561053457600080fd5b6000821161054157600080fd5b600160a060020a0384166000908152600560205260409020548290101561056757600080fd5b600160a060020a038316600090815260056020526040902054828101101561058e57600080fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220548211156105c157600080fd5b600160a060020a0384166000908152600560205260409020546105e49083610baf565b600160a060020a0380861660009081526005602052604080822093909355908516815220546106139083610bc8565b600160a060020a038085166000908152600560209081526040808320949094558783168252600781528382203390931682529190915220546106559083610baf565b600160a060020a03808616600081815260076020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b60025460ff1681565b60045433600160a060020a039081169116146106e757600080fd5b600454600160a060020a031681156108fc0282604051600060405180830381858888f19350505050151561071a57600080fd5b5b50565b600160a060020a0333166000908152600560205260408120548290101561074457600080fd5b6000821161075157600080fd5b600160a060020a0333166000908152600560205260409020546107749083610baf565b600160a060020a03331660009081526005602052604090205560035461079a9083610baf565b600355600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25060015b919050565b600160a060020a0333166000908152600660205260408120548290101561080957600080fd5b6000821161081657600080fd5b600160a060020a0333166000908152600660205260409020546108399083610baf565b600160a060020a0333166000908152600660209081526040808320939093556005905220546108689083610bc8565b600160a060020a0333166000818152600560205260409081902092909255907f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f9084905190815260200160405180910390a25060015b919050565b60056020526000908152604090205481565b600454600160a060020a031681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b505050505081565b600160a060020a038216151561099757600080fd5b600081116109a457600080fd5b600160a060020a033316600090815260056020526040902054819010156109ca57600080fd5b600160a060020a03821660009081526005602052604090205481810110156109f157600080fd5b600160a060020a033316600090815260056020526040902054610a149082610baf565b600160a060020a033381166000908152600560205260408082209390935590841681522054610a439082610bc8565b600160a060020a0380841660008181526005602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050565b60066020526000908152604090205481565b600160a060020a03331660009081526005602052604081205482901015610ad857600080fd5b60008211610ae557600080fd5b600160a060020a033316600090815260056020526040902054610b089083610baf565b600160a060020a033316600090815260056020908152604080832093909355600690522054610b379083610bc8565b600160a060020a0333166000818152600660205260409081902092909255907ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e09084905190815260200160405180910390a25060015b919050565b600760209081526000928352604080842090915290825290205481565b6000610bbd83831115610bf0565b508082035b92915050565b6000828201610be5848210801590610be05750838210155b610bf0565b8091505b5092915050565b80151561071a57600080fd5b5b505600a165627a7a723058203e3dd319f69e8d12d3450c70eb1a2d6390f7868f91f5acc022ce91f0aacac9510029000000000000000000000000000000000000000000000000000009184e72ee200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000c5479636845786368616e6765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035445580000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156100d85763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100e1578063095ea7b31461016c57806318160ddd146101a257806323b872dd146101c7578063313ce567146102035780633bed33ce1461022c57806342966c68146102445780636623fc461461026e57806370a08231146102985780638da5cb5b146102c957806395d89b41146102f8578063a9059cbb14610383578063cd4217c1146103a7578063d7a78db8146103d8578063dd62ed3e14610402575b6100df5b5b565b005b34156100ec57600080fd5b6100f4610439565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101315780820151818401525b602001610118565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017757600080fd5b61018e600160a060020a03600435166024356104d7565b604051901515815260200160405180910390f35b34156101ad57600080fd5b6101b5610517565b60405190815260200160405180910390f35b34156101d257600080fd5b61018e600160a060020a036004358116906024351660443561051d565b604051901515815260200160405180910390f35b341561020e57600080fd5b6102166106c3565b60405160ff909116815260200160405180910390f35b341561023757600080fd5b6100df6004356106cc565b005b341561024f57600080fd5b61018e60043561071e565b604051901515815260200160405180910390f35b341561027957600080fd5b61018e6004356107e3565b604051901515815260200160405180910390f35b34156102a357600080fd5b6101b5600160a060020a03600435166108c3565b60405190815260200160405180910390f35b34156102d457600080fd5b6102dc6108d5565b604051600160a060020a03909116815260200160405180910390f35b341561030357600080fd5b6100f46108e4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101315780820151818401525b602001610118565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038e57600080fd5b6100df600160a060020a0360043516602435610982565b005b34156103b257600080fd5b6101b5600160a060020a0360043516610aa0565b60405190815260200160405180910390f35b34156103e357600080fd5b61018e600435610ab2565b604051901515815260200160405180910390f35b341561040d57600080fd5b6101b5600160a060020a0360043581169060243516610b92565b60405190815260200160405180910390f35b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b505050505081565b60008082116104e557600080fd5b50600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60035481565b6000600160a060020a038316151561053457600080fd5b6000821161054157600080fd5b600160a060020a0384166000908152600560205260409020548290101561056757600080fd5b600160a060020a038316600090815260056020526040902054828101101561058e57600080fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220548211156105c157600080fd5b600160a060020a0384166000908152600560205260409020546105e49083610baf565b600160a060020a0380861660009081526005602052604080822093909355908516815220546106139083610bc8565b600160a060020a038085166000908152600560209081526040808320949094558783168252600781528382203390931682529190915220546106559083610baf565b600160a060020a03808616600081815260076020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b60025460ff1681565b60045433600160a060020a039081169116146106e757600080fd5b600454600160a060020a031681156108fc0282604051600060405180830381858888f19350505050151561071a57600080fd5b5b50565b600160a060020a0333166000908152600560205260408120548290101561074457600080fd5b6000821161075157600080fd5b600160a060020a0333166000908152600560205260409020546107749083610baf565b600160a060020a03331660009081526005602052604090205560035461079a9083610baf565b600355600160a060020a0333167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25060015b919050565b600160a060020a0333166000908152600660205260408120548290101561080957600080fd5b6000821161081657600080fd5b600160a060020a0333166000908152600660205260409020546108399083610baf565b600160a060020a0333166000908152600660209081526040808320939093556005905220546108689083610bc8565b600160a060020a0333166000818152600560205260409081902092909255907f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f9084905190815260200160405180910390a25060015b919050565b60056020526000908152604090205481565b600454600160a060020a031681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b505050505081565b600160a060020a038216151561099757600080fd5b600081116109a457600080fd5b600160a060020a033316600090815260056020526040902054819010156109ca57600080fd5b600160a060020a03821660009081526005602052604090205481810110156109f157600080fd5b600160a060020a033316600090815260056020526040902054610a149082610baf565b600160a060020a033381166000908152600560205260408082209390935590841681522054610a439082610bc8565b600160a060020a0380841660008181526005602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050565b60066020526000908152604090205481565b600160a060020a03331660009081526005602052604081205482901015610ad857600080fd5b60008211610ae557600080fd5b600160a060020a033316600090815260056020526040902054610b089083610baf565b600160a060020a033316600090815260056020908152604080832093909355600690522054610b379083610bc8565b600160a060020a0333166000818152600660205260409081902092909255907ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e09084905190815260200160405180910390a25060015b919050565b600760209081526000928352604080842090915290825290205481565b6000610bbd83831115610bf0565b508082035b92915050565b6000828201610be5848210801590610be05750838210155b610bf0565b8091505b5092915050565b80151561071a57600080fd5b5b505600a165627a7a723058203e3dd319f69e8d12d3450c70eb1a2d6390f7868f91f5acc022ce91f0aacac9510029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000009184e72ee200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000c5479636845786368616e6765000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035445580000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000020000
Arg [1] : tokenName (string): TychExchange
Arg [2] : decimalUnits (uint8): 4
Arg [3] : tokenSymbol (string): TEX
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000009184e72ee20
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 5479636845786368616e67650000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5445580000000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://3e3dd319f69e8d12d3450c70eb1a2d6390f7868f91f5acc022ce91f0aacac951
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.