ERC-20
Overview
Max Total Supply
1,000,000,000 TCP
Holders
1,227
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
78,844.676939 TCPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TCPToken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-08-27 */ pragma solidity ^0.4.24; // produced by the Solididy File Flattener (c) David Appleton 2018 // contact : [email protected] // released under Apache 2.0 licence interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts 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; } /** * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two numbers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @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 view returns (uint256) { return _allowed[owner][spender]; } /** * @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) { _transfer(msg.sender, 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) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); 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(value <= _allowed[from][msg.sender]); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a 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 * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance( address spender, uint256 addedValue ) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].add(addedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(value <= _balances[from]); require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != 0); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != 0); require(value <= _balances[account]); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { require(value <= _allowed[account][msg.sender]); // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted, // this function needs to emit an event with the updated approval. _allowed[account][msg.sender] = _allowed[account][msg.sender].sub( value); _burn(account, value); } } contract TCPToken is ERC20 { string public constant name = "TCP"; string public constant symbol = "TCP"; uint8 public constant decimals = 8; uint256 public constant INITIAL_SUPPLY = 1000000000 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() public { _mint(msg.sender, INITIAL_SUPPLY); } }
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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","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":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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
608060405234801561001057600080fd5b5061002c3367016345785d8a0000640100000000610031810204565b610102565b600160a060020a038216151561004657600080fd5b600254610060908264010000000061068e6100e982021704565b600255600160a060020a038216600090815260208190526040902054610093908264010000000061068e6100e982021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156100fb57600080fd5b9392505050565b6106d3806101116000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063395093511461021157806370a082311461023557806395d89b41146100be578063a457c2d714610256578063a9059cbb1461027a578063dd62ed3e1461029e575b600080fd5b3480156100ca57600080fd5b506100d36102c5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a03600435166024356102fc565b604080519115158252519081900360200190f35b34801561018c57600080fd5b5061019561037a565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a0360043581169060243516604435610380565b3480156101dd57600080fd5b5061019561041d565b3480156101f257600080fd5b506101fb610429565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a036004351660243561042e565b34801561024157600080fd5b50610195600160a060020a03600435166104de565b34801561026257600080fd5b5061016c600160a060020a03600435166024356104f9565b34801561028657600080fd5b5061016c600160a060020a0360043516602435610544565b3480156102aa57600080fd5b50610195600160a060020a036004358116906024351661055a565b60408051808201909152600381527f5443500000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561031357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a03831660009081526001602090815260408083203384529091528120548211156103b057600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020546103e4908363ffffffff61058516565b600160a060020a038516600090815260016020908152604080832033845290915290205561041384848461059c565b5060019392505050565b67016345785d8a000081565b600881565b6000600160a060020a038316151561044557600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610479908363ffffffff61068e16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561051057600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610479908363ffffffff61058516565b600061055133848461059c565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000808383111561059557600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156105c157600080fd5b600160a060020a03821615156105d657600080fd5b600160a060020a0383166000908152602081905260409020546105ff908263ffffffff61058516565b600160a060020a038085166000908152602081905260408082209390935590841681522054610634908263ffffffff61068e16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106a057600080fd5b93925050505600a165627a7a72305820356cf2a4d4dace0643b63f28f769be1de27660deafd8fa7503bb39811969319d0029
Deployed Bytecode
0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063395093511461021157806370a082311461023557806395d89b41146100be578063a457c2d714610256578063a9059cbb1461027a578063dd62ed3e1461029e575b600080fd5b3480156100ca57600080fd5b506100d36102c5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a03600435166024356102fc565b604080519115158252519081900360200190f35b34801561018c57600080fd5b5061019561037a565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a0360043581169060243516604435610380565b3480156101dd57600080fd5b5061019561041d565b3480156101f257600080fd5b506101fb610429565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a036004351660243561042e565b34801561024157600080fd5b50610195600160a060020a03600435166104de565b34801561026257600080fd5b5061016c600160a060020a03600435166024356104f9565b34801561028657600080fd5b5061016c600160a060020a0360043516602435610544565b3480156102aa57600080fd5b50610195600160a060020a036004358116906024351661055a565b60408051808201909152600381527f5443500000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561031357600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b600160a060020a03831660009081526001602090815260408083203384529091528120548211156103b057600080fd5b600160a060020a03841660009081526001602090815260408083203384529091529020546103e4908363ffffffff61058516565b600160a060020a038516600090815260016020908152604080832033845290915290205561041384848461059c565b5060019392505050565b67016345785d8a000081565b600881565b6000600160a060020a038316151561044557600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610479908363ffffffff61068e16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561051057600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610479908363ffffffff61058516565b600061055133848461059c565b50600192915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000808383111561059557600080fd5b5050900390565b600160a060020a0383166000908152602081905260409020548111156105c157600080fd5b600160a060020a03821615156105d657600080fd5b600160a060020a0383166000908152602081905260409020546105ff908263ffffffff61058516565b600160a060020a038085166000908152602081905260408082209390935590841681522054610634908263ffffffff61068e16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106a057600080fd5b93925050505600a165627a7a72305820356cf2a4d4dace0643b63f28f769be1de27660deafd8fa7503bb39811969319d0029
Deployed Bytecode Sourcemap
9931:398:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9965:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9965:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9965:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4854:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4854:244:0;-1:-1:-1;;;;;4854:244:0;;;;;;;;;;;;;;;;;;;;;;;;;2955:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2955:91:0;;;;;;;;;;;;;;;;;;;;5392:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5392:343:0;-1:-1:-1;;;;;5392:343:0;;;;;;;;;;;;10088:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10088:79:0;;;;10047:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10047:34:0;;;;;;;;;;;;;;;;;;;;;;;6217:387;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6217:387:0;-1:-1:-1;;;;;6217:387:0;;;;;;;3262:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3262:106:0;-1:-1:-1;;;;;3262:106:0;;;;;7091:397;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7091:397:0;-1:-1:-1;;;;;7091:397:0;;;;;;;4067:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4067:140:0;-1:-1:-1;;;;;4067:140:0;;;;;;;3707:189;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3707:189:0;-1:-1:-1;;;;;3707:189:0;;;;;;;;;;9965:35;;;;;;;;;;;;;;;;;;;:::o;4854:244::-;4919:4;-1:-1:-1;;;;;4944:21:0;;;;4936:30;;;;;;4988:10;4979:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;4979:29:0;;;;;;;;;;;;:37;;;5032:36;;;;;;;4979:29;;4988:10;5032:36;;;;;;;;;;;-1:-1:-1;5086:4:0;4854:244;;;;:::o;2955:91::-;3026:12;;2955:91;:::o;5392:343::-;-1:-1:-1;;;;;5562:14:0;;5523:4;5562:14;;;:8;:14;;;;;;;;5577:10;5562:26;;;;;;;;5553:35;;;5545:44;;;;;;-1:-1:-1;;;;;5631:14:0;;;;;;:8;:14;;;;;;;;5646:10;5631:26;;;;;;;;:37;;5662:5;5631:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5602:14:0;;;;;;:8;:14;;;;;;;;5617:10;5602:26;;;;;;;:66;5679:26;5611:4;5695:2;5699:5;5679:9;:26::i;:::-;-1:-1:-1;5723:4:0;5392:343;;;;;:::o;10088:79::-;10129:38;10088:79;:::o;10047:34::-;10080:1;10047:34;:::o;6217:387::-;6340:4;-1:-1:-1;;;;;6370:21:0;;;;6362:30;;;;;;6461:10;6452:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6452:29:0;;;;;;;;;;:45;;6486:10;6452:45;:33;:45;:::i;:::-;6414:10;6405:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6405:29:0;;;;;;;;;;;;:93;;;6514:60;;;;;;6405:29;;6514:60;;;;;;;;;;;-1:-1:-1;6592:4:0;6217:387;;;;:::o;3262:106::-;-1:-1:-1;;;;;3344:16:0;3317:7;3344:16;;;;;;;;;;;;3262:106::o;7091:397::-;7219:4;-1:-1:-1;;;;;7249:21:0;;;;7241:30;;;;;;7340:10;7331:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7331:29:0;;;;;;;;;;:50;;7365:15;7331:50;:33;:50;:::i;4067:140::-;4128:4;4145:32;4155:10;4167:2;4171:5;4145:9;:32::i;:::-;-1:-1:-1;4195:4:0;4067:140;;;;:::o;3707:189::-;-1:-1:-1;;;;;3864:15:0;;;3832:7;3864:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3707:189::o;2001:150::-;2059:7;;2087:6;;;;2079:15;;;;;;-1:-1:-1;;2117:5:0;;;2001:150::o;7710:306::-;-1:-1:-1;;;;;7807:15:0;;:9;:15;;;;;;;;;;;7798:24;;;7790:33;;;;;;-1:-1:-1;;;;;7842:16:0;;;;7834:25;;;;;;-1:-1:-1;;;;;7890:15:0;;:9;:15;;;;;;;;;;;:26;;7910:5;7890:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7872:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7943:13;;;;;;;:24;;7961:5;7943:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7927:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7983:25;;;;;;;7927:13;;7983:25;;;;;;;;;;;;;7710:306;;;:::o;2227:150::-;2285:7;2317:5;;;2341:6;;;;2333:15;;;;;;2368:1;2227:150;-1:-1:-1;;;2227:150:0:o
Swarm Source
bzzr://356cf2a4d4dace0643b63f28f769be1de27660deafd8fa7503bb39811969319d
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.