ETH Price: $2,469.12 (-8.46%)

Token

QuiverX (QRX)
 

Overview

Max Total Supply

100,000,000 QRX

Holders

1,022 (0.00%)

Market

Price

$0.00 @ 0.000002 ETH (-8.03%)

Onchain Market Cap

$495,726.00

Circulating Supply Market Cap

$452,637.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000067058236477664 QRX

Value
$0.00 ( ~0 Eth) [0.0000%]
0xd8097CE1D829f6bEE85EDd45E171D24191F9B44E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

QuiverX is a peer to peer decentralized crowdfunding platform, that delivers a wide range of functions, creating a bridge between the digital & physical world.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 3: ERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;


import "./IERC20.sol";
import "./SafeMath.sol";


contract ERC20 is IERC20 {
    using SafeMath for uint256;


    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address private _owner;

    /**
     * @dev Sets the values for {name}, {symbol} and {supplyInMil}, initializes {decimals} with
     * a default value of 18.
     *
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol,uint256 supplyInMil) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        //1000000000000000000 = 1 token
        //100,000,000 = 100 milion
        _balances[msg.sender]= 1000000000000000000 * 1000000 * supplyInMil;
        _totalSupply =1000000000000000000 * 1000000 * supplyInMil;
        _owner=msg.sender;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }
    
    function isOwner() public view returns (bool) {
        if(msg.sender==_owner){
            return true;
        } else{
            return false;
        }
    }
    
    
    function changeOwner(address newOwner) public virtual{
        require(msg.sender==_owner, "Only the owner can change owner.");
        _owner=newOwner;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }


    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }


    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 2 of 3: IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 3 of 3: SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supplyInMil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162000d9b38038062000d9b833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b506040526020908101518551909350620001b9925060039186019062000229565b508151620001cf90600490602085019062000229565b506005805460ff1916601217815533600081815260208190526040902069d3c21bcecceda100000090930292839055600292909255805461010092909202610100600160a81b031990921691909117905550620002ce9050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200026c57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029c5782518255916020019190600101906200027f565b50620002aa929150620002ae565b5090565b620002cb91905b80821115620002aa5760008155600101620002b5565b90565b610abd80620002de6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610261578063a6f9dae11461028d578063a9059cbb146102b5578063dd62ed3e146102e1576100cf565b806370a082311461022b5780638f32d59b1461025157806395d89b4114610259576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc61030f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103a6565b604080519115158252519081900360200190f35b6101996103bc565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b038135811691602081013590911690604001356103c2565b6101e9610431565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561043a565b6101996004803603602081101561024157600080fd5b50356001600160a01b0316610476565b61017d610491565b6100dc6104bc565b61017d6004803603604081101561027757600080fd5b506001600160a01b03813516906020013561051d565b6102b3600480360360208110156102a357600080fd5b50356001600160a01b0316610572565b005b61017d600480360360408110156102cb57600080fd5b506001600160a01b0381351690602001356105fe565b610199600480360360408110156102f757600080fd5b506001600160a01b038135811691602001351661060b565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039b5780601f106103705761010080835404028352916020019161039b565b820191906000526020600020905b81548152906001019060200180831161037e57829003601f168201915b505050505090505b90565b60006103b3338484610636565b50600192915050565b60025490565b60006103cf848484610722565b6104278433610422856040518060600160405280602881526020016109f2602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff61088916565b610636565b5060019392505050565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103b3918590610422908663ffffffff61092016565b6001600160a01b031660009081526020819052604090205490565b60055460009061010090046001600160a01b03163314156104b4575060016103a3565b5060006103a3565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039b5780601f106103705761010080835404028352916020019161039b565b60006103b3338461042285604051806060016040528060258152602001610a63602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff61088916565b60055461010090046001600160a01b031633146105d6576040805162461bcd60e51b815260206004820181905260248201527f4f6e6c7920746865206f776e65722063616e206368616e6765206f776e65722e604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006103b3338484610722565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661067b5760405162461bcd60e51b8152600401808060200182810382526024815260200180610a3f6024913960400191505060405180910390fd5b6001600160a01b0382166106c05760405162461bcd60e51b81526004018080602001828103825260228152602001806109aa6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107675760405162461bcd60e51b8152600401808060200182810382526025815260200180610a1a6025913960400191505060405180910390fd5b6001600160a01b0382166107ac5760405162461bcd60e51b81526004018080602001828103825260238152602001806109876023913960400191505060405180910390fd5b6107b7838383610981565b6107fa816040518060600160405280602681526020016109cc602691396001600160a01b038616600090815260208190526040902054919063ffffffff61088916565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461082f908263ffffffff61092016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109185760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156108dd5781810151838201526020016108c5565b50505050905090810190601f16801561090a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561097a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122030f50c92b71f1c4f9f87a40f34411fe7dde7127dbbe87163ee4a42444a2352d964736f6c63430006060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000007517569766572580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035152580000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610261578063a6f9dae11461028d578063a9059cbb146102b5578063dd62ed3e146102e1576100cf565b806370a082311461022b5780638f32d59b1461025157806395d89b4114610259576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc61030f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103a6565b604080519115158252519081900360200190f35b6101996103bc565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b038135811691602081013590911690604001356103c2565b6101e9610431565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561043a565b6101996004803603602081101561024157600080fd5b50356001600160a01b0316610476565b61017d610491565b6100dc6104bc565b61017d6004803603604081101561027757600080fd5b506001600160a01b03813516906020013561051d565b6102b3600480360360208110156102a357600080fd5b50356001600160a01b0316610572565b005b61017d600480360360408110156102cb57600080fd5b506001600160a01b0381351690602001356105fe565b610199600480360360408110156102f757600080fd5b506001600160a01b038135811691602001351661060b565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039b5780601f106103705761010080835404028352916020019161039b565b820191906000526020600020905b81548152906001019060200180831161037e57829003601f168201915b505050505090505b90565b60006103b3338484610636565b50600192915050565b60025490565b60006103cf848484610722565b6104278433610422856040518060600160405280602881526020016109f2602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919063ffffffff61088916565b610636565b5060019392505050565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103b3918590610422908663ffffffff61092016565b6001600160a01b031660009081526020819052604090205490565b60055460009061010090046001600160a01b03163314156104b4575060016103a3565b5060006103a3565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039b5780601f106103705761010080835404028352916020019161039b565b60006103b3338461042285604051806060016040528060258152602001610a63602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919063ffffffff61088916565b60055461010090046001600160a01b031633146105d6576040805162461bcd60e51b815260206004820181905260248201527f4f6e6c7920746865206f776e65722063616e206368616e6765206f776e65722e604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006103b3338484610722565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661067b5760405162461bcd60e51b8152600401808060200182810382526024815260200180610a3f6024913960400191505060405180910390fd5b6001600160a01b0382166106c05760405162461bcd60e51b81526004018080602001828103825260228152602001806109aa6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107675760405162461bcd60e51b8152600401808060200182810382526025815260200180610a1a6025913960400191505060405180910390fd5b6001600160a01b0382166107ac5760405162461bcd60e51b81526004018080602001828103825260238152602001806109876023913960400191505060405180910390fd5b6107b7838383610981565b6107fa816040518060600160405280602681526020016109cc602691396001600160a01b038616600090815260208190526040902054919063ffffffff61088916565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461082f908263ffffffff61092016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109185760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156108dd5781810151838201526020016108c5565b50505050905090810190601f16801561090a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561097a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122030f50c92b71f1c4f9f87a40f34411fe7dde7127dbbe87163ee4a42444a2352d964736f6c63430006060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000007517569766572580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035152580000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): QuiverX
Arg [1] : symbol (string): QRX
Arg [2] : supplyInMil (uint256): 100

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 5175697665725800000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5152580000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

108:8149:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;108:8149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;1178:81:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;1178:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3515:164;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;3515:164:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2524:98;;;:::i;:::-;;;;;;;;;;;;;;;;4139:313;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;4139:313:0;;;;;;;;;;;;;;;;;:::i;2383:81::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4847:211;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;4847:211:0;;;;;;;;:::i;2680:117::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;2680:117:0;-1:-1:-1;;;;;2680:117:0;;:::i;1467:162::-;;;:::i;1372:85::-;;;:::i;5545:262::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;5545:262:0;;;;;;;;:::i;1644:158::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1644:158:0;-1:-1:-1;;;;;1644:158:0;;:::i;:::-;;3000:170;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;3000:170:0;;;;;;;;:::i;3228:149::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;3228:149:0;;;;;;;;;;:::i;1178:81::-;1247:5;1240:12;;;;;;;;-1:-1:-1;;1240:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215:13;;1240:12;;1247:5;;1240:12;;1247:5;1240:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1178:81;;:::o;3515:164::-;3598:4;3614:37;3623:10;3635:7;3644:6;3614:8;:37::i;:::-;-1:-1:-1;3668:4:0;3515:164;;;;:::o;2524:98::-;2603:12;;2524:98;:::o;4139:313::-;4245:4;4261:36;4271:6;4279:9;4290:6;4261:9;:36::i;:::-;4307:117;4316:6;4324:10;4336:87;4372:6;4336:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4336:19:0;;;;;;:11;:19;;;;;;;;4356:10;4336:31;;;;;;;;;:87;;:35;:87;:::i;:::-;4307:8;:117::i;:::-;-1:-1:-1;4441:4:0;4139:313;;;;;:::o;2383:81::-;2448:9;;;;2383:81;:::o;4847:211::-;4960:10;4935:4;4981:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;4981:32:0;;;;;;;;;;4935:4;;4951:79;;4972:7;;4981:48;;5018:10;4981:48;:36;:48;:::i;2680:117::-;-1:-1:-1;;;;;2772:18:0;2746:7;2772:18;;;;;;;;;;;;2680:117::o;1467:162::-;1538:6;;1507:4;;1538:6;;;-1:-1:-1;;;;;1538:6:0;1526:10;:18;1523:100;;;-1:-1:-1;1566:4:0;1559:11;;1523:100;-1:-1:-1;1607:5:0;1600:12;;1372:85;1443:7;1436:14;;;;;;;;-1:-1:-1;;1436:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1411:13;;1436:14;;1443:7;;1436:14;;1443:7;1436:14;;;;;;;;;;;;;;;;;;;;;;;;5545:262;5638:4;5654:125;5663:10;5675:7;5684:94;5721:15;5684:94;;;;;;;;;;;;;;;;;5696:10;5684:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;5684:32:0;;;;;;;;;;;:94;;:36;:94;:::i;1644:158::-;1727:6;;;;;-1:-1:-1;;;;;1727:6:0;1715:10;:18;1707:63;;;;;-1:-1:-1;;;1707:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1780:6;:15;;-1:-1:-1;;;;;1780:15:0;;;;;-1:-1:-1;;;;;;1780:15:0;;;;;;;;;1644:158::o;3000:170::-;3086:4;3102:40;3112:10;3124:9;3135:6;3102:9;:40::i;3228:149::-;-1:-1:-1;;;;;3343:18:0;;;3317:7;3343:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3228:149::o;7235:340::-;-1:-1:-1;;;;;7336:19:0;;7328:68;;;;-1:-1:-1;;;7328:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7414:21:0;;7406:68;;;;-1:-1:-1;;;7406:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7485:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;7536:32;;;;;;;;;;;;;;;;;7235:340;;;:::o;6281:530::-;-1:-1:-1;;;;;6386:20:0;;6378:70;;;;-1:-1:-1;;;6378:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6466:23:0;;6458:71;;;;-1:-1:-1;;;6458:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6540:47;6561:6;6569:9;6580:6;6540:20;:47::i;:::-;6618:71;6640:6;6618:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6618:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;6598:17:0;;;:9;:17;;;;;;;;;;;:91;;;;6722:20;;;;;;;:32;;6747:6;6722:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;6699:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;6769:35;;;;;;;6699:20;;6769:35;;;;;;;;;;;;;6281:530;;;:::o;1745:187:2:-;1831:7;1866:12;1858:6;;;;1850:29;;;;-1:-1:-1;;;1850:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23: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;1850:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1901:5:2;;;1745:187::o;873:176::-;931:7;962:5;;;985:6;;;;977:46;;;;;-1:-1:-1;;;977:46:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1041:1;873:176;-1:-1:-1;;;873:176:2:o;8163:92:0:-;;;;:::o

Swarm Source

ipfs://30f50c92b71f1c4f9f87a40f34411fe7dde7127dbbe87163ee4a42444a2352d9
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.