ETH Price: $1,732.34 (+2.74%)
Gas: 9 Gwei
 

Overview

Max Total Supply

200,000,000 TBT

Holders

4

Total Transfers

-

Market

Price

$0.04 @ 0.000022 ETH (-0.02%)

Fully Diluted Market Cap

$7,665,251.67

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 TBT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TBT

Compiler Version
v0.5.4+commit.9549d8ff

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-04-15
*/

pragma solidity ^0.5.4;

/* taking ideas from FirstBlood token */
contract SafeMath {

    /* function assert(bool assertion) internal { */
    /*   if (!assertion) { */
    /*     throw; */
    /*   } */
    /* }      // assert no longer needed once solidity is on 0.4.10 */

    function safeAdd(uint256 x, uint256 y) internal pure returns(uint256) {
      uint256 z = x + y;
      assert((z >= x) && (z >= y));
      return z;
    }

    function safeSub(uint256 x, uint256 y) internal pure returns(uint256) {
      assert(x >= y);
      uint256 z = x - y;
      return z;
    }

    function safeMult(uint256 x, uint256 y) internal pure returns(uint256) {
      uint256 z = x * y;
      assert((x == 0)||(z/x == y));
      return z;
    }

    function safeDiv(uint256 x, uint256 y) internal pure returns(uint256) {
        require(y > 0);
        return x / y;
    }
}

contract Authorization {
    mapping(address => bool) internal authbook;
    address[] public operators;
    address public owner;
    bool public powerStatus = true;
    constructor()
        public
        payable
    {
        owner = msg.sender;
        assignOperator(msg.sender);
    }
    modifier onlyOwner
    {
        assert(msg.sender == owner);
        _;
    }
    modifier onlyOperator
    {
        assert(checkOperator(msg.sender));
        _;
    }
    modifier onlyActive
    {
        assert(powerStatus);
        _;
    }
    function powerSwitch(
        bool onOff_
    )
        public
        onlyOperator
    {
        powerStatus = onOff_;
    }
    function transferOwnership(address newOwner_)
        onlyOwner
        public
    {
        owner = newOwner_;
    }
    
    function assignOperator(address user_)
        public
        onlyOwner
    {
        if(user_ != address(0) && !authbook[user_]) {
            authbook[user_] = true;
            operators.push(user_);
        }
    }
    
    function dismissOperator(address user_)
        public
        onlyOwner
    {
        delete authbook[user_];
        for(uint i = 0; i < operators.length; i++) {
            if(operators[i] == user_) {
                operators[i] = operators[operators.length - 1];
                operators.length -= 1;
            }
        }
    }

    function checkOperator(address user_)
        public
        view
    returns(bool) {
        return authbook[user_];
    }
}

contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external; }

contract Token is Authorization {
    uint256 public totalSupply;
    function balanceOf(address _owner) public view returns (uint256 balance);
    function transfer(address _to, uint256 _value) public returns (bool success);
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
    function approve(address _spender, uint256 _value) public returns (bool success);
    function allowance(address _owner, address _spender) public view returns (uint256 remaining);
    
    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}


/*  ERC 20 token */
contract StandardToken is SafeMath, Token {
    /* Send coins */
    function transfer(address _to, uint256 _value) onlyActive public returns (bool success) {
        if (balances[msg.sender] >= _value && _value > 0) {
            balances[msg.sender] = safeSub(balances[msg.sender], _value);
            balances[_to] = safeAdd(balances[_to], _value);
            emit Transfer(msg.sender, _to, _value);
            return true;
        } else {
            return false;
        }
    }

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) onlyActive public returns (bool success) {
        if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
            balances[_to] = safeAdd(balances[_to], _value);
            balances[_from] = safeSub(balances[_from], _value);
            allowed[_from][msg.sender] = safeSub(allowed[_from][msg.sender], _value);
            emit Transfer(_from, _to, _value);
            return true;
        } else {
            return false;
        }
    }

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

    /* Allow another contract to spend some tokens in your behalf */
    function approve(address _spender, uint256 _value) public returns (bool success) {
        assert((_value == 0) || (allowed[msg.sender][_spender] == 0));
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

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

    /* This creates an array with all balances */
    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
}

