ETH Price: $2,563.74 (+0.69%)

Token

bitqy (BQ)
 

Overview

Max Total Supply

10,000,000,000 BQ

Holders

20,853 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 3 Decimals)

Balance
11,039,695.537 BQ

Value
$0.00
0x304cc179719bc5b05418d6f7f6783abe45d83090
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:
bitqy

Compiler Version
v0.4.8+commit.60cc1668

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-10-17
*/

pragma solidity ^0.4.8;


contract owned 
   {
   address public owner;

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

   modifier onlyOwner 
      {
      if (msg.sender != owner) throw;
      _;
      }
   }


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


contract bitqy is owned {
   /*   Public variables of the coin   */
   uint256 public totalSupply;
   string public name;
   string public symbol;
   uint8 public decimals;


   mapping (address => uint256) public balanceOf;   //   Array of balances
   mapping (address => bool) public frozenAccount;   //   Array of frozen accounts
   mapping (address => mapping (address => uint256)) public allowance;   //   Array of allowances


   event Transfer(address indexed from, address indexed to, uint256 value);
   event FrozenFunds(address target, bool frozen);


   /*   Initializes contract with the initial supply of coins to the creator of the contract   */
   function bitqy(
         uint256 initialSupply,
         string tokenName,
         uint8 decimalUnits,
         string tokenSymbol
         ) 
      {
      balanceOf[msg.sender] = initialSupply;
      totalSupply = initialSupply;
      name = tokenName;
      symbol = tokenSymbol;
      decimals = decimalUnits;
      }


   /*   Send coins   */
   function transfer(address _to, uint256 _value) returns (bool success) 
      {
      /*   Checks if sender has enough balance, checks for overflows and checks if the account is frozen   */
      if ((balanceOf[msg.sender] < _value) || (balanceOf[_to] + _value < balanceOf[_to]) || (frozenAccount[msg.sender]) || (frozenAccount[_to]))
         {
         return false;
         }

      else
         {
         /*   Add and subtract new balances   */
         balanceOf[msg.sender] -= _value;
         balanceOf[_to] += _value;

         /*   Notify anyone listening that this transfer took place   */
         Transfer(msg.sender, _to, _value);
         return true;
         }
      }


    /*   Allow another contract to spend some coins on your behalf   */
    function approve(address _spender, uint256 _value) returns (bool success) 
      {
      if ((frozenAccount[msg.sender]) || (frozenAccount[_spender]))
         {
         return false;
         }

      else
         {
         allowance[msg.sender][_spender] = _value;
         bitqyRecipient spender = bitqyRecipient(_spender);
         return true;
         }
      }



   /*   A contract attempts to get the coins   */
   function transferFrom(address _from, address _to, uint256 _value) returns (bool success) 
      {
      if ((balanceOf[_from] < _value) || (balanceOf[_to] + _value < balanceOf[_to]) || (_value > allowance[_from][msg.sender]) || (frozenAccount[msg.sender]) || (frozenAccount[_from]) || (frozenAccount[_to]))
         {
         return false;
         }

      else
         {
         balanceOf[_from] -= _value;
         allowance[_from][msg.sender] -= _value;
         balanceOf[_to] += _value;
         Transfer(_from, _to, _value);
         return true;
         }
      }


   function freezeAccount(address target, bool freeze) onlyOwner 
      {
      frozenAccount[target] = freeze;
      FrozenFunds(target, freeze);
      }


   function legal() constant returns (string content) 
      {
      content = "bitqy, the in-app token for bitqyck\n\nbitqy is a cryptocurrency token for the marketplace platform bitqyck and the general market as it is accepted by businesses and consumers globally. bitqy will be allocated by the directors of bitqyck, Inc. Once allocated, bitqyck relinquishes control of the allocated bitqy\n\nThe latest and most up to date legal disclosures can always be found on bitqy.org.\n\nAdditionally, bitqyck, Inc., a Texas corporation, certifies:\n   * that it has authorized the minting of ten billion digital tokens known as \"bitqy tokens\" or \"bitqy coins,\" created on the Ethereum Blockchain App Platform and, further certifies,\n   * that through its directors and founders, has duly authorized one billion shares of common stock as the only class of ownership shares in the Corporation, and further certifies,\n   * that the bitqy tokens are only created by the smart contract that these certifications are enumerated within and, further certifies,\n   * that the holder of a bitqy token, is also the holder of one-tenth of a share of bitqyck, Inc. common stock, and further certifies,\n   * that the holder of this coin shall enjoy the rights and benefits as a shareholder of bitqyck, Inc. pursuant to the shareholder rules as determined from time to time by the directors or majority shareholders of bitqyck, Inc. and ONLY IF the bitqy holder has his/her bitqy tokens in the official bitqy wallet operated and maintained by bitqyck, Inc., and further certifies,\n   * pursuant to the terms and conditions that the directors and founders attach to the bitqy token, and further certifies\n   * that this bitqy token is freely transferable by the holder hereof in any manner, which said holder deems appropriate and reasonable.\nThe holder of this bitqy token certifies that he or she has ownership and possession pursuant to a legal transaction or transfer from the prior holder.\n\n";
      return content;
      }



   /*   If no other functions are matched   */
   function () 
      {
      throw;   //   Prevents accidental sending of ether and other potential problems
      }


   }

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":"success","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":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"legal","outputs":[{"name":"content","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":false,"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":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"}]

