ETH Price: $3,988.26 (+0.77%)

Token

ERC-20: SociBit (SOB)
 

Overview

Max Total Supply

300,000,000 SOB

Holders

116

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000 SOB

Value
$0.00
0x51fc59cdd008bbbfbd3dfadd869b0e83ac0bf09f
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:
SociBit

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-07-27
*/

pragma solidity ^0.4.4;

library SafeMath {
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

 function div(uint256 a, uint256 b) internal pure 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 pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}

contract TokenERC20 {

    /// @return total amount of tokens
    function totalSupply() constant returns (uint256 supply) {}

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant returns (uint256 balance) {}

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) returns (bool success) {}

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {}

    /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of wei to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) returns (bool success) {}

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {}

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);

}

contract StandardToken is TokenERC20 {
    using SafeMath for uint256;
    function transfer(address _to, uint256 _value) returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] =balances[msg.sender].sub(_value);
            balances[_to] = balances[_to].add(_value);
            Transfer(msg.sender, _to, _value);
            return true;
        } else { return false; }
    }

    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
            balances[_to] =balances[_to].add(_value);
            balances[_from]=balances[_from].sub(_value) ;
            allowed[_from][msg.sender] =allowed[_from][msg.sender].sub(_value);
            Transfer(_from, _to, _value);
            return true;
        } else { return false; }
    }

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

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

    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    uint256 public totalSupply;
}

contract SociBit is owned,StandardToken { // CHANGE THIS. Update the contract name.
    
    /* Public variables of the token */

    /*
    NOTE:
    The following variables are OPTIONAL vanities. One does not have to include them.
    They allow one to customise the token contract & in no way influences the core functionality.
    Some wallets/interfaces might not even bother to look at this information.
    */
    string public name;                   // Token Name
    uint8 public decimals;                // How many decimals to show. To be standard complicant keep it 18
    string public symbol;                 // An identifier: eg SBX, XPR etc..
    string public version = 'H1.0'; 
    uint256 public unitsOneEthCanBuy;     // How many units of your coin can be bought by 1 ETH?
    uint256 public totalEthInWei;         // WEI is the smallest unit of ETH (the equivalent of cent in USD or satoshi in BTC). We'll store the total ETH raised via our ICO here.  
    address public fundsWallet;           // Where should the raised ETH go?

    // This is a constructor function 
    // which means the following function name has to match the contract name declared above
    function SociBit() {
        balances[msg.sender] = 300000000000000000000000000;               // Give the creator all initial tokens. This is set to 1000 for example. If you want your initial tokens to be X and your decimal is 5, set this value to X * 100000. (CHANGE THIS)
        totalSupply = 300000000000000000000000000;                        // Update total supply (1000 for example) (CHANGE THIS)
        name = "SociBit";                                   // Set the name for display purposes (CHANGE THIS)
        decimals = 18;                                               // Amount of decimals for display purposes (CHANGE THIS)
        symbol = "SOB";                                             // Set the symbol for display purposes (CHANGE THIS)
        unitsOneEthCanBuy = 10000000;                                      // Set the price of your token for the ICO (CHANGE THIS)
        fundsWallet = msg.sender;                                    // The owner of the contract gets ETH
    }

    function() payable{
        totalEthInWei = totalEthInWei.add(msg.value);
        uint256 amount = msg.value * unitsOneEthCanBuy;
        if (balances[fundsWallet] < amount) {
            return;
        }

        balances[fundsWallet] = balances[fundsWallet].sub(amount);
        balances[msg.sender] = balances[msg.sender].add(amount);

        Transfer(fundsWallet, msg.sender, amount); // Broadcast a message to the blockchain

        //Transfer ether to fundsWallet
        fundsWallet.transfer(msg.value);                               
    }

    /* Approves and then calls the receiving contract */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        Approval(msg.sender, _spender, _value);

        //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
        //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
        //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
        if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; }
        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":true,"inputs":[],"name":"fundsWallet","outputs":[{"name":"","type":"address"}],"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":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"unitsOneEthCanBuy","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthInWei","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"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":"_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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"}]