contract TBT is StandardToken {

    // metadata
    string public name = "Tidebit Token";
    string public symbol = "TBT";
    uint256 public constant decimals = 18;
    string public version = "1.0";
    uint256 public tokenCreationCap =  2 * (10**8) * 10**decimals;

    // fund accounts
    address public FundAccount;      // deposit address for Owner.

    // events
    event CreateToken(address indexed _to, uint256 _value);

    // constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _tokenCreationCap,
        address _FundAccount
    ) public
    {
        name = _name;
        symbol = _symbol;
        tokenCreationCap = _tokenCreationCap * 10**decimals;
        FundAccount = _FundAccount;
        totalSupply = tokenCreationCap;
        balances[FundAccount] = tokenCreationCap;    // deposit all token to Owner.
        emit CreateToken(FundAccount, tokenCreationCap);    // logs deposit of Owner
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes memory _extraData) public
        returns (bool success) {    
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, address(this), _extraData);
            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":true,"inputs":[],"name":"FundAccount","outputs":[{"name":"","type":"address"}],"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":"tokenCreationCap","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":false,"inputs":[{"name":"user_","type":"address"}],"name":"assignOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"user_","type":"address"}],"name":"dismissOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"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":false,"inputs":[{"name":"onOff_","type":"bool"}],"name":"powerSwitch","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"user_","type":"address"}],"name":"checkOperator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"powerStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"operators","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner_","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_tokenCreationCap","type":"uint256"},{"name":"_FundAccount","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"CreateToken","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"},{"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

6002805460a060020a60ff0219167401000000000000000000000000000000000000000017905560c0604052600d60808190527f5469646562697420546f6b656e0000000000000000000000000000000000000060a090815262000067916006919062000372565b506040805180820190915260038082527f54425400000000000000000000000000000000000000000000000000000000006020909201918252620000ae9160079162000372565b506040805180820190915260038082527f312e3000000000000000000000000000000000000000000000000000000000006020909201918252620000f59160089162000372565b506aa56fa5b99019a5c80000006009553480156200011257600080fd5b506040516200124238038062001242833981018060405260808110156200013857600080fd5b8101908080516401000000008111156200015157600080fd5b820160208101848111156200016557600080fd5b81516401000000008111828201871017156200018057600080fd5b505092919060200180516401000000008111156200019d57600080fd5b82016020810184811115620001b157600080fd5b8151640100000000811182820187101715620001cc57600080fd5b5050602082015160409092015160028054600160a060020a031916339081179091559194509192506200020890640100000000620002bf810204565b83516200021d90600690602087019062000372565b5082516200023390600790602086019062000372565b50670de0b6b3a764000082026009819055600a8054600160a060020a031916600160a060020a0384811691909117808355600384905581166000908152600460209081526040918290208590559254815194855290519116927fb378e89b40ac5bbe0e2241b596fbe1adc3cf1fb7c982aa1b4560165cf264ee9392908290030190a25050505062000417565b600254600160a060020a03163314620002d457fe5b600160a060020a03811615801590620003065750600160a060020a03811660009081526020819052604090205460ff16155b156200036f57600160a060020a0381166000818152602081905260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6018054600160a060020a03191690911790555b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003b557805160ff1916838001178555620003e5565b82800160010185558215620003e5579182015b82811115620003e5578251825591602001919060010190620003c8565b50620003f3929150620003f7565b5090565b6200041491905b80821115620003f35760008155600101620003fe565b90565b610e1b80620004276000396000f3fe608060405234801561001057600080fd5b5060043610610154576000357c01000000000000000000000000000000000000000000000000000000009004806385ddf726116100d5578063dd1219fd11610099578063dd1219fd1461040d578063dd62ed3e1461042c578063de1ac2fd1461045a578063df9204b614610480578063e28d490614610488578063f2fde38b146104a557610154565b806385ddf726146102f05780638da5cb5b1461031657806395d89b411461031e578063a9059cbb14610326578063cae9ca511461035257610154565b80633eb10ab31161011c5780633eb10ab31461026e57806354fd4d50146102925780636f7920fd1461029a57806370a08231146102a257806384385c6f146102c857610154565b806306fdde0314610159578063095ea7b3146101d657806318160ddd1461021657806323b872dd14610230578063313ce56714610266575b600080fd5b6101616104cb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019b578181015183820152602001610183565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610202600480360360408110156101ec57600080fd5b50600160a060020a038135169060200135610559565b604080519115158252519081900360200190f35b61021e6105f9565b60408051918252519081900360200190f35b6102026004803603606081101561024657600080fd5b50600160a060020a038135811691602081013590911690604001356105ff565b61021e610781565b610276610786565b60408051600160a060020a039092168252519081900360200190f35b610161610795565b61021e6107f0565b61021e600480360360208110156102b857600080fd5b5035600160a060020a03166107f6565b6102ee600480360360208110156102de57600080fd5b5035600160a060020a0316610811565b005b6102ee6004803603602081101561030657600080fd5b5035600160a060020a03166108ce565b6102766109d0565b6101616109df565b6102026004803603604081101561033c57600080fd5b50600160a060020a038135169060200135610a3a565b6102026004803603606081101561036857600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561039857600080fd5b8201836020820111156103aa57600080fd5b803590602001918460018302840111640100000000831117156103cc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b32945050505050565b6102ee6004803603602081101561042357600080fd5b50351515610c50565b61021e6004803603604081101561044257600080fd5b50600160a060020a0381358116916020013516610ca1565b6102026004803603602081101561047057600080fd5b5035600160a060020a0316610ccc565b610202610cea565b6102766004803603602081101561049e57600080fd5b5035610d0b565b6102ee600480360360208110156104bb57600080fd5b5035600160a060020a0316610d33565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b505050505081565b60008115806105895750336000908152600560209081526040808320600160a060020a0387168452909152902054155b151561059157fe5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60035481565b60025460009074010000000000000000000000000000000000000000900460ff16151561062857fe5b600160a060020a03841660009081526004602052604090205482118015906106735750600160a060020a03841660009081526005602090815260408083203384529091529020548211155b801561067f5750600082115b1561077657600160a060020a0383166000908152600460205260409020546106a79083610d76565b600160a060020a0380851660009081526004602052604080822093909355908616815220546106d69083610d93565b600160a060020a038516600090815260046020908152604080832093909355600581528282203383529052205461070d9083610d93565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600161077a565b5060005b9392505050565b601281565b600a54600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105515780601f1061052657610100808354040283529160200191610551565b60095481565b600160a060020a031660009081526004602052604090205490565b600254600160a060020a0316331461082557fe5b600160a060020a038116158015906108565750600160a060020a03811660009081526020819052604090205460ff16155b156108cb57600160a060020a0381166000818152602081905260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805473ffffffffffffffffffffffffffffffffffffffff191690911790555b50565b600254600160a060020a031633146108e257fe5b600160a060020a0381166000908152602081905260408120805460ff191690555b6001548110156109cc5781600160a060020a031660018281548110151561092657fe5b600091825260209091200154600160a060020a031614156109c45760018054600019810190811061095357fe5b60009182526020909120015460018054600160a060020a03909216918390811061097957fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556001805460001901906109c29082610da5565b505b600101610903565b5050565b600254600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105515780601f1061052657610100808354040283529160200191610551565b60025460009074010000000000000000000000000000000000000000900460ff161515610a6357fe5b336000908152600460205260409020548211801590610a825750600082115b15610b2a5733600090815260046020526040902054610aa19083610d93565b3360009081526004602052604080822092909255600160a060020a03851681522054610acd9083610d76565b600160a060020a0384166000818152600460209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060016105f3565b5060006105f3565b600083610b3f8185610559565b15610c48576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610bd7578181015183820152602001610bbf565b50505050905090810190601f168015610c045780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610c2657600080fd5b505af1158015610c3a573d6000803e3d6000fd5b50505050600191505061077a565b509392505050565b610c5933610ccc565b1515610c6157fe5b60028054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600160a060020a031660009081526020819052604090205460ff1690565b60025474010000000000000000000000000000000000000000900460ff1681565b6001805482908110610d1957fe5b600091825260209091200154600160a060020a0316905081565b600254600160a060020a03163314610d4757fe5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828201838110801590610d8b5750828110155b151561077a57fe5b600081831015610d9f57fe5b50900390565b815481835581811115610dc957600083815260209020610dc9918101908301610dce565b505050565b610dec91905b80821115610de85760008155600101610dd4565b5090565b9056fea165627a7a72305820cda90d0601d8afcee5e439e08ad4ea0190f62eca0b3af7d6d25f15fe247b4f950029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000bebc2000000000000000000000000001270a0aad453a315c5ab99397d88121c34453eb4000000000000000000000000000000000000000000000000000000000000000d5469646562697420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035442540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610154576000357c01000000000000000000000000000000000000000000000000000000009004806385ddf726116100d5578063dd1219fd11610099578063dd1219fd1461040d578063dd62ed3e1461042c578063de1ac2fd1461045a578063df9204b614610480578063e28d490614610488578063f2fde38b146104a557610154565b806385ddf726146102f05780638da5cb5b1461031657806395d89b411461031e578063a9059cbb14610326578063cae9ca511461035257610154565b80633eb10ab31161011c5780633eb10ab31461026e57806354fd4d50146102925780636f7920fd1461029a57806370a08231146102a257806384385c6f146102c857610154565b806306fdde0314610159578063095ea7b3146101d657806318160ddd1461021657806323b872dd14610230578063313ce56714610266575b600080fd5b6101616104cb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019b578181015183820152602001610183565b50505050905090810190601f1680156101c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610202600480360360408110156101ec57600080fd5b50600160a060020a038135169060200135610559565b604080519115158252519081900360200190f35b61021e6105f9565b60408051918252519081900360200190f35b6102026004803603606081101561024657600080fd5b50600160a060020a038135811691602081013590911690604001356105ff565b61021e610781565b610276610786565b60408051600160a060020a039092168252519081900360200190f35b610161610795565b61021e6107f0565b61021e600480360360208110156102b857600080fd5b5035600160a060020a03166107f6565b6102ee600480360360208110156102de57600080fd5b5035600160a060020a0316610811565b005b6102ee6004803603602081101561030657600080fd5b5035600160a060020a03166108ce565b6102766109d0565b6101616109df565b6102026004803603604081101561033c57600080fd5b50600160a060020a038135169060200135610a3a565b6102026004803603606081101561036857600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561039857600080fd5b8201836020820111156103aa57600080fd5b803590602001918460018302840111640100000000831117156103cc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b32945050505050565b6102ee6004803603602081101561042357600080fd5b50351515610c50565b61021e6004803603604081101561044257600080fd5b50600160a060020a0381358116916020013516610ca1565b6102026004803603602081101561047057600080fd5b5035600160a060020a0316610ccc565b610202610cea565b6102766004803603602081101561049e57600080fd5b5035610d0b565b6102ee600480360360208110156104bb57600080fd5b5035600160a060020a0316610d33565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b505050505081565b60008115806105895750336000908152600560209081526040808320600160a060020a0387168452909152902054155b151561059157fe5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60035481565b60025460009074010000000000000000000000000000000000000000900460ff16151561062857fe5b600160a060020a03841660009081526004602052604090205482118015906106735750600160a060020a03841660009081526005602090815260408083203384529091529020548211155b801561067f5750600082115b1561077657600160a060020a0383166000908152600460205260409020546106a79083610d76565b600160a060020a0380851660009081526004602052604080822093909355908616815220546106d69083610d93565b600160a060020a038516600090815260046020908152604080832093909355600581528282203383529052205461070d9083610d93565b600160a060020a03808616600081815260056020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600161077a565b5060005b9392505050565b601281565b600a54600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105515780601f1061052657610100808354040283529160200191610551565b60095481565b600160a060020a031660009081526004602052604090205490565b600254600160a060020a0316331461082557fe5b600160a060020a038116158015906108565750600160a060020a03811660009081526020819052604090205460ff16155b156108cb57600160a060020a0381166000818152602081905260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805473ffffffffffffffffffffffffffffffffffffffff191690911790555b50565b600254600160a060020a031633146108e257fe5b600160a060020a0381166000908152602081905260408120805460ff191690555b6001548110156109cc5781600160a060020a031660018281548110151561092657fe5b600091825260209091200154600160a060020a031614156109c45760018054600019810190811061095357fe5b60009182526020909120015460018054600160a060020a03909216918390811061097957fe5b6000918252602090912001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556001805460001901906109c29082610da5565b505b600101610903565b5050565b600254600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105515780601f1061052657610100808354040283529160200191610551565b60025460009074010000000000000000000000000000000000000000900460ff161515610a6357fe5b336000908152600460205260409020548211801590610a825750600082115b15610b2a5733600090815260046020526040902054610aa19083610d93565b3360009081526004602052604080822092909255600160a060020a03851681522054610acd9083610d76565b600160a060020a0384166000818152600460209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060016105f3565b5060006105f3565b600083610b3f8185610559565b15610c48576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081523360048201818152602483018790523060448401819052608060648501908152875160848601528751600160a060020a03871695638f4ffcb195948b94938b939192909160a490910190602085019080838360005b83811015610bd7578181015183820152602001610bbf565b50505050905090810190601f168015610c045780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610c2657600080fd5b505af1158015610c3a573d6000803e3d6000fd5b50505050600191505061077a565b509392505050565b610c5933610ccc565b1515610c6157fe5b60028054911515740100000000000000000000000000000000000000000274ff000000000000000000000000000000000000000019909216919091179055565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600160a060020a031660009081526020819052604090205460ff1690565b60025474010000000000000000000000000000000000000000900460ff1681565b6001805482908110610d1957fe5b600091825260209091200154600160a060020a0316905081565b600254600160a060020a03163314610d4757fe5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828201838110801590610d8b5750828110155b151561077a57fe5b600081831015610d9f57fe5b50900390565b815481835581811115610dc957600083815260209020610dc9918101908301610dce565b505050565b610dec91905b80821115610de85760008155600101610dd4565b5090565b9056fea165627a7a72305820cda90d0601d8afcee5e439e08ad4ea0190f62eca0b3af7d6d25f15fe247b4f950029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000bebc2000000000000000000000000001270a0aad453a315c5ab99397d88121c34453eb4000000000000000000000000000000000000000000000000000000000000000d5469646562697420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035442540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Tidebit Token
Arg [1] : _symbol (string): TBT
Arg [2] : _tokenCreationCap (uint256): 200000000
Arg [3] : _FundAccount (address): 0x1270A0aaD453A315c5Ab99397d88121C34453eB4

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000bebc200
Arg [3] : 0000000000000000000000001270a0aad453a315c5ab99397d88121c34453eb4
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 5469646562697420546f6b656e00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5442540000000000000000000000000000000000000000000000000000000000


Swarm Source

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