Overview
Max Total Supply
5,000,000,000 IZX
Holders
19,544 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
IZXToken
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-21 */ pragma solidity ^0.4.11; contract ERC20 { function balanceOf(address who) constant public returns (uint); function allowance(address owner, address spender) constant public returns (uint); function transfer(address to, uint value) public returns (bool ok); function transferFrom(address from, address to, uint value) public returns (bool ok); function approve(address spender, uint value) public returns (bool ok); event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, uint value); } // Controller for Token interface // Taken from https://github.com/Giveth/minime/blob/master/contracts/MiniMeToken.sol /// @dev The token controller contract must implement these functions contract TokenController { /// @notice Called when `_owner` sends ether to the MiniMe Token contract /// @param _owner The address that sent the ether to create tokens /// @return True if the ether is accepted, false if it throws function proxyPayment(address _owner) payable public returns(bool); /// @notice Notifies the controller about a token transfer allowing the /// controller to react if desired /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) public returns(bool); /// @notice Notifies the controller about an approval allowing the /// controller to react if desired /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) public returns(bool); } // Token implementation // sources // https://github.com/ConsenSys/Tokens contract Controlled { /// @notice The address of the controller is the only address that can call /// a function with this modifier modifier onlyController { require(msg.sender == controller); _; } address public controller; function Controlled() public { controller = msg.sender;} /// @notice Changes the controller of the contract /// @param _newController The new controller of the contract function changeController(address _newController) onlyController public { controller = _newController; } } contract ControlledToken is ERC20, Controlled { uint256 constant MAX_UINT256 = 2**256 - 1; event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount); /* Public variables of the token */ /* NOTE: The following variables are OPTIONAL vanities. One does not have to include them. They allow one to customise the token contract & in no way influences the core functionality. Some wallets/interfaces might not even bother to look at this information. */ string public name; //fancy name: eg Simon Bucks uint8 public decimals; //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether. string public symbol; //An identifier: eg SBX string public version = '1.0'; //human 0.1 standard. Just an arbitrary versioning scheme. uint256 public totalSupply; function ControlledToken( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) { balances[msg.sender] = _initialAmount; // Give the creator all initial tokens totalSupply = _initialAmount; // Update total supply name = _tokenName; // Set the name for display purposes decimals = _decimalUnits; // Amount of decimals for display purposes symbol = _tokenSymbol; // Set the symbol for display purposes } function transfer(address _to, uint256 _value) returns (bool success) { //Default assumes totalSupply can't be over max (2^256 - 1). //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap. //Replace the if with this one instead. //require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]); require(balances[msg.sender] >= _value); if (isContract(controller)) { require(TokenController(controller).onTransfer(msg.sender, _to, _value)); } balances[msg.sender] -= _value; balances[_to] += _value; // Alerts the token controller of the transfer Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { //same as above. Replace this line with the following if you want to protect against wrapping uints. //require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]); uint256 allowance = allowed[_from][msg.sender]; require(balances[_from] >= _value && allowance >= _value); if (isContract(controller)) { require(TokenController(controller).onTransfer(_from, _to, _value)); } balances[_to] += _value; balances[_from] -= _value; if (allowance < MAX_UINT256) { allowed[_from][msg.sender] -= _value; } Transfer(_from, _to, _value); return true; } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { // Alerts the token controller of the approve function call if (isContract(controller)) { require(TokenController(controller).onApprove(msg.sender, _spender, _value)); } allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } //////////////// // Generate and destroy tokens //////////////// /// @notice Generates `_amount` tokens that are assigned to `_owner` /// @param _owner The address that will be assigned the new tokens /// @param _amount The quantity of tokens generated /// @return True if the tokens are generated correctly function generateTokens(address _owner, uint _amount ) onlyController returns (bool) { uint curTotalSupply = totalSupply; require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow uint previousBalanceTo = balanceOf(_owner); require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow totalSupply = curTotalSupply + _amount; balances[_owner] = previousBalanceTo + _amount; Transfer(0, _owner, _amount); return true; } /// @notice Burns `_amount` tokens from `_owner` /// @param _owner The address that will lose the tokens /// @param _amount The quantity of tokens to burn /// @return True if the tokens are burned correctly function destroyTokens(address _owner, uint _amount ) onlyController returns (bool) { uint curTotalSupply = totalSupply; require(curTotalSupply >= _amount); uint previousBalanceFrom = balanceOf(_owner); require(previousBalanceFrom >= _amount); totalSupply = curTotalSupply - _amount; balances[_owner] = previousBalanceFrom - _amount; Transfer(_owner, 0, _amount); return true; } /// @notice The fallback function: If the contract's controller has not been /// set to 0, then the `proxyPayment` method is called which relays the /// ether and creates tokens as described in the token controller contract function () payable { require(isContract(controller)); require(TokenController(controller).proxyPayment.value(msg.value)(msg.sender)); } /// @dev Internal function to determine if an address is a contract /// @param _addr The address being queried /// @return True if `_addr` is a contract function isContract(address _addr) constant internal returns(bool) { uint size; if (_addr == 0) return false; assembly { size := extcodesize(_addr) } return size>0; } /// @notice This method can be used by the controller to extract mistakenly /// sent tokens to this contract. /// @param _token The address of the token contract that you want to recover /// set to 0 in case you want to extract ether. function claimTokens(address _token) onlyController { if (_token == 0x0) { controller.transfer(this.balance); return; } ControlledToken token = ControlledToken(_token); uint balance = token.balanceOf(this); token.transfer(controller, balance); ClaimedTokens(_token, controller, balance); } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; } contract IZXToken is ControlledToken { function IZXToken() ControlledToken( 1, 'IZX Token', 18, 'IZX' ) public {} }
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":"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":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"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"}]
Contract Creation Code
606060405260408051908101604052600381527f312e3000000000000000000000000000000000000000000000000000000000006020820152600490805161004b929160200190610138565b50341561005757600080fd5b60016040805190810160405280600981526020017f495a5820546f6b656e00000000000000000000000000000000000000000000008152506012604080519081016040908152600382527f495a58000000000000000000000000000000000000000000000000000000000060208084019190915260008054600160a060020a03191633600160a060020a0316908117825581526006909152208490556005849055600183805161010b929160200190610138565b506002805460ff191660ff8416179055600381805161012e929160200190610138565b50505050506101d3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061017957805160ff19168380011785556101a6565b828001600101855582156101a6579182015b828111156101a657825182559160200191906001019061018b565b506101b29291506101b6565b5090565b6101d091905b808211156101b257600081556001016101bc565b90565b610d4d80620001e36000396000f3006060604052600436106100c15763ffffffff60e060020a60003504166306fdde038114610166578063095ea7b3146101f057806318160ddd1461022657806323b872dd1461024b578063313ce567146102735780633cebb8231461029c57806354fd4d50146102bb57806370a08231146102ce578063827f32c0146102ed57806395d89b411461030f578063a9059cbb14610322578063d3ce77fe14610344578063dd62ed3e14610366578063df8de3e71461038b578063f77c4791146103aa575b6000546100d690600160a060020a03166103d9565b15156100e157600080fd5b60008054600160a060020a03169063f48c305490349033906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390911660048201526024016020604051808303818588803b151561013d57600080fd5b6125ee5a03f1151561014e57600080fd5b5050505060405180519050151561016457600080fd5b005b341561017157600080fd5b610179610406565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b557808201518382015260200161019d565b50505050905090810190601f1680156101e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fb57600080fd5b610212600160a060020a03600435166024356104a4565b604051901515815260200160405180910390f35b341561023157600080fd5b6102396105be565b60405190815260200160405180910390f35b341561025657600080fd5b610212600160a060020a03600435811690602435166044356105c4565b341561027e57600080fd5b610286610768565b60405160ff909116815260200160405180910390f35b34156102a757600080fd5b610164600160a060020a0360043516610771565b34156102c657600080fd5b6101796107bb565b34156102d957600080fd5b610239600160a060020a0360043516610826565b34156102f857600080fd5b610212600160a060020a0360043516602435610841565b341561031a57600080fd5b6101796108e1565b341561032d57600080fd5b610212600160a060020a036004351660243561094c565b341561034f57600080fd5b610212600160a060020a0360043516602435610a7e565b341561037157600080fd5b610239600160a060020a0360043581169060243516610b1b565b341561039657600080fd5b610164600160a060020a0360043516610b46565b34156103b557600080fd5b6103bd610cf2565b604051600160a060020a03909116815260200160405180910390f35b600080600160a060020a03831615156103f55760009150610400565b823b90506000811191505b50919050565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b505050505081565b600080546104ba90600160a060020a03166103d9565b156105555760008054600160a060020a03169063da682aeb903390869086906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561052f57600080fd5b6102c65a03f1151561054057600080fd5b50505060405180519050151561055557600080fd5b600160a060020a03338116600081815260076020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a0380841660008181526007602090815260408083203390951683529381528382205492825260069052918220548390108015906106085750828110155b151561061357600080fd5b60005461062890600160a060020a03166103d9565b156106c35760008054600160a060020a031690634a393149908790879087906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561069d57600080fd5b6102c65a03f115156106ae57600080fd5b5050506040518051905015156106c357600080fd5b600160a060020a038085166000908152600660205260408082208054870190559187168152208054849003905560001981101561072857600160a060020a03808616600090815260076020908152604080832033909416835292905220805484900390555b83600160a060020a031685600160a060020a0316600080516020610d028339815191528560405190815260200160405180910390a3506001949350505050565b60025460ff1681565b60005433600160a060020a0390811691161461078c57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561049c5780601f106104715761010080835404028352916020019161049c565b600160a060020a031660009081526006602052604090205490565b600080548190819033600160a060020a0390811691161461086157600080fd5b60055491508382018290101561087657600080fd5b61087f85610826565b90508381018190101561089157600080fd5b818401600555600160a060020a0385166000818152600660205260408082208488019055600080516020610d028339815191529087905190815260200160405180910390a3506001949350505050565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561049c5780601f106104715761010080835404028352916020019161049c565b600160a060020a0333166000908152600660205260408120548290101561097257600080fd5b60005461098790600160a060020a03166103d9565b15610a225760008054600160a060020a031690634a393149903390869086906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b15156109fc57600080fd5b6102c65a03f11515610a0d57600080fd5b505050604051805190501515610a2257600080fd5b600160a060020a03338116600081815260066020526040808220805487900390559286168082529083902080548601905591600080516020610d028339815191529085905190815260200160405180910390a350600192915050565b600080548190819033600160a060020a03908116911614610a9e57600080fd5b600554915083821015610ab057600080fd5b610ab985610826565b905083811015610ac857600080fd5b838203600555600160a060020a0385166000818152600660205260408082208785039055909190600080516020610d028339815191529087905190815260200160405180910390a3506001949350505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b60008054819033600160a060020a03908116911614610b6457600080fd5b600160a060020a0383161515610bb257600054600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610bad57600080fd5b610ced565b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610c0c57600080fd5b6102c65a03f11515610c1d57600080fd5b505050604051805160008054919350600160a060020a03808616935063a9059cbb92169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610c8d57600080fd5b6102c65a03f11515610c9e57600080fd5b50505060405180515050600054600160a060020a039081169084167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8360405190815260200160405180910390a35b505050565b600054600160a060020a0316815600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582095b0671979c69135baa1e0ab69f2f302b9893315d4dac7d79590e33cbc40de5e0029
Deployed Bytecode
0x6060604052600436106100c15763ffffffff60e060020a60003504166306fdde038114610166578063095ea7b3146101f057806318160ddd1461022657806323b872dd1461024b578063313ce567146102735780633cebb8231461029c57806354fd4d50146102bb57806370a08231146102ce578063827f32c0146102ed57806395d89b411461030f578063a9059cbb14610322578063d3ce77fe14610344578063dd62ed3e14610366578063df8de3e71461038b578063f77c4791146103aa575b6000546100d690600160a060020a03166103d9565b15156100e157600080fd5b60008054600160a060020a03169063f48c305490349033906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390911660048201526024016020604051808303818588803b151561013d57600080fd5b6125ee5a03f1151561014e57600080fd5b5050505060405180519050151561016457600080fd5b005b341561017157600080fd5b610179610406565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b557808201518382015260200161019d565b50505050905090810190601f1680156101e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fb57600080fd5b610212600160a060020a03600435166024356104a4565b604051901515815260200160405180910390f35b341561023157600080fd5b6102396105be565b60405190815260200160405180910390f35b341561025657600080fd5b610212600160a060020a03600435811690602435166044356105c4565b341561027e57600080fd5b610286610768565b60405160ff909116815260200160405180910390f35b34156102a757600080fd5b610164600160a060020a0360043516610771565b34156102c657600080fd5b6101796107bb565b34156102d957600080fd5b610239600160a060020a0360043516610826565b34156102f857600080fd5b610212600160a060020a0360043516602435610841565b341561031a57600080fd5b6101796108e1565b341561032d57600080fd5b610212600160a060020a036004351660243561094c565b341561034f57600080fd5b610212600160a060020a0360043516602435610a7e565b341561037157600080fd5b610239600160a060020a0360043581169060243516610b1b565b341561039657600080fd5b610164600160a060020a0360043516610b46565b34156103b557600080fd5b6103bd610cf2565b604051600160a060020a03909116815260200160405180910390f35b600080600160a060020a03831615156103f55760009150610400565b823b90506000811191505b50919050565b60018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b505050505081565b600080546104ba90600160a060020a03166103d9565b156105555760008054600160a060020a03169063da682aeb903390869086906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561052f57600080fd5b6102c65a03f1151561054057600080fd5b50505060405180519050151561055557600080fd5b600160a060020a03338116600081815260076020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a0380841660008181526007602090815260408083203390951683529381528382205492825260069052918220548390108015906106085750828110155b151561061357600080fd5b60005461062890600160a060020a03166103d9565b156106c35760008054600160a060020a031690634a393149908790879087906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561069d57600080fd5b6102c65a03f115156106ae57600080fd5b5050506040518051905015156106c357600080fd5b600160a060020a038085166000908152600660205260408082208054870190559187168152208054849003905560001981101561072857600160a060020a03808616600090815260076020908152604080832033909416835292905220805484900390555b83600160a060020a031685600160a060020a0316600080516020610d028339815191528560405190815260200160405180910390a3506001949350505050565b60025460ff1681565b60005433600160a060020a0390811691161461078c57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561049c5780601f106104715761010080835404028352916020019161049c565b600160a060020a031660009081526006602052604090205490565b600080548190819033600160a060020a0390811691161461086157600080fd5b60055491508382018290101561087657600080fd5b61087f85610826565b90508381018190101561089157600080fd5b818401600555600160a060020a0385166000818152600660205260408082208488019055600080516020610d028339815191529087905190815260200160405180910390a3506001949350505050565b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561049c5780601f106104715761010080835404028352916020019161049c565b600160a060020a0333166000908152600660205260408120548290101561097257600080fd5b60005461098790600160a060020a03166103d9565b15610a225760008054600160a060020a031690634a393149903390869086906040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b15156109fc57600080fd5b6102c65a03f11515610a0d57600080fd5b505050604051805190501515610a2257600080fd5b600160a060020a03338116600081815260066020526040808220805487900390559286168082529083902080548601905591600080516020610d028339815191529085905190815260200160405180910390a350600192915050565b600080548190819033600160a060020a03908116911614610a9e57600080fd5b600554915083821015610ab057600080fd5b610ab985610826565b905083811015610ac857600080fd5b838203600555600160a060020a0385166000818152600660205260408082208785039055909190600080516020610d028339815191529087905190815260200160405180910390a3506001949350505050565b600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b60008054819033600160a060020a03908116911614610b6457600080fd5b600160a060020a0383161515610bb257600054600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610bad57600080fd5b610ced565b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610c0c57600080fd5b6102c65a03f11515610c1d57600080fd5b505050604051805160008054919350600160a060020a03808616935063a9059cbb92169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610c8d57600080fd5b6102c65a03f11515610c9e57600080fd5b50505060405180515050600054600160a060020a039081169084167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8360405190815260200160405180910390a35b505050565b600054600160a060020a0316815600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582095b0671979c69135baa1e0ab69f2f302b9893315d4dac7d79590e33cbc40de5e0029
Swarm Source
bzzr://95b0671979c69135baa1e0ab69f2f302b9893315d4dac7d79590e33cbc40de5e
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.