ERC-20
IoT
Overview
Max Total Supply
100,000,000,000 TIC
Holders
4,936 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ThingschainToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-09 */ pragma solidity ^0.4.11; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract ERC20Interface { function totalSupply() public constant returns (uint); function balanceOf(address tokenOwner) public constant returns (uint balance); function allowance(address tokenOwner, address spender) public constant returns (uint remaining); function transfer(address to, uint tokens) public returns (bool success); function approve(address spender, uint tokens) public returns (bool success); function transferFrom(address from, address to, uint tokens) public returns (bool success); event Transfer(address indexed from, address indexed to, uint tokens); event Approval(address indexed tokenOwner, address indexed spender, uint tokens); } contract ThingschainToken is ERC20Interface,Ownable { using SafeMath for uint256; string public name; string public symbol; uint256 public decimals; uint256 public _totalSupply; mapping(address => uint256) tokenBalances; address ownerWallet; // Owner of account approves the transfer of an amount to another account mapping (address => mapping (address => uint256)) allowed; /** * @dev Contructor that gives msg.sender all of existing tokens. */ function ThingschainToken(address wallet) public { owner = msg.sender; ownerWallet = wallet; name = "Thingschain"; symbol = "TIC"; decimals = 8; _totalSupply = 100000000000 * 10 ** uint(decimals); tokenBalances[wallet] = _totalSupply; //Since we divided the token into 10^18 parts } // Get the token balance for account `tokenOwner` function balanceOf(address tokenOwner) public constant returns (uint balance) { return tokenBalances[tokenOwner]; } // Transfer the balance from owner's account to another account function transfer(address to, uint tokens) public returns (bool success) { require(to != address(0)); require(tokens <= tokenBalances[msg.sender]); tokenBalances[msg.sender] = tokenBalances[msg.sender].sub(tokens); tokenBalances[to] = tokenBalances[to].add(tokens); Transfer(msg.sender, to, tokens); return true; } /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= tokenBalances[_from]); require(_value <= allowed[_from][msg.sender]); tokenBalances[_from] = tokenBalances[_from].sub(_value); tokenBalances[_to] = tokenBalances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - tokenBalances[address(0)]; } // ------------------------------------------------------------------------ // Returns the amount of tokens approved by the owner that can be // transferred to the spender's account // ------------------------------------------------------------------------ function allowance(address tokenOwner, address spender) public constant returns (uint remaining) { return allowed[tokenOwner][spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public payable { revert(); } // ------------------------------------------------------------------------ // Owner can transfer out any accidentally sent ERC20 tokens // ------------------------------------------------------------------------ function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) { return ERC20Interface(tokenAddress).transfer(owner, tokens); } //only to be used by the ICO function mint(address wallet, address buyer, uint256 tokenAmount) public onlyOwner { require(tokenBalances[wallet] >= tokenAmount); // checks if it has enough to sell tokenBalances[buyer] = tokenBalances[buyer].add(tokenAmount); // adds the amount to buyer's balance tokenBalances[wallet] = tokenBalances[wallet].sub(tokenAmount); // subtracts amount from seller's balance Transfer(wallet, buyer, tokenAmount); _totalSupply = _totalSupply.sub(tokenAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","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":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"wallet","type":"address"},{"name":"buyer","type":"address"},{"name":"tokenAmount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051602080610dba83398101604081815291516000805433600160a060020a0319918216811782161790915560068054909116600160a060020a038316179055828201909252600b8082527f5468696e6773636861696e00000000000000000000000000000000000000000060209092019182526100929160019161010a565b506040805180820190915260038082527f544943000000000000000000000000000000000000000000000000000000000060209092019182526100d79160029161010a565b506008600355678ac7230489e800006004819055600160a060020a039091166000908152600560205260409020556101a5565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014b57805160ff1916838001178555610178565b82800160010185558215610178579182015b8281111561017857825182559160200191906001019061015d565b50610184929150610188565b5090565b6101a291905b80821115610184576000815560010161018e565b90565b610c06806101b46000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd5780633eaaf86b14610212578063661884631461022757806370a082311461024b5780638da5cb5b1461026c57806395d89b411461029d578063a9059cbb146102b2578063c6c3bbe6146102d6578063d73dd62314610302578063dc39d06d14610326578063dd62ed3e1461034a578063f2fde38b14610371575b600080fd5b3480156100f657600080fd5b506100ff610392565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561041f565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c1610485565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356104b7565b34801561020957600080fd5b506101c1610630565b34801561021e57600080fd5b506101c1610636565b34801561023357600080fd5b50610198600160a060020a036004351660243561063c565b34801561025757600080fd5b506101c1600160a060020a036004351661072c565b34801561027857600080fd5b50610281610747565b60408051600160a060020a039092168252519081900360200190f35b3480156102a957600080fd5b506100ff610756565b3480156102be57600080fd5b50610198600160a060020a03600435166024356107ae565b3480156102e257600080fd5b50610300600160a060020a0360043581169060243516604435610891565b005b34801561030e57600080fd5b50610198600160a060020a036004351660243561099f565b34801561033257600080fd5b50610198600160a060020a0360043516602435610a38565b34801561035657600080fd5b506101c1600160a060020a0360043581169060243516610af3565b34801561037d57600080fd5b50610300600160a060020a0360043516610b1e565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104175780601f106103ec57610100808354040283529160200191610417565b820191906000526020600020905b8154815290600101906020018083116103fa57829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546004540390565b6000600160a060020a03831615156104ce57600080fd5b600160a060020a0384166000908152600560205260409020548211156104f357600080fd5b600160a060020a038416600090815260076020908152604080832033845290915290205482111561052357600080fd5b600160a060020a03841660009081526005602052604090205461054c908363ffffffff610bb216565b600160a060020a038086166000908152600560205260408082209390935590851681522054610581908363ffffffff610bc416565b600160a060020a0380851660009081526005602090815260408083209490945591871681526007825282812033825290915220546105c5908363ffffffff610bb216565b600160a060020a03808616600081815260076020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035481565b60045481565b336000908152600760209081526040808320600160a060020a03861684529091528120548083111561069157336000908152600760209081526040808320600160a060020a03881684529091528120556106c6565b6106a1818463ffffffff610bb216565b336000908152600760209081526040808320600160a060020a03891684529091529020555b336000818152600760209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104175780601f106103ec57610100808354040283529160200191610417565b6000600160a060020a03831615156107c557600080fd5b336000908152600560205260409020548211156107e157600080fd5b33600090815260056020526040902054610801908363ffffffff610bb216565b3360009081526005602052604080822092909255600160a060020a03851681522054610833908363ffffffff610bc416565b600160a060020a0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600054600160a060020a031633146108a857600080fd5b600160a060020a0383166000908152600560205260409020548111156108cd57600080fd5b600160a060020a0382166000908152600560205260409020546108f6908263ffffffff610bc416565b600160a060020a03808416600090815260056020526040808220939093559085168152205461092b908263ffffffff610bb216565b600160a060020a0380851660008181526005602090815260409182902094909455805185815290519286169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600454610997908263ffffffff610bb216565b600455505050565b336000908152600760209081526040808320600160a060020a03861684529091528120546109d3908363ffffffff610bc416565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60008054600160a060020a03163314610a5057600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610ac057600080fd5b505af1158015610ad4573d6000803e3d6000fd5b505050506040513d6020811015610aea57600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b3557600080fd5b600160a060020a0381161515610b4a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610bbe57fe5b50900390565b600082820183811015610bd357fe5b93925050505600a165627a7a7230582012271aad27b3d8a744e6452cc9312fb351091dc606eb302a928a760379bd76a200290000000000000000000000003d5ae81bcb0a3fb9a12a7cf46cbff44b5f20a2c5
Deployed Bytecode
0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd146101ac57806323b872dd146101d3578063313ce567146101fd5780633eaaf86b14610212578063661884631461022757806370a082311461024b5780638da5cb5b1461026c57806395d89b411461029d578063a9059cbb146102b2578063c6c3bbe6146102d6578063d73dd62314610302578063dc39d06d14610326578063dd62ed3e1461034a578063f2fde38b14610371575b600080fd5b3480156100f657600080fd5b506100ff610392565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a036004351660243561041f565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c1610485565b60408051918252519081900360200190f35b3480156101df57600080fd5b50610198600160a060020a03600435811690602435166044356104b7565b34801561020957600080fd5b506101c1610630565b34801561021e57600080fd5b506101c1610636565b34801561023357600080fd5b50610198600160a060020a036004351660243561063c565b34801561025757600080fd5b506101c1600160a060020a036004351661072c565b34801561027857600080fd5b50610281610747565b60408051600160a060020a039092168252519081900360200190f35b3480156102a957600080fd5b506100ff610756565b3480156102be57600080fd5b50610198600160a060020a03600435166024356107ae565b3480156102e257600080fd5b50610300600160a060020a0360043581169060243516604435610891565b005b34801561030e57600080fd5b50610198600160a060020a036004351660243561099f565b34801561033257600080fd5b50610198600160a060020a0360043516602435610a38565b34801561035657600080fd5b506101c1600160a060020a0360043581169060243516610af3565b34801561037d57600080fd5b50610300600160a060020a0360043516610b1e565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104175780601f106103ec57610100808354040283529160200191610417565b820191906000526020600020905b8154815290600101906020018083116103fa57829003601f168201915b505050505081565b336000818152600760209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546004540390565b6000600160a060020a03831615156104ce57600080fd5b600160a060020a0384166000908152600560205260409020548211156104f357600080fd5b600160a060020a038416600090815260076020908152604080832033845290915290205482111561052357600080fd5b600160a060020a03841660009081526005602052604090205461054c908363ffffffff610bb216565b600160a060020a038086166000908152600560205260408082209390935590851681522054610581908363ffffffff610bc416565b600160a060020a0380851660009081526005602090815260408083209490945591871681526007825282812033825290915220546105c5908363ffffffff610bb216565b600160a060020a03808616600081815260076020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035481565b60045481565b336000908152600760209081526040808320600160a060020a03861684529091528120548083111561069157336000908152600760209081526040808320600160a060020a03881684529091528120556106c6565b6106a1818463ffffffff610bb216565b336000908152600760209081526040808320600160a060020a03891684529091529020555b336000818152600760209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600054600160a060020a031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104175780601f106103ec57610100808354040283529160200191610417565b6000600160a060020a03831615156107c557600080fd5b336000908152600560205260409020548211156107e157600080fd5b33600090815260056020526040902054610801908363ffffffff610bb216565b3360009081526005602052604080822092909255600160a060020a03851681522054610833908363ffffffff610bc416565b600160a060020a0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600054600160a060020a031633146108a857600080fd5b600160a060020a0383166000908152600560205260409020548111156108cd57600080fd5b600160a060020a0382166000908152600560205260409020546108f6908263ffffffff610bc416565b600160a060020a03808416600090815260056020526040808220939093559085168152205461092b908263ffffffff610bb216565b600160a060020a0380851660008181526005602090815260409182902094909455805185815290519286169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600454610997908263ffffffff610bb216565b600455505050565b336000908152600760209081526040808320600160a060020a03861684529091528120546109d3908363ffffffff610bc416565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60008054600160a060020a03163314610a5057600080fd5b60008054604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810186905290519186169263a9059cbb926044808401936020939083900390910190829087803b158015610ac057600080fd5b505af1158015610ad4573d6000803e3d6000fd5b505050506040513d6020811015610aea57600080fd5b50519392505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b3557600080fd5b600160a060020a0381161515610b4a57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610bbe57fe5b50900390565b600082820183811015610bd357fe5b93925050505600a165627a7a7230582012271aad27b3d8a744e6452cc9312fb351091dc606eb302a928a760379bd76a20029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003d5ae81bcb0a3fb9a12a7cf46cbff44b5f20a2c5
-----Decoded View---------------
Arg [0] : wallet (address): 0x3d5aE81BCB0A3fb9a12A7CF46cbff44B5F20a2C5
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003d5ae81bcb0a3fb9a12a7cf46cbff44b5f20a2c5
Swarm Source
bzzr://12271aad27b3d8a744e6452cc9312fb351091dc606eb302a928a760379bd76a2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.