ETH Price: $3,002.44 (+1.23%)
Gas: 5 Gwei

Token

XFIN Token (XFIN)
 

Overview

Max Total Supply

500,000,000 XFIN

Holders

42

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
XFINToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-04-17
*/

pragma solidity ^0.4.19;

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }

contract XFINToken {
    // Public variables of the token
    string public name = "XFIN Token";
    string public symbol = "XFIN";
    uint256 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply = 5*10000*10000*10**decimals;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);

    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function XFINToken() public {
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            return true;
        }
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

60c0604052600a60808190527f5846494e20546f6b656e0000000000000000000000000000000000000000000060a090815261003e91600091906100be565b506040805180820190915260048082527f5846494e000000000000000000000000000000000000000000000000000000006020909201918252610083916001916100be565b5060126002556b019d971e4fe8401e740000006003553480156100a557600080fd5b5060035433600090815260046020526040902055610159565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100ff57805160ff191683800117855561012c565b8280016001018555821561012c579182015b8281111561012c578251825591602001919060010190610111565b5061013892915061013c565b5090565b61015691905b808211156101385760008155600101610142565b90565b610871806101686000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806342966c68146101e657806370a08231146101fe57806379cc67901461021f57806395d89b4114610243578063a9059cbb14610258578063cae9ca511461027e578063dd62ed3e146102e7575b600080fd5b3480156100ca57600080fd5b506100d361030e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a036004351660243561039c565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103c9565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103cf565b3480156101dd57600080fd5b5061019561043e565b3480156101f257600080fd5b5061016c600435610444565b34801561020a57600080fd5b50610195600160a060020a03600435166104bc565b34801561022b57600080fd5b5061016c600160a060020a03600435166024356104ce565b34801561024f57600080fd5b506100d361059f565b34801561026457600080fd5b5061027c600160a060020a03600435166024356105f9565b005b34801561028a57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261016c948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106089650505050505050565b3480156102f357600080fd5b50610195600160a060020a0360043581169060243516610721565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b820191906000526020600020905b81548152906001019060200180831161037757829003601f168201915b505050505081565b336000908152600560209081526040808320600160a060020a039590951683529390529190912055600190565b60035481565b600160a060020a03831660009081526005602090815260408083203384529091528120548211156103ff57600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290208054839003905561043484848461073e565b5060019392505050565b60025481565b3360009081526004602052604081205482111561046057600080fd5b3360008181526004602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60046020526000908152604090205481565b600160a060020a0382166000908152600460205260408120548211156104f357600080fd5b600160a060020a038316600090815260056020908152604080832033845290915290205482111561052357600080fd5b600160a060020a0383166000818152600460209081526040808320805487900390556005825280832033845282529182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b61060433838361073e565b5050565b600083610615818561039c565b15610719576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156106ad578181015183820152602001610695565b50505050905090810190601f1680156106da5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156106fc57600080fd5b505af1158015610710573d6000803e3d6000fd5b50505050600191505b509392505050565b600560209081526000928352604080842090915290825290205481565b6000600160a060020a038316151561075557600080fd5b600160a060020a03841660009081526004602052604090205482111561077a57600080fd5b600160a060020a038316600090815260046020526040902054828101116107a057600080fd5b50600160a060020a038083166000818152600460209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526004602052604080822054928716825290205401811461083f57fe5b505050505600a165627a7a72305820602356463ce6035a3525d73a4d503600cf53ddecc33e5ca7571c3afd5d75baec0029

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806342966c68146101e657806370a08231146101fe57806379cc67901461021f57806395d89b4114610243578063a9059cbb14610258578063cae9ca511461027e578063dd62ed3e146102e7575b600080fd5b3480156100ca57600080fd5b506100d361030e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a036004351660243561039c565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103c9565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103cf565b3480156101dd57600080fd5b5061019561043e565b3480156101f257600080fd5b5061016c600435610444565b34801561020a57600080fd5b50610195600160a060020a03600435166104bc565b34801561022b57600080fd5b5061016c600160a060020a03600435166024356104ce565b34801561024f57600080fd5b506100d361059f565b34801561026457600080fd5b5061027c600160a060020a03600435166024356105f9565b005b34801561028a57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261016c948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106089650505050505050565b3480156102f357600080fd5b50610195600160a060020a0360043581169060243516610721565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b820191906000526020600020905b81548152906001019060200180831161037757829003601f168201915b505050505081565b336000908152600560209081526040808320600160a060020a039590951683529390529190912055600190565b60035481565b600160a060020a03831660009081526005602090815260408083203384529091528120548211156103ff57600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290208054839003905561043484848461073e565b5060019392505050565b60025481565b3360009081526004602052604081205482111561046057600080fd5b3360008181526004602090815260409182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a2506001919050565b60046020526000908152604090205481565b600160a060020a0382166000908152600460205260408120548211156104f357600080fd5b600160a060020a038316600090815260056020908152604080832033845290915290205482111561052357600080fd5b600160a060020a0383166000818152600460209081526040808320805487900390556005825280832033845282529182902080548690039055600380548690039055815185815291517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59281900390910190a250600192915050565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103945780601f1061036957610100808354040283529160200191610394565b61060433838361073e565b5050565b600083610615818561039c565b15610719576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b838110156106ad578181015183820152602001610695565b50505050905090810190601f1680156106da5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156106fc57600080fd5b505af1158015610710573d6000803e3d6000fd5b50505050600191505b509392505050565b600560209081526000928352604080842090915290825290205481565b6000600160a060020a038316151561075557600080fd5b600160a060020a03841660009081526004602052604090205482111561077a57600080fd5b600160a060020a038316600090815260046020526040902054828101116107a057600080fd5b50600160a060020a038083166000818152600460209081526040808320805495891680855282852080548981039091559486905281548801909155815187815291519390950194927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3600160a060020a0380841660009081526004602052604080822054928716825290205401811461083f57fe5b505050505600a165627a7a72305820602356463ce6035a3525d73a4d503600cf53ddecc33e5ca7571c3afd5d75baec0029

