Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
520,000,000 ZAP
Holders
5,840 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH (+3.39%)
Onchain Market Cap
$1,608,027.20
Circulating Supply Market Cap
$1,423,824.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
937 ZAPValue
$2.90 ( ~0.00115700067464945 Eth) [0.0002%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZapToken
Compiler Version
v0.4.11+commit.68ef5810
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-10-02 */ pragma solidity ^0.4.11; library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } } 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() { 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 StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @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)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.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. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @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; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval (address _spender, uint _addedValue) returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) returns (bool success) { 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; } } contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(0x0, _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner public returns (bool) { mintingFinished = true; MintFinished(); return true; } } contract ZapToken is MintableToken { string public name = "ZAP TOKEN"; string public symbol = "ZAP"; uint256 public decimals = 18; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"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":"","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":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"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":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"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":"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":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
6003805460a060020a60ff021916905560a0604052600960608190527f5a415020544f4b454e0000000000000000000000000000000000000000000000608090815261004e91600491906100bb565b506040805180820190915260038082527f5a415000000000000000000000000000000000000000000000000000000000006020909201918252610093916005916100bb565b5060126006555b60038054600160a060020a03191633600160a060020a03161790555b61015b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100fc57805160ff1916838001178555610129565b82800160010185558215610129579182015b8281111561012957825182559160200191906001019061010e565b5b5061013692915061013a565b5090565b61015891905b808211156101365760008155600101610140565b5090565b90565b610cc78061016a6000396000f300606060405236156100e35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146100e557806306fdde0314610109578063095ea7b31461019957806318160ddd146101cc57806323b872dd146101ee578063313ce5671461022757806340c10f1914610249578063661884631461027c57806370a08231146102af5780637d64bcb4146102dd5780638da5cb5b1461030157806395d89b411461032d578063a9059cbb146103bd578063d73dd623146103f0578063dd62ed3e14610423578063f2fde38b14610457575bfe5b34156100ed57fe5b6100f5610475565b604080519115158252519081900360200190f35b341561011157fe5b610119610496565b60408051602080825283518183015283519192839290830191850190808383821561015f575b80518252602083111561015f57601f19909201916020918201910161013f565b505050905090810190601f16801561018b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a157fe5b6100f5600160a060020a0360043516602435610524565b604080519115158252519081900360200190f35b34156101d457fe5b6101dc61058f565b60408051918252519081900360200190f35b34156101f657fe5b6100f5600160a060020a0360043581169060243516604435610595565b604080519115158252519081900360200190f35b341561022f57fe5b6101dc6106c2565b60408051918252519081900360200190f35b341561025157fe5b6100f5600160a060020a03600435166024356106c8565b604080519115158252519081900360200190f35b341561028457fe5b6100f5600160a060020a03600435166024356107ed565b604080519115158252519081900360200190f35b34156102b757fe5b6101dc600160a060020a03600435166108e8565b60408051918252519081900360200190f35b34156102e557fe5b6100f5610907565b604080519115158252519081900360200190f35b341561030957fe5b61031161098c565b60408051600160a060020a039092168252519081900360200190f35b341561033557fe5b61011961099b565b60408051602080825283518183015283519192839290830191850190808383821561015f575b80518252602083111561015f57601f19909201916020918201910161013f565b505050905090810190601f16801561018b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103c557fe5b6100f5600160a060020a0360043516602435610a29565b604080519115158252519081900360200190f35b34156103f857fe5b6100f5600160a060020a0360043516602435610b01565b604080519115158252519081900360200190f35b341561042b57fe5b6101dc600160a060020a0360043581169060243516610ba4565b60408051918252519081900360200190f35b341561045f57fe5b610473600160a060020a0360043516610bd1565b005b60035474010000000000000000000000000000000000000000900460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b600080600160a060020a03841615156105ae5760006000fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546105f4908463ffffffff610c6a16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610629908463ffffffff610c8116565b600160a060020a038516600090815260016020526040902055610652818463ffffffff610c6a16565b600160a060020a038087166000818152600260209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600191505b509392505050565b60065481565b60035460009033600160a060020a039081169116146106e75760006000fd5b60035474010000000000000000000000000000000000000000900460ff16156107105760006000fd5b600054610723908363ffffffff610c8116565b6000908155600160a060020a03841681526001602052604090205461074e908363ffffffff610c8116565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b5b5b92915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561084a57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610881565b61085a818463ffffffff610c6a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a039081169116146109265760006000fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a15060015b5b90565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b505050505081565b6000600160a060020a0383161515610a415760006000fd5b600160a060020a033316600090815260016020526040902054610a6a908363ffffffff610c6a16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610a9f908363ffffffff610c8116565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b39908363ffffffff610c8116565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610bed5760006000fd5b600160a060020a0381161515610c035760006000fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600082821115610c7657fe5b508082035b92915050565b600082820183811015610c9057fe5b8091505b50929150505600a165627a7a72305820acbab651241e5563f4b501581e200e75e9e0e371d213d977639b477f6ca8544d0029
Deployed Bytecode
0x606060405236156100e35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146100e557806306fdde0314610109578063095ea7b31461019957806318160ddd146101cc57806323b872dd146101ee578063313ce5671461022757806340c10f1914610249578063661884631461027c57806370a08231146102af5780637d64bcb4146102dd5780638da5cb5b1461030157806395d89b411461032d578063a9059cbb146103bd578063d73dd623146103f0578063dd62ed3e14610423578063f2fde38b14610457575bfe5b34156100ed57fe5b6100f5610475565b604080519115158252519081900360200190f35b341561011157fe5b610119610496565b60408051602080825283518183015283519192839290830191850190808383821561015f575b80518252602083111561015f57601f19909201916020918201910161013f565b505050905090810190601f16801561018b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101a157fe5b6100f5600160a060020a0360043516602435610524565b604080519115158252519081900360200190f35b34156101d457fe5b6101dc61058f565b60408051918252519081900360200190f35b34156101f657fe5b6100f5600160a060020a0360043581169060243516604435610595565b604080519115158252519081900360200190f35b341561022f57fe5b6101dc6106c2565b60408051918252519081900360200190f35b341561025157fe5b6100f5600160a060020a03600435166024356106c8565b604080519115158252519081900360200190f35b341561028457fe5b6100f5600160a060020a03600435166024356107ed565b604080519115158252519081900360200190f35b34156102b757fe5b6101dc600160a060020a03600435166108e8565b60408051918252519081900360200190f35b34156102e557fe5b6100f5610907565b604080519115158252519081900360200190f35b341561030957fe5b61031161098c565b60408051600160a060020a039092168252519081900360200190f35b341561033557fe5b61011961099b565b60408051602080825283518183015283519192839290830191850190808383821561015f575b80518252602083111561015f57601f19909201916020918201910161013f565b505050905090810190601f16801561018b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156103c557fe5b6100f5600160a060020a0360043516602435610a29565b604080519115158252519081900360200190f35b34156103f857fe5b6100f5600160a060020a0360043516602435610b01565b604080519115158252519081900360200190f35b341561042b57fe5b6101dc600160a060020a0360043581169060243516610ba4565b60408051918252519081900360200190f35b341561045f57fe5b610473600160a060020a0360043516610bd1565b005b60035474010000000000000000000000000000000000000000900460ff1681565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b600080600160a060020a03841615156105ae5760006000fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546105f4908463ffffffff610c6a16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610629908463ffffffff610c8116565b600160a060020a038516600090815260016020526040902055610652818463ffffffff610c6a16565b600160a060020a038087166000818152600260209081526040808320338616845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600191505b509392505050565b60065481565b60035460009033600160a060020a039081169116146106e75760006000fd5b60035474010000000000000000000000000000000000000000900460ff16156107105760006000fd5b600054610723908363ffffffff610c8116565b6000908155600160a060020a03841681526001602052604090205461074e908363ffffffff610c8116565b600160a060020a038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b5b5b92915050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561084a57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610881565b61085a818463ffffffff610c6a16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a039081169116146109265760006000fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a15060015b5b90565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b505050505081565b6000600160a060020a0383161515610a415760006000fd5b600160a060020a033316600090815260016020526040902054610a6a908363ffffffff610c6a16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610a9f908363ffffffff610c8116565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b39908363ffffffff610c8116565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a03908116911614610bed5760006000fd5b600160a060020a0381161515610c035760006000fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600082821115610c7657fe5b508082035b92915050565b600082820183811015610c9057fe5b8091505b50929150505600a165627a7a72305820acbab651241e5563f4b501581e200e75e9e0e371d213d977639b477f6ca8544d0029
Swarm Source
bzzr://acbab651241e5563f4b501581e200e75e9e0e371d213d977639b477f6ca8544d
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.