60c0604052600460808190527f48312e300000000000000000000000000000000000000000000000000000000060a090815261003e9160079190610134565b5034801561004b57600080fd5b5060008054600160a060020a0319163390811782558152600160209081526040918290206af8277896582678ac00000090819055600355815180830190925260078083527f536f636942697400000000000000000000000000000000000000000000000000929091019182526100c391600491610134565b506005805460ff191660121790556040805180820190915260038082527f534f420000000000000000000000000000000000000000000000000000000000602090920191825261011591600691610134565b5062989680600855600a8054600160a060020a031916331790556101cf565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061017557805160ff19168380011785556101a2565b828001600101855582156101a2579182015b828111156101a2578251825591602001919060010190610187565b506101ae9291506101b2565b5090565b6101cc91905b808211156101ae57600081556001016101b8565b90565b610b83806101de6000396000f3006080604052600436106100cc5763ffffffff60e060020a60003504166306fdde03811461020b578063095ea7b31461029557806318160ddd146102cd5780632194f3a2146102f457806323b872dd14610325578063313ce5671461034f57806354fd4d501461037a57806365f2bc2e1461038f57806370a08231146103a45780638da5cb5b146103c5578063933ba413146103da57806395d89b41146103ef578063a9059cbb14610404578063cae9ca5114610428578063dd62ed3e14610491578063f2fde38b146104b8575b6009546000906100e2903463ffffffff6104db16565b60095550600854600a54600160a060020a0316600090815260016020526040902054349091029081111561011557610208565b600a54600160a060020a0316600090815260016020526040902054610140908263ffffffff6104f116565b600a54600160a060020a0316600090815260016020526040808220929092553381522054610174908263ffffffff6104db16565b3360008181526001602090815260409182902093909355600a54815185815291519293600160a060020a03909116927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600a54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610206573d6000803e3d6000fd5b505b50005b34801561021757600080fd5b50610220610508565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025a578181015183820152602001610242565b50505050905090810190601f1680156102875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a157600080fd5b506102b9600160a060020a0360043516602435610596565b604080519115158252519081900360200190f35b3480156102d957600080fd5b506102e26105fc565b60408051918252519081900360200190f35b34801561030057600080fd5b50610309610602565b60408051600160a060020a039092168252519081900360200190f35b34801561033157600080fd5b506102b9600160a060020a0360043581169060243516604435610611565b34801561035b57600080fd5b5061036461077b565b6040805160ff9092168252519081900360200190f35b34801561038657600080fd5b50610220610784565b34801561039b57600080fd5b506102e26107df565b3480156103b057600080fd5b506102e2600160a060020a03600435166107e5565b3480156103d157600080fd5b50610309610800565b3480156103e657600080fd5b506102e261080f565b3480156103fb57600080fd5b50610220610815565b34801561041057600080fd5b506102b9600160a060020a0360043516602435610870565b34801561043457600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102b9948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061094b9650505050505050565b34801561049d57600080fd5b506102e2600160a060020a0360043581169060243516610ae6565b3480156104c457600080fd5b506104d9600160a060020a0360043516610b11565b005b6000828201838110156104ea57fe5b9392505050565b6000828211156104fd57fe5b508082035b92915050565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561058e5780601f106105635761010080835404028352916020019161058e565b820191906000526020600020905b81548152906001019060200180831161057157829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035481565b600a54600160a060020a031681565b600160a060020a038316600090815260016020526040812054821180159061065c5750600160a060020a03841660009081526002602090815260408083203384529091529020548211155b80156106685750600082115b1561077157600160a060020a038316600090815260016020526040902054610696908363ffffffff6104db16565b600160a060020a0380851660009081526001602052604080822093909355908616815220546106cb908363ffffffff6104f116565b600160a060020a0385166000908152600160209081526040808320939093556002815282822033835290522054610708908363ffffffff6104f116565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060016104ea565b5060009392505050565b60055460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561058e5780601f106105635761010080835404028352916020019161058e565b60085481565b600160a060020a031660009081526001602052604090205490565b600054600160a060020a031681565b60095481565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561058e5780601f106105635761010080835404028352916020019161058e565b33600090815260016020526040812054821180159061088f5750600082115b1561094357336000908152600160205260409020546108b4908363ffffffff6104f116565b3360009081526001602052604080822092909255600160a060020a038516815220546108e6908363ffffffff6104db16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001610502565b506000610502565b336000818152600260209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610a8b578181015183820152602001610a73565b50505050905090810190601f168015610ab85780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af1925050501515610adc57600080fd5b5060019392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b2857600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058202fa02f7c5f3b62eab1b82ba2a9cc5bd0a895d28775453d09eb782a0c13adfd7a0029