606060405234610000576040516112b13803806112b1833981016040908152815160208301519183015160608401519193928301929091015b5b60008054600160a060020a03191633600160a060020a03161790555b33600160a060020a031660009081526005602090815260408220869055600186815585516002805494819052937f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace92811615610100026000190116849004601f9081018490048301939192918801908390106100dc57805160ff1916838001178555610109565b82800160010185558215610109579182015b828111156101095782518255916020019190600101906100ee565b5b5061012a9291505b808211156101265760008155600101610112565b5090565b50508060039080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061017857805160ff19168380011785556101a5565b828001600101855582156101a5579182015b828111156101a557825182559160200191906001019061018a565b5b506101c69291505b808211156101265760008155600101610112565b5090565b50506004805460ff191660ff84161790555b505050505b6110c5806101ec6000396000f300606060405236156100a95763ffffffff60e060020a60003504166306fdde0381146100bb578063095ea7b31461014857806318160ddd1461017857806323b872dd14610197578063313ce567146101cd57806370a08231146101f05780638da5cb5b1461021b57806395d89b4114610244578063a9059cbb146102d1578063b414d4b614610301578063dd62ed3e1461032e578063e377ac311461035f578063e724529c146103ec575b34610000576100b95b610000565b565b005b34610000576100c861040c565b60408051602080825283518183015283519192839290830191850190808383821561010e575b80518252602083111561010e57601f1990920191602091820191016100ee565b505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3461000057610164600160a060020a0360043516602435610497565b604080519115158252519081900360200190f35b346100005761018561051c565b60408051918252519081900360200190f35b3461000057610164600160a060020a0360043581169060243516604435610522565b604080519115158252519081900360200190f35b34610000576101da610694565b6040805160ff9092168252519081900360200190f35b3461000057610185600160a060020a036004351661069d565b60408051918252519081900360200190f35b34610000576102286106af565b60408051600160a060020a039092168252519081900360200190f35b34610000576100c86106be565b60408051602080825283518183015283519192839290830191850190808383821561010e575b80518252602083111561010e57601f1990920191602091820191016100ee565b505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3461000057610164600160a060020a036004351660243561074c565b604080519115158252519081900360200190f35b3461000057610164600160a060020a0360043516610851565b604080519115158252519081900360200190f35b3461000057610185600160a060020a0360043581169060243516610866565b60408051918252519081900360200190f35b34610000576100c8610883565b60408051602080825283518183015283519192839290830191850190808383821561010e575b80518252602083111561010e57601f1990920191602091820191016100ee565b505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576100b9600160a060020a036004351660243515156108b7565b005b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561048f5780601f106104645761010080835404028352916020019161048f565b820191906000526020600020905b81548152906001019060200180831161047257829003601f168201915b505050505081565b600160a060020a033316600090815260066020526040812054819060ff16806104d85750600160a060020a03841660009081526006602052604090205460ff165b156104e65760009150610514565b5050600160a060020a0333811660009081526007602090815260408083209386168352929052208190556001825b5b5092915050565b60015481565b600160a060020a038316600090815260056020526040812054829010806105625750600160a060020a038316600090815260056020526040902054828101105b806105925750600160a060020a038085166000908152600760209081526040808320339094168352929052205482115b806105b55750600160a060020a03331660009081526006602052604090205460ff165b806105d85750600160a060020a03841660009081526006602052604090205460ff165b806105fb5750600160a060020a03831660009081526006602052604090205460ff165b156106085750600061068c565b600160a060020a03808516600081815260056020818152604080842080548990039055600782528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060015b5b9392505050565b60045460ff1681565b60056020526000908152604090205481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048f5780601f106104645761010080835404028352916020019161048f565b820191906000526020600020905b81548152906001019060200180831161047257829003601f168201915b505050505081565b600160a060020a0333166000908152600560205260408120548290108061078c5750600160a060020a038316600090815260056020526040902054828101105b806107af5750600160a060020a03331660009081526006602052604090205460ff165b806107d25750600160a060020a03831660009081526006602052604090205460ff165b156107df5750600061084a565b600160a060020a03338116600081815260056020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060015b5b92915050565b60066020526000908152604090205460ff1681565b600760209081526000928352604080842090915290825290205481565b60206040519081016040528060008152506107a0604051908101604052806107618152602001610939610761913990505b90565b60005433600160a060020a039081169116146108d257610000565b600160a060020a038216600081815260066020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050560062697471792c2074686520696e2d61707020746f6b656e20666f72206269747179636b0a0a626974717920697320612063727970746f63757272656e637920746f6b656e20666f7220746865206d61726b6574706c61636520706c6174666f726d206269747179636b20616e64207468652067656e6572616c206d61726b657420617320697420697320616363657074656420627920627573696e657373657320616e6420636f6e73756d65727320676c6f62616c6c792e2062697471792077696c6c20626520616c6c6f636174656420627920746865206469726563746f7273206f66206269747179636b2c20496e632e204f6e636520616c6c6f63617465642c206269747179636b2072656c696e7175697368657320636f6e74726f6c206f662074686520616c6c6f63617465642062697471790a0a546865206c617465737420616e64206d6f737420757020746f2064617465206c6567616c20646973636c6f73757265732063616e20616c7761797320626520666f756e64206f6ec2a062697471792e6f72672e0a0a4164646974696f6e616c6c792c206269747179636b2c20496e632e2c206120546578617320636f72706f726174696f6e2c206365727469666965733a0a2020202a20746861742069742068617320617574686f72697a656420746865206d696e74696e67206f662074656e2062696c6c696f6e206469676974616c20746f6b656e73206b6e6f776e2061732022626974717920746f6b656e7322206f722022626974717920636f696e732c222063726561746564206f6e2074686520457468657265756d20426c6f636b636861696e2041707020506c6174666f726d20616e642c2066757274686572206365727469666965732c0a2020202a2074686174207468726f75676820697473206469726563746f727320616e6420666f756e646572732c206861732064756c7920617574686f72697a6564206f6e652062696c6c696f6e20736861726573206f6620636f6d6d6f6e2073746f636b20617320746865206f6e6c7920636c617373206f66206f776e6572736869702073686172657320696e2074686520436f72706f726174696f6e2c20616e642066757274686572206365727469666965732c0a2020202a20746861742074686520626974717920746f6b656e7320617265206f6e6c7920637265617465642062792074686520736d61727420636f6e747261637420746861742074686573652063657274696669636174696f6e732061726520656e756d6572617465642077697468696e20616e642c2066757274686572206365727469666965732c0a2020202a20746861742074686520686f6c646572206f66206120626974717920746f6b656e2c20697320616c736f2074686520686f6c646572206f66206f6e652d74656e7468206f662061207368617265206f66206269747179636b2c20496e632e20636f6d6d6f6e2073746f636b2c20616e642066757274686572206365727469666965732c0a2020202a20746861742074686520686f6c646572206f66207468697320636f696e207368616c6c20656e6a6f79207468652072696768747320616e642062656e65666974732061732061207368617265686f6c646572206f66206269747179636b2c20496e632e207075727375616e7420746f20746865207368617265686f6c6465722072756c65732061732064657465726d696e65642066726f6d2074696d6520746f2074696d6520627920746865206469726563746f7273206f72206d616a6f72697479207368617265686f6c64657273206f66206269747179636b2c20496e632e20616e64204f4e4c592049462074686520626974717920686f6c64657220686173206869732f68657220626974717920746f6b656e7320696e20746865206f6666696369616c2062697471792077616c6c6574206f7065726174656420616e64206d61696e7461696e6564206279206269747179636b2c20496e632e2c20616e642066757274686572206365727469666965732c0a2020202a207075727375616e7420746f20746865207465726d7320616e6420636f6e646974696f6e73207468617420746865206469726563746f727320616e6420666f756e646572732061747461636820746f2074686520626974717920746f6b656e2c20616e642066757274686572206365727469666965730a2020202a2074686174207468697320626974717920746f6b656e20697320667265656c79207472616e7366657261626c652062792074686520686f6c64657220686572656f6620696e20616e79206d616e6e65722c207768696368207361696420686f6c646572206465656d7320617070726f70726961746520616e6420726561736f6e61626c652e0a54686520686f6c646572206f66207468697320626974717920746f6b656e206365727469666965732074686174206865206f722073686520686173206f776e65727368697020616e6420706f7373657373696f6e207075727375616e7420746f2061206c6567616c207472616e73616374696f6e206f72207472616e736665722066726f6d20746865207072696f7220686f6c6465722e0a0aa165627a7a72305820348c807fbad09fe7a37b1bd5bab3c07e4161896d7d12ffb5a31ae2271cf0fc5c0029000000000000000000000000000000000000000000000000000009184e72a0000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000005626974717900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024251000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x606060405236156100a95763ffffffff60e060020a60003504166306fdde0381146100bb578063095ea7b31461014857806318160ddd1461017857806323b872dd14610197578063313ce567146101cd57806370a08231146101f05780638da5cb5b1461021b57806395d89b4114610244578063a9059cbb146102d1578063b414d4b614610301578063dd62ed3e1461032e578063e377ac311461035f578063e724529c146103ec575b34610000576100b95b610000565b565b005b34610000576100c861040c565b60408051602080825283518183015283519192839290830191850190808383821561010e575b80518252602083111561010e57601f1990920191602091820191016100ee565b505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3461000057610164600160a060020a0360043516602435610497565b604080519115158252519081900360200190f35b346100005761018561051c565b60408051918252519081900360200190f35b3461000057610164600160a060020a0360043581169060243516604435610522565b604080519115158252519081900360200190f35b34610000576101da610694565b6040805160ff9092168252519081900360200190f35b3461000057610185600160a060020a036004351661069d565b60408051918252519081900360200190f35b34610000576102286106af565b60408051600160a060020a039092168252519081900360200190f35b34610000576100c86106be565b60408051602080825283518183015283519192839290830191850190808383821561010e575b80518252602083111561010e57601f1990920191602091820191016100ee565b505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3461000057610164600160a060020a036004351660243561074c565b604080519115158252519081900360200190f35b3461000057610164600160a060020a0360043516610851565b604080519115158252519081900360200190f35b3461000057610185600160a060020a0360043581169060243516610866565b60408051918252519081900360200190f35b34610000576100c8610883565b60408051602080825283518183015283519192839290830191850190808383821561010e575b80518252602083111561010e57601f1990920191602091820191016100ee565b505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576100b9600160a060020a036004351660243515156108b7565b005b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561048f5780601f106104645761010080835404028352916020019161048f565b820191906000526020600020905b81548152906001019060200180831161047257829003601f168201915b505050505081565b600160a060020a033316600090815260066020526040812054819060ff16806104d85750600160a060020a03841660009081526006602052604090205460ff165b156104e65760009150610514565b5050600160a060020a0333811660009081526007602090815260408083209386168352929052208190556001825b5b5092915050565b60015481565b600160a060020a038316600090815260056020526040812054829010806105625750600160a060020a038316600090815260056020526040902054828101105b806105925750600160a060020a038085166000908152600760209081526040808320339094168352929052205482115b806105b55750600160a060020a03331660009081526006602052604090205460ff165b806105d85750600160a060020a03841660009081526006602052604090205460ff165b806105fb5750600160a060020a03831660009081526006602052604090205460ff165b156106085750600061068c565b600160a060020a03808516600081815260056020818152604080842080548990039055600782528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060015b5b9392505050565b60045460ff1681565b60056020526000908152604090205481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048f5780601f106104645761010080835404028352916020019161048f565b820191906000526020600020905b81548152906001019060200180831161047257829003601f168201915b505050505081565b600160a060020a0333166000908152600560205260408120548290108061078c5750600160a060020a038316600090815260056020526040902054828101105b806107af5750600160a060020a03331660009081526006602052604090205460ff165b806107d25750600160a060020a03831660009081526006602052604090205460ff165b156107df5750600061084a565b600160a060020a03338116600081815260056020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060015b5b92915050565b60066020526000908152604090205460ff1681565b600760209081526000928352604080842090915290825290205481565b60206040519081016040528060008152506107a0604051908101604052806107618152602001610939610761913990505b90565b60005433600160a060020a039081169116146108d257610000565b600160a060020a038216600081815260066020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15b5b5050560062697471792c2074686520696e2d61707020746f6b656e20666f72206269747179636b0a0a626974717920697320612063727970746f63757272656e637920746f6b656e20666f7220746865206d61726b6574706c61636520706c6174666f726d206269747179636b20616e64207468652067656e6572616c206d61726b657420617320697420697320616363657074656420627920627573696e657373657320616e6420636f6e73756d65727320676c6f62616c6c792e2062697471792077696c6c20626520616c6c6f636174656420627920746865206469726563746f7273206f66206269747179636b2c20496e632e204f6e636520616c6c6f63617465642c206269747179636b2072656c696e7175697368657320636f6e74726f6c206f662074686520616c6c6f63617465642062697471790a0a546865206c617465737420616e64206d6f737420757020746f2064617465206c6567616c20646973636c6f73757265732063616e20616c7761797320626520666f756e64206f6ec2a062697471792e6f72672e0a0a4164646974696f6e616c6c792c206269747179636b2c20496e632e2c206120546578617320636f72706f726174696f6e2c206365727469666965733a0a2020202a20746861742069742068617320617574686f72697a656420746865206d696e74696e67206f662074656e2062696c6c696f6e206469676974616c20746f6b656e73206b6e6f776e2061732022626974717920746f6b656e7322206f722022626974717920636f696e732c222063726561746564206f6e2074686520457468657265756d20426c6f636b636861696e2041707020506c6174666f726d20616e642c2066757274686572206365727469666965732c0a2020202a2074686174207468726f75676820697473206469726563746f727320616e6420666f756e646572732c206861732064756c7920617574686f72697a6564206f6e652062696c6c696f6e20736861726573206f6620636f6d6d6f6e2073746f636b20617320746865206f6e6c7920636c617373206f66206f776e6572736869702073686172657320696e2074686520436f72706f726174696f6e2c20616e642066757274686572206365727469666965732c0a2020202a20746861742074686520626974717920746f6b656e7320617265206f6e6c7920637265617465642062792074686520736d61727420636f6e747261637420746861742074686573652063657274696669636174696f6e732061726520656e756d6572617465642077697468696e20616e642c2066757274686572206365727469666965732c0a2020202a20746861742074686520686f6c646572206f66206120626974717920746f6b656e2c20697320616c736f2074686520686f6c646572206f66206f6e652d74656e7468206f662061207368617265206f66206269747179636b2c20496e632e20636f6d6d6f6e2073746f636b2c20616e642066757274686572206365727469666965732c0a2020202a20746861742074686520686f6c646572206f66207468697320636f696e207368616c6c20656e6a6f79207468652072696768747320616e642062656e65666974732061732061207368617265686f6c646572206f66206269747179636b2c20496e632e207075727375616e7420746f20746865207368617265686f6c6465722072756c65732061732064657465726d696e65642066726f6d2074696d6520746f2074696d6520627920746865206469726563746f7273206f72206d616a6f72697479207368617265686f6c64657273206f66206269747179636b2c20496e632e20616e64204f4e4c592049462074686520626974717920686f6c64657220686173206869732f68657220626974717920746f6b656e7320696e20746865206f6666696369616c2062697471792077616c6c6574206f7065726174656420616e64206d61696e7461696e6564206279206269747179636b2c20496e632e2c20616e642066757274686572206365727469666965732c0a2020202a207075727375616e7420746f20746865207465726d7320616e6420636f6e646974696f6e73207468617420746865206469726563746f727320616e6420666f756e646572732061747461636820746f2074686520626974717920746f6b656e2c20616e642066757274686572206365727469666965730a2020202a2074686174207468697320626974717920746f6b656e20697320667265656c79207472616e7366657261626c652062792074686520686f6c64657220686572656f6620696e20616e79206d616e6e65722c207768696368207361696420686f6c646572206465656d7320617070726f70726961746520616e6420726561736f6e61626c652e0a54686520686f6c646572206f66207468697320626974717920746f6b656e206365727469666965732074686174206865206f722073686520686173206f776e65727368697020616e6420706f7373657373696f6e207075727375616e7420746f2061206c6567616c207472616e73616374696f6e206f72207472616e736665722066726f6d20746865207072696f7220686f6c6465722e0a0aa165627a7a72305820348c807fbad09fe7a37b1bd5bab3c07e4161896d7d12ffb5a31ae2271cf0fc5c0029

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

000000000000000000000000000000000000000000000000000009184e72a0000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000005626974717900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024251000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000000
Arg [1] : tokenName (string): bitqy
Arg [2] : decimalUnits (uint8): 3
Arg [3] : tokenSymbol (string): BQ

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000009184e72a000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 6269747179000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4251000000000000000000000000000000000000000000000000000000000000


Swarm Source

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