ETH Price: $2,458.93 (-4.35%)

Token

ETHBOLD (ETBOLD)
 

Overview

Max Total Supply

90,000,000 ETBOLD

Holders

1,113

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2 ETBOLD

Value
$0.00
0x44a7B57a82Ccc6F92fEd5818FEE0475A47eDDf00
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ETHBOLD

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-08-17
*/

pragma solidity ^0.4.11;
 /**
***INFORMASI***
Editor : firstteacher
Website : https://Ethbold.com
*/
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);
}

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);
}

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 BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;


  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // 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;
  }

  function balanceOf(address _owner) public constant returns (uint256 balance) {
    return balances[_owner];
  }

}

contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;

  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }
 
  function increaseApproval (address _spender, uint _addedValue) public 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) public 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 ETHBOLD is StandardToken
{
    string public constant name = "ETHBOLD"; // nama token yang kalian ingin
    string public constant symbol = "ETBOLD"; // simbol token
    uint8 public constant decimals = 18; // desimal unit
    
    function ETHBOLD() public 
    {
        totalSupply = 90000000 * 10 ** uint256(decimals); // jumlah supply
        balances[msg.sender] = totalSupply;
        Transfer(0x0, msg.sender, totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"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":"uint8"}],"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":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"},{"inputs":[],"payable":false,"type":"constructor"},{"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"}]

6060604052341561000c57fe5b5b6a4a723dc6b40b8a9a0000006000818155600160a060020a03331680825260016020908152604080842085905580519485525191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35b5b61092c8061007e6000396000f300606060405236156100ac5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ae578063095ea7b31461013e57806318160ddd1461017157806323b872dd14610193578063313ce567146101cc57806366188463146101f257806370a082311461022557806395d89b4114610253578063a9059cbb146102e3578063d73dd62314610316578063dd62ed3e14610349575bfe5b34156100b657fe5b6100be61037d565b604080516020808252835181830152835191928392908301918501908083838215610104575b80518252602083111561010457601f1990920191602091820191016100e4565b505050905090810190601f1680156101305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561014657fe5b61015d600160a060020a03600435166024356103b4565b604080519115158252519081900360200190f35b341561017957fe5b61018161041f565b60408051918252519081900360200190f35b341561019b57fe5b61015d600160a060020a0360043581169060243516604435610425565b604080519115158252519081900360200190f35b34156101d457fe5b6101dc6105ab565b6040805160ff9092168252519081900360200190f35b34156101fa57fe5b61015d600160a060020a03600435166024356105b0565b604080519115158252519081900360200190f35b341561022d57fe5b610181600160a060020a03600435166106ab565b60408051918252519081900360200190f35b341561025b57fe5b6100be6106ca565b604080516020808252835181830152835191928392908301918501908083838215610104575b80518252602083111561010457601f1990920191602091820191016100e4565b505050905090810190601f1680156101305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102eb57fe5b61015d600160a060020a0360043516602435610701565b604080519115158252519081900360200190f35b341561031e57fe5b61015d600160a060020a03600435166024356107ff565b604080519115158252519081900360200190f35b341561035157fe5b610181600160a060020a03600435811690602435166108a2565b60408051918252519081900360200190f35b60408051808201909152600781527f455448424f4c4400000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b6000600160a060020a038316151561043d5760006000fd5b600160a060020a0384166000908152600160205260409020548211156104635760006000fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156104975760006000fd5b600160a060020a0384166000908152600160205260409020546104c0908363ffffffff6108cf16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546104f5908363ffffffff6108e616565b600160a060020a0380851660009081526001602090815260408083209490945587831682526002815283822033909316825291909152205461053d908363ffffffff6108cf16565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060015b9392505050565b601281565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561060d57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610644565b61061d818463ffffffff6108cf16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60408051808201909152600681527f4554424f4c440000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156107195760006000fd5b600160a060020a03331660009081526001602052604090205482111561073f5760006000fd5b600160a060020a033316600090815260016020526040902054610768908363ffffffff6108cf16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461079d908363ffffffff6108e616565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610837908363ffffffff6108e616565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000828211156108db57fe5b508082035b92915050565b6000828201838110156108f557fe5b8091505b50929150505600a165627a7a72305820e61d3aad1236176ca82f580032c413c5f2e1ded9ce9ca3fbd9bedeaa92e5328b0029

Deployed Bytecode

0x606060405236156100ac5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ae578063095ea7b31461013e57806318160ddd1461017157806323b872dd14610193578063313ce567146101cc57806366188463146101f257806370a082311461022557806395d89b4114610253578063a9059cbb146102e3578063d73dd62314610316578063dd62ed3e14610349575bfe5b34156100b657fe5b6100be61037d565b604080516020808252835181830152835191928392908301918501908083838215610104575b80518252602083111561010457601f1990920191602091820191016100e4565b505050905090810190601f1680156101305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561014657fe5b61015d600160a060020a03600435166024356103b4565b604080519115158252519081900360200190f35b341561017957fe5b61018161041f565b60408051918252519081900360200190f35b341561019b57fe5b61015d600160a060020a0360043581169060243516604435610425565b604080519115158252519081900360200190f35b34156101d457fe5b6101dc6105ab565b6040805160ff9092168252519081900360200190f35b34156101fa57fe5b61015d600160a060020a03600435166024356105b0565b604080519115158252519081900360200190f35b341561022d57fe5b610181600160a060020a03600435166106ab565b60408051918252519081900360200190f35b341561025b57fe5b6100be6106ca565b604080516020808252835181830152835191928392908301918501908083838215610104575b80518252602083111561010457601f1990920191602091820191016100e4565b505050905090810190601f1680156101305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102eb57fe5b61015d600160a060020a0360043516602435610701565b604080519115158252519081900360200190f35b341561031e57fe5b61015d600160a060020a03600435166024356107ff565b604080519115158252519081900360200190f35b341561035157fe5b610181600160a060020a03600435811690602435166108a2565b60408051918252519081900360200190f35b60408051808201909152600781527f455448424f4c4400000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b6000600160a060020a038316151561043d5760006000fd5b600160a060020a0384166000908152600160205260409020548211156104635760006000fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156104975760006000fd5b600160a060020a0384166000908152600160205260409020546104c0908363ffffffff6108cf16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546104f5908363ffffffff6108e616565b600160a060020a0380851660009081526001602090815260408083209490945587831682526002815283822033909316825291909152205461053d908363ffffffff6108cf16565b600160a060020a038086166000818152600260209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060015b9392505050565b601281565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561060d57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610644565b61061d818463ffffffff6108cf16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3600191505b5092915050565b600160a060020a0381166000908152600160205260409020545b919050565b60408051808201909152600681527f4554424f4c440000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156107195760006000fd5b600160a060020a03331660009081526001602052604090205482111561073f5760006000fd5b600160a060020a033316600090815260016020526040902054610768908363ffffffff6108cf16565b600160a060020a03338116600090815260016020526040808220939093559085168152205461079d908363ffffffff6108e616565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060015b92915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610837908363ffffffff6108e616565b600160a060020a0333811660008181526002602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000828211156108db57fe5b508082035b92915050565b6000828201838110156108f557fe5b8091505b50929150505600a165627a7a72305820e61d3aad1236176ca82f580032c413c5f2e1ded9ce9ca3fbd9bedeaa92e5328b0029

Deployed Bytecode Sourcemap

3736:460:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3778:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2693:187:0;;;;;;;;-1:-1:-1;;;;;2693:187:0;;;;;;;;;;;;;;;;;;;;;;;;;132:26;;;;;;;;;;;;;;;;;;;;;;;;;;2238:449;;;;;;;;-1:-1:-1;;;;;2238:449:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3919:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3311:416;;;;;;;;-1:-1:-1;;;;;3311:416:0;;;;;;;;;;;;;;;;;;;;;;;;;1992:113;;;;;;;;-1:-1:-1;;;;;1992:113:0;;;;;;;;;;;;;;;;;;;;;3856:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1598:388:0;;;;;;;;-1:-1:-1;;;;;1598:388:0;;;;;;;;;;;;;;;;;;;;;;;;;3035:270;;;;;;;;-1:-1:-1;;;;;3035:270:0;;;;;;;;;;;;;;;;;;;;;;;;;2886:142;;;;;;;;-1:-1:-1;;;;;2886:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;3778:39;;;;;;;;;;;;;;;;;;;:::o;2693:187::-;-1:-1:-1;;;;;2781:10:0;2773:19;;2760:4;2773:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:38;;;2818;;;;;;;2760:4;;2773:29;:19;2818:38;;;;;;;;;;;-1:-1:-1;2870:4:0;2693:187;;;;;:::o;132:26::-;;;;:::o;2238:449::-;2320:4;-1:-1:-1;;;;;2341:17:0;;;;2333:26;;;;;;-1:-1:-1;;;;;2384:15:0;;;;;;:8;:15;;;;;;2374:25;;;2366:34;;;;;;-1:-1:-1;;;;;2425:14:0;;;;;;;:7;:14;;;;;;;;2440:10;2425:26;;;;;;;;;;2415:36;;;2407:45;;;;;;-1:-1:-1;;;;;2479:15:0;;;;;;:8;:15;;;;;;:27;;2499:6;2479:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;2461:15:0;;;;;;;:8;:15;;;;;;:45;;;;2529:13;;;;;;;:25;;2547:6;2529:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2513:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;2590:14;;;;;:7;:14;;;;;2605:10;2590:26;;;;;;;;;;;:38;;2621:6;2590:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;2561:14:0;;;;;;;:7;:14;;;;;;;;2576:10;2561:26;;;;;;;;;;:67;;;;2635:28;;;;;;;;;;;2561:14;;2635:28;;;;;;;;;;;-1:-1:-1;2677:4:0;2238:449;;;;;;:::o;3919:35::-;3952:2;3919:35;:::o;3311:416::-;-1:-1:-1;;;;;3440:10:0;3432:19;;3395:12;3432:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;3472:27;;;3468:168;;;-1:-1:-1;;;;;3518:10:0;3510:19;;3542:1;3510:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;:33;3468:168;;;3598:30;:8;3611:16;3598:30;:12;:30;:::i;:::-;-1:-1:-1;;;;;3574:10:0;3566:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;:62;3468:168;-1:-1:-1;;;;;3651:10:0;3642:61;;3673:19;;;;:7;:19;;;;;;;;3642:61;;;3673:29;;;;;;;;;;;3642:61;;;;;;;;;;;;;;;;;3717:4;3710:11;;3311:416;;;;;;:::o;1992:113::-;-1:-1:-1;;;;;2083:16:0;;2052:15;2083:16;;;:8;:16;;;;;;1992:113;;;;:::o;3856:40::-;;;;;;;;;;;;;;;;;;;:::o;1598:388::-;1661:4;-1:-1:-1;;;;;1682:17:0;;;;1674:26;;;;;;-1:-1:-1;;;;;1734:10:0;1725:20;;;;;:8;:20;;;;;;1715:30;;;1707:39;;;;;;-1:-1:-1;;;;;1851:10:0;1842:20;;;;;:8;:20;;;;;;:32;;1867:6;1842:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;1828:10:0;1819:20;;;;;;:8;:20;;;;;;:55;;;;1897:13;;;;;;;:25;;1915:6;1897:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;1881:13:0;;;;;;;:8;:13;;;;;;;;;:41;;;;1929:33;;;;;;;1881:13;;1938:10;1929:33;;;;;;;;;;;;;-1:-1:-1;1976:4:0;1598:388;;;;;:::o;3035:270::-;-1:-1:-1;;;;;3175:10:0;3167:19;;3114:12;3167:19;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;:46;;3201:11;3167:46;:33;:46;:::i;:::-;-1:-1:-1;;;;;3143:10:0;3135:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:78;;;3220:61;;;;;;;3135:29;;:19;;3220:61;;;;;;;;;;-1:-1:-1;3295:4:0;3035:270;;;;;:::o;2886:142::-;-1:-1:-1;;;;;2997:15:0;;;2964:17;2997:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;2886:142;;;;;:::o;1214:117::-;1276:7;1299:6;;;;1292:14;;;;-1:-1:-1;1320:5:0;;;1214:117;;;;;:::o;1337:137::-;1399:7;1427:5;;;1446:6;;;;1439:14;;;;1467:1;1460:8;;1337:137;;;;;;:::o

Swarm Source

bzzr://e61d3aad1236176ca82f580032c413c5f2e1ded9ce9ca3fbd9bedeaa92e5328b
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.