Deployed Bytecode Sourcemap

158:5456:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;222:33: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;222:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3281:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3281:171:0;-1:-1:-1;;;;;3281:171:0;;;;;;;;;;;;;;;;;;;;;;;;;406:55;;8:9:-1;5:2;;;30:1;27;20:12;5:2;406:55:0;;;;;;;;;;;;;;;;;;;;2716:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2716:296:0;-1:-1:-1;;;;;2716:296:0;;;;;;;;;;;;298:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;298:28:0;;;;4373:369;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4373:369:0;;;;;518:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;518:45:0;-1:-1:-1;;;;;518:45:0;;;;;5005:606;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5005:606:0;-1:-1:-1;;;;;5005:606:0;;;;;;;262:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;262:29:0;;;;2329:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2329:107:0;-1:-1:-1;;;;;2329:107:0;;;;;;;;;3851:347;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3851:347:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3851:347:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3851:347:0;;-1:-1:-1;3851:347:0;;-1:-1:-1;;;;;;;3851:347:0;570:66;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;570:66:0;-1:-1:-1;;;;;570:66:0;;;;;;;;;;222:33;;;;;;;;;;;;;;;-1:-1:-1;;222:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3281:171::-;3392:10;3357:12;3382:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;3382:31:0;;;;;;;;;;;;;:40;3440:4;;3281:171::o;406:55::-;;;;:::o;2716:296::-;-1:-1:-1;;;;;2841:16:0;;2798:12;2841:16;;;:9;:16;;;;;;;;2858:10;2841:28;;;;;;;;2831:38;;;2823:47;;;;;;-1:-1:-1;;;;;2904:16:0;;;;;;:9;:16;;;;;;;;2921:10;2904:28;;;;;;;:38;;;;;;;2953:29;2914:5;2970:3;2936:6;2953:9;:29::i;:::-;-1:-1:-1;3000:4:0;2716:296;;;;;:::o;298:28::-;;;;:::o;4373:369::-;4462:10;4419:12;4452:21;;;:9;:21;;;;;;:31;-1:-1:-1;4452:31:0;4444:40;;;;;;4541:10;4531:21;;;;:9;:21;;;;;;;;;:31;;;;;;;4612:11;:21;;;;;;;4688:24;;;;;;;;;;;;;;;;;-1:-1:-1;4730:4:0;4373:369;;;:::o;518:45::-;;;;;;;;;;;;;:::o;5005:606::-;-1:-1:-1;;;;;5103:16:0;;5070:12;5103:16;;;:9;:16;;;;;;:26;-1:-1:-1;5103:26:0;5095:35;;;;;;-1:-1:-1;;;;;5217:16:0;;;;;;:9;:16;;;;;;;;5234:10;5217:28;;;;;;;;5207:38;;;5199:47;;;;;;-1:-1:-1;;;;;5279:16:0;;;;;;:9;:16;;;;;;;;:26;;;;;;;5378:9;:16;;;;;5395:10;5378:28;;;;;;;;:38;;;;;;;5479:11;:21;;;;;;;5562:19;;;;;;;;;;;;;;;;;-1:-1:-1;5599:4:0;5005:606;;;;:::o;262:29::-;;;;;;;;;;;;;;;-1:-1:-1;;262:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2329:107;2394:34;2404:10;2416:3;2421:6;2394:9;:34::i;:::-;2329:107;;:::o;3851:347::-;3961:12;4026:8;4050:25;4026:8;4068:6;4050:7;:25::i;:::-;4046:145;;;4092:61;;;;;4116:10;4092:61;;;;;;;;;;;;4136:4;4092:61;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4092:23:0;;;;;4116:10;4128:6;;4136:4;4142:10;;4092:61;;;;;;;;;;;;;;;;-1:-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4092:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4092:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4092:61:0;;;;4175:4;4168:11;;4046:145;3851:347;;;;;;:::o;570:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;1281:837::-;1689:21;-1:-1:-1;;;;;1433:10:0;;;;1425:19;;;;;;-1:-1:-1;;;;;1506:16:0;;;;;;:9;:16;;;;;;:26;-1:-1:-1;1506:26:0;1498:35;;;;;;-1:-1:-1;;;;;1610:14:0;;;;;;:9;:14;;;;;;1584:23;;;:40;1576:49;;;;;;-1:-1:-1;;;;;;1732:14:0;;;;;;;:9;:14;;;;;;;;;;1713:16;;;;;;;;;;;1794:26;;;;;;1873:14;;;;:24;;;;;;;1908:28;;;;;;;1713:33;;;;;:16;1908:28;;;;;;;;;;;-1:-1:-1;;;;;2075:14:0;;;;;;;:9;:14;;;;;;;2056:16;;;;;;;;:33;:53;;2049:61;;;;1281:837;;;;:::o

Swarm Source

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