Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Source Code
Overview
Max Total Supply
80,000,000 JET
Holders
2,535 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH
Onchain Market Cap
$93,306.40
Circulating Supply Market Cap
$14,891.74
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,000 JETValue
$11.66 ( ~0.00529482955278242 Eth) [0.0125%]Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
JetCoin
Compiler Version
v0.4.16+commit.d7661dd9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-09-07
*/
pragma solidity ^0.4.13;
/**
* Math operations with safety checks
*/
library SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint a, uint b) internal returns (uint) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function add(uint a, uint b) internal returns (uint) {
uint c = a + b;
assert(c >= a);
return c;
}
function max64(uint64 a, uint64 b) internal constant returns (uint64) {
return a >= b ? a : b;
}
function min64(uint64 a, uint64 b) internal constant returns (uint64) {
return a < b ? a : b;
}
function max256(uint256 a, uint256 b) internal constant returns (uint256) {
return a >= b ? a : b;
}
function min256(uint256 a, uint256 b) internal constant returns (uint256) {
return a < b ? a : b;
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20Basic {
uint public totalSupply;
function balanceOf(address who) constant returns (uint);
function transfer(address to, uint value);
event Transfer(address indexed from, address indexed to, uint value);
}
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint;
mapping(address => uint) balances;
/**
* @dev Fix for the ERC20 short address attack.
*/
modifier onlyPayloadSize(uint size) {
require(msg.data.length >= size + 4);
_;
}
/**
* @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, uint _value) onlyPayloadSize(2 * 32) {
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint representing the amount owned by the passed address.
*/
function balanceOf(address _owner) constant returns (uint balance) {
return balances[_owner];
}
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) constant returns (uint);
function transferFrom(address from, address to, uint value);
function approve(address spender, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
/**
* @title Standard ERC20 token
*
* @dev Implemantation of the basic standart token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is BasicToken, ERC20 {
mapping (address => mapping (address => uint)) 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 uint the amout of tokens to be transfered
*/
function transferFrom(address _from, address _to, uint _value) onlyPayloadSize(3 * 32) {
var _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// if (_value > _allowance) throw;
balances[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
Transfer(_from, _to, _value);
}
/**
* @dev Aprove 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, uint _value) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw;
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
}
/**
* @dev Function to check the amount of tokens than 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 uint specifing the amount of tokens still avaible for the spender.
*/
function allowance(address _owner, address _spender) constant returns (uint remaining) {
return allowed[_owner][_spender];
}
}
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
/**
* @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() {
if (msg.sender != owner) {
throw;
}
_;
}
/**
* @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 {
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev modifier to allow actions only when the contract IS paused
*/
modifier whenNotPaused() {
require (!paused) ;
_;
}
/**
* @dev modifier to allow actions only when the contract IS NOT paused
*/
modifier whenPaused {
require (paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused returns (bool) {
paused = true;
Pause();
return true;
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused returns (bool) {
paused = false;
Unpause();
return true;
}
}
/**
* Jetcoin Standard ERC20 token
*
* https://github.com/ethereum/EIPs/issues/20
*/
contract JetCoin is StandardToken, Pausable {
string public name = "Jetcoin";
string public symbol = "JET";
uint8 public decimals = 18;
string public version = "2.0";
address public replacesOldContract = 0xc1E6C6C681B286Fb503B36a9dD6c1dbFF85E73CF;
function transfer(address _to, uint _value) whenNotPaused {
require(_to != address(this));
super.transfer(_to,_value);
}
function transferFrom(address _from, address _to, uint _value) whenNotPaused {
require(_to != address(this));
super.transferFrom(_from,_to,_value);
}
function approve(address _spender, uint _value) whenNotPaused {
return super.approve(_spender,_value);
}
function JetCoin() {
totalSupply = 80000000 ether;
balances[0xe955C7616dc449Fd0CBEeCa277cC078F9510BC04] = totalSupply;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"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":[],"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":"unpause","outputs":[{"name":"","type":"bool"}],"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":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"replacesOldContract","outputs":[{"name":"","type":"address"}],"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":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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
606060409081526003805460a060020a60ff02191690558051908101604052600781527f4a6574636f696e000000000000000000000000000000000000000000000000006020820152600490805161005b92916020019061019d565b5060408051908101604052600381527f4a45540000000000000000000000000000000000000000000000000000000000602082015260059080516100a392916020019061019d565b506006805460ff1916601217905560408051908101604052600381527f322e300000000000000000000000000000000000000000000000000000000000602082015260079080516100f892916020019061019d565b5060088054600160a060020a03191673c1e6c6c681b286fb503b36a9dd6c1dbff85e73cf179055341561012a57600080fd5b5b5b60038054600160a060020a03191633600160a060020a03161790555b6a422ca8b0a00a4250000000600081815573e955c7616dc449fd0cbeeca277cc078f9510bc04905260016020527fae6e08ff71f16122039d3187ed51ef4ead2a18fdc6833965a88e9ef54f23c3a0555b61023d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101de57805160ff191683800117855561020b565b8280016001018555821561020b579182015b8281111561020b5782518255916020019190600101906101f0565b5b5061021892915061021c565b5090565b61023a91905b808211156102185760008155600101610222565b5090565b90565b610c1f8061024c6000396000f300606060405236156100e35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100e8578063095ea7b31461017357806318160ddd1461019757806323b872dd146101bc578063313ce567146101e65780633f4ba83a1461020f57806354fd4d50146102365780635c975abb146102c15780636678887f146102e857806370a08231146103175780638456cb59146103485780638da5cb5b1461036f57806395d89b411461039e578063a9059cbb14610429578063dd62ed3e1461044d578063f2fde38b14610484575b600080fd5b34156100f357600080fd5b6100fb6104a5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101385780820151818401525b60200161011f565b50505050905090810190601f1680156101655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017e57600080fd5b610195600160a060020a0360043516602435610543565b005b34156101a257600080fd5b6101aa61056a565b60405190815260200160405180910390f35b34156101c757600080fd5b610195600160a060020a0360043581169060243516604435610570565b005b34156101f157600080fd5b6101f96105ba565b60405160ff909116815260200160405180910390f35b341561021a57600080fd5b6102226105c3565b604051901515815260200160405180910390f35b341561024157600080fd5b6100fb61064c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101385780820151818401525b60200161011f565b50505050905090810190601f1680156101655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102cc57600080fd5b6102226106ea565b604051901515815260200160405180910390f35b34156102f357600080fd5b6102fb6106fa565b604051600160a060020a03909116815260200160405180910390f35b341561032257600080fd5b6101aa600160a060020a0360043516610709565b60405190815260200160405180910390f35b341561035357600080fd5b610222610728565b604051901515815260200160405180910390f35b341561037a57600080fd5b6102fb6107b6565b604051600160a060020a03909116815260200160405180910390f35b34156103a957600080fd5b6100fb6107c5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101385780820151818401525b60200161011f565b50505050905090810190601f1680156101655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561043457600080fd5b610195600160a060020a0360043516602435610863565b005b341561045857600080fd5b6101aa600160a060020a03600435811690602435166108ab565b60405190815260200160405180910390f35b341561048f57600080fd5b610195600160a060020a03600435166108d8565b005b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b505050505081565b60035460a060020a900460ff161561055a57600080fd5b6105648282610930565b5b5b5050565b60005481565b60035460a060020a900460ff161561058757600080fd5b30600160a060020a031682600160a060020a0316141515156105a857600080fd5b6105b38383836109d2565b5b5b505050565b60065460ff1681565b60035460009033600160a060020a039081169116146105e157600080fd5b60035460a060020a900460ff1615156105f957600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b5b5b90565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b505050505081565b60035460a060020a900460ff1681565b600854600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a0390811691161461074657600080fd5b60035460a060020a900460ff161561075d57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15060015b5b5b90565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b505050505081565b60035460a060020a900460ff161561087a57600080fd5b30600160a060020a031682600160a060020a03161415151561089b57600080fd5b6105648282610af5565b5b5b5050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a039081169116146108f357600080fd5b600160a060020a0381161561092b576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b80158015906109635750600160a060020a0333811660009081526002602090815260408083209386168352929052205415155b1561096d57600080fd5b600160a060020a03338116600081815260026020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35b5050565b6000606060643610156109e457600080fd5b600160a060020a038086166000908152600260209081526040808320338516845282528083205493881683526001909152902054909250610a2b908463ffffffff610bc216565b600160a060020a038086166000908152600160205260408082209390935590871681522054610a60908463ffffffff610bdc16565b600160a060020a038616600090815260016020526040902055610a89828463ffffffff610bdc16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b5b5050505050565b60406044361015610b0557600080fd5b600160a060020a033316600090815260016020526040902054610b2e908363ffffffff610bdc16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610b63908363ffffffff610bc216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b5b505050565b600082820183811015610bd157fe5b8091505b5092915050565b600082821115610be857fe5b508082035b929150505600a165627a7a72305820e6e7ef4ebd80d214f3d4beba112420e3e2450c5d8be0dffa0858d8b870a7f3a10029
Deployed Bytecode
0x606060405236156100e35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100e8578063095ea7b31461017357806318160ddd1461019757806323b872dd146101bc578063313ce567146101e65780633f4ba83a1461020f57806354fd4d50146102365780635c975abb146102c15780636678887f146102e857806370a08231146103175780638456cb59146103485780638da5cb5b1461036f57806395d89b411461039e578063a9059cbb14610429578063dd62ed3e1461044d578063f2fde38b14610484575b600080fd5b34156100f357600080fd5b6100fb6104a5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101385780820151818401525b60200161011f565b50505050905090810190601f1680156101655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017e57600080fd5b610195600160a060020a0360043516602435610543565b005b34156101a257600080fd5b6101aa61056a565b60405190815260200160405180910390f35b34156101c757600080fd5b610195600160a060020a0360043581169060243516604435610570565b005b34156101f157600080fd5b6101f96105ba565b60405160ff909116815260200160405180910390f35b341561021a57600080fd5b6102226105c3565b604051901515815260200160405180910390f35b341561024157600080fd5b6100fb61064c565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101385780820151818401525b60200161011f565b50505050905090810190601f1680156101655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102cc57600080fd5b6102226106ea565b604051901515815260200160405180910390f35b34156102f357600080fd5b6102fb6106fa565b604051600160a060020a03909116815260200160405180910390f35b341561032257600080fd5b6101aa600160a060020a0360043516610709565b60405190815260200160405180910390f35b341561035357600080fd5b610222610728565b604051901515815260200160405180910390f35b341561037a57600080fd5b6102fb6107b6565b604051600160a060020a03909116815260200160405180910390f35b34156103a957600080fd5b6100fb6107c5565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101385780820151818401525b60200161011f565b50505050905090810190601f1680156101655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561043457600080fd5b610195600160a060020a0360043516602435610863565b005b341561045857600080fd5b6101aa600160a060020a03600435811690602435166108ab565b60405190815260200160405180910390f35b341561048f57600080fd5b610195600160a060020a03600435166108d8565b005b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b505050505081565b60035460a060020a900460ff161561055a57600080fd5b6105648282610930565b5b5b5050565b60005481565b60035460a060020a900460ff161561058757600080fd5b30600160a060020a031682600160a060020a0316141515156105a857600080fd5b6105b38383836109d2565b5b5b505050565b60065460ff1681565b60035460009033600160a060020a039081169116146105e157600080fd5b60035460a060020a900460ff1615156105f957600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b5b5b90565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b505050505081565b60035460a060020a900460ff1681565b600854600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b60035460009033600160a060020a0390811691161461074657600080fd5b60035460a060020a900460ff161561075d57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15060015b5b5b90565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561053b5780601f106105105761010080835404028352916020019161053b565b820191906000526020600020905b81548152906001019060200180831161051e57829003601f168201915b505050505081565b60035460a060020a900460ff161561087a57600080fd5b30600160a060020a031682600160a060020a03161415151561089b57600080fd5b6105648282610af5565b5b5b5050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a039081169116146108f357600080fd5b600160a060020a0381161561092b576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b80158015906109635750600160a060020a0333811660009081526002602090815260408083209386168352929052205415155b1561096d57600080fd5b600160a060020a03338116600081815260026020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35b5050565b6000606060643610156109e457600080fd5b600160a060020a038086166000908152600260209081526040808320338516845282528083205493881683526001909152902054909250610a2b908463ffffffff610bc216565b600160a060020a038086166000908152600160205260408082209390935590871681522054610a60908463ffffffff610bdc16565b600160a060020a038616600090815260016020526040902055610a89828463ffffffff610bdc16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b5b5050505050565b60406044361015610b0557600080fd5b600160a060020a033316600090815260016020526040902054610b2e908363ffffffff610bdc16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610b63908363ffffffff610bc216565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b5b505050565b600082820183811015610bd157fe5b8091505b5092915050565b600082821115610be857fe5b508082035b929150505600a165627a7a72305820e6e7ef4ebd80d214f3d4beba112420e3e2450c5d8be0dffa0858d8b870a7f3a10029
Swarm Source
bzzr://e6e7ef4ebd80d214f3d4beba112420e3e2450c5d8be0dffa0858d8b870a7f3a1
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.
Add Token to MetaMask (Web3)