Deployed Bytecode

0x6080604052600436106100cc5763ffffffff60e060020a60003504166306fdde03811461020b578063095ea7b31461029557806318160ddd146102cd5780632194f3a2146102f457806323b872dd14610325578063313ce5671461034f57806354fd4d501461037a57806365f2bc2e1461038f57806370a08231146103a45780638da5cb5b146103c5578063933ba413146103da57806395d89b41146103ef578063a9059cbb14610404578063cae9ca5114610428578063dd62ed3e14610491578063f2fde38b146104b8575b6009546000906100e2903463ffffffff6104db16565b60095550600854600a54600160a060020a0316600090815260016020526040902054349091029081111561011557610208565b600a54600160a060020a0316600090815260016020526040902054610140908263ffffffff6104f116565b600a54600160a060020a0316600090815260016020526040808220929092553381522054610174908263ffffffff6104db16565b3360008181526001602090815260409182902093909355600a54815185815291519293600160a060020a03909116927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600a54604051600160a060020a03909116903480156108fc02916000818181858888f19350505050158015610206573d6000803e3d6000fd5b505b50005b34801561021757600080fd5b50610220610508565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025a578181015183820152602001610242565b50505050905090810190601f1680156102875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a157600080fd5b506102b9600160a060020a0360043516602435610596565b604080519115158252519081900360200190f35b3480156102d957600080fd5b506102e26105fc565b60408051918252519081900360200190f35b34801561030057600080fd5b50610309610602565b60408051600160a060020a039092168252519081900360200190f35b34801561033157600080fd5b506102b9600160a060020a0360043581169060243516604435610611565b34801561035b57600080fd5b5061036461077b565b6040805160ff9092168252519081900360200190f35b34801561038657600080fd5b50610220610784565b34801561039b57600080fd5b506102e26107df565b3480156103b057600080fd5b506102e2600160a060020a03600435166107e5565b3480156103d157600080fd5b50610309610800565b3480156103e657600080fd5b506102e261080f565b3480156103fb57600080fd5b50610220610815565b34801561041057600080fd5b506102b9600160a060020a0360043516602435610870565b34801561043457600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526102b9948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061094b9650505050505050565b34801561049d57600080fd5b506102e2600160a060020a0360043581169060243516610ae6565b3480156104c457600080fd5b506104d9600160a060020a0360043516610b11565b005b6000828201838110156104ea57fe5b9392505050565b6000828211156104fd57fe5b508082035b92915050565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561058e5780601f106105635761010080835404028352916020019161058e565b820191906000526020600020905b81548152906001019060200180831161057157829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035481565b600a54600160a060020a031681565b600160a060020a038316600090815260016020526040812054821180159061065c5750600160a060020a03841660009081526002602090815260408083203384529091529020548211155b80156106685750600082115b1561077157600160a060020a038316600090815260016020526040902054610696908363ffffffff6104db16565b600160a060020a0380851660009081526001602052604080822093909355908616815220546106cb908363ffffffff6104f116565b600160a060020a0385166000908152600160209081526040808320939093556002815282822033835290522054610708908363ffffffff6104f116565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060016104ea565b5060009392505050565b60055460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561058e5780601f106105635761010080835404028352916020019161058e565b60085481565b600160a060020a031660009081526001602052604090205490565b600054600160a060020a031681565b60095481565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561058e5780601f106105635761010080835404028352916020019161058e565b33600090815260016020526040812054821180159061088f5750600082115b1561094357336000908152600160205260409020546108b4908363ffffffff6104f116565b3360009081526001602052604080822092909255600160a060020a038516815220546108e6908363ffffffff6104db16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001610502565b506000610502565b336000818152600260209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b83811015610a8b578181015183820152602001610a73565b50505050905090810190601f168015610ab85780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af1925050501515610adc57600080fd5b5060019392505050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600054600160a060020a03163314610b2857600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058202fa02f7c5f3b62eab1b82ba2a9cc5bd0a895d28775453d09eb782a0c13adfd7a0029

Swarm Source

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