ETH Price: $3,120.08 (+4.07%)
Gas: 5 Gwei

Token

SHOPX (SHOPX)
 

Overview

Max Total Supply

500,000,000 SHOPX

Holders

9,273 ( -0.011%)

Market

Price

$0.02 @ 0.000006 ETH (-1.65%)

Onchain Market Cap

$8,839,785.00

Circulating Supply Market Cap

$8,257,858.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Gate.io
Balance
5,793,592.998109762095055071 SHOPX

Value
$102,428.23 ( ~32.8287 Eth) [1.1587%]
0x0d0707963952f2fba59dd06f2b425ace40b492fe
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SHOPX is a web3 platform that creates a new revenue streams for e-commerce brands through NFT communities. Their NFTs create loyalty and membership programs that drive 80% conversion rates to product purchases.

Market

Volume (24H):$371,938.00
Market Capitalization:$8,257,858.00
Circulating Supply:468,694,625.00 SHOPX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.7.3+commit.9bfce1f6

Optimization Enabled:
Yes with 200 runs

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

// SPDX-License-Identifier: MIT
pragma solidity 0.7.3;

contract Owned {
    
    address public owner;
    address public pendingOwner;

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

    modifier onlyPendingOwner {
        require(msg.sender == pendingOwner);
        _;
    }

    constructor() {
        owner = msg.sender;
    }

    //@dev proposes new manager ownership
    function transferOwnership(address newOwner) public onlyOwner {
        pendingOwner = newOwner;
    }

    //@dev pending owner must accept it to prevent changing to a wallet who lost their key
    function acceptOwnership() public onlyPendingOwner {
        owner = pendingOwner;
    }


}

/**
 * @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);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is IERC20, Owned {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string  private _name;
    string  private _symbol;
    uint256 immutable private _cap = 500000000000000000000000000; // 0.5 billion

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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);

        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, msg.sender, currentAllowance - amount);

        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] + 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) {
        uint256 currentAllowance = _allowances[msg.sender][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(msg.sender, spender, currentAllowance - subtractedValue);

        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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) public onlyOwner virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        require(totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");


        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, 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 { }

    /**
     * @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;
    }

    /**
     * @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, unless this function is
     * overloaded;
     *
     * 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 pure returns (uint8) {
        return 18;
    }
    
    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526b019d971e4fe8401e740000006080523480156200002157600080fd5b5060405162000e6f38038062000e6f833981810160405260408110156200004757600080fd5b81019080805160405193929190846401000000008211156200006857600080fd5b9083019060208201858111156200007e57600080fd5b82516401000000008111828201881017156200009957600080fd5b82525081516020918201929091019080838360005b83811015620000c8578181015183820152602001620000ae565b50505050905090810190601f168015620000f65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011a57600080fd5b9083019060208201858111156200013057600080fd5b82516401000000008111828201881017156200014b57600080fd5b82525081516020918201929091019080838360005b838110156200017a57818101518382015260200162000160565b50505050905090810190601f168015620001a85780820380516001836020036101000a031916815260200191505b506040525050600080546001600160a01b03191633179055508151620001d6906005906020850190620001f5565b508051620001ec906006906020840190620001f5565b50505062000291565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b608051610bc3620002ac600039806104ec5250610bc36000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102f7578063a9059cbb14610323578063dd62ed3e1461034f578063e30c39781461037d578063f2fde38b146103855761010b565b806370a082311461029d57806379ba5097146102c35780638da5cb5b146102cb57806395d89b41146102ef5761010b565b8063313ce567116100de578063313ce5671461021d578063355274ea1461023b57806339509351146102435780634e6ec2471461026f5761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103ab565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610441565b604080519115158252519081900360200190f35b6101d5610457565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b0381358116916020810135909116906040013561045d565b6102256104e5565b6040805160ff9092168252519081900360200190f35b6101d56104ea565b6101b96004803603604081101561025957600080fd5b506001600160a01b03813516906020013561050e565b61029b6004803603604081101561028557600080fd5b506001600160a01b038135169060200135610541565b005b6101d5600480360360208110156102b357600080fd5b50356001600160a01b0316610683565b61029b61069e565b6102d36106d9565b604080516001600160a01b039092168252519081900360200190f35b6101186106e8565b6101b96004803603604081101561030d57600080fd5b506001600160a01b038135169060200135610749565b6101b96004803603604081101561033957600080fd5b506001600160a01b0381351690602001356107c3565b6101d56004803603604081101561036557600080fd5b506001600160a01b03813581169160200135166107d0565b6102d36107fb565b61029b6004803603602081101561039b57600080fd5b50356001600160a01b031661080a565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b5050505050905090565b600061044e338484610843565b50600192915050565b60045490565b600061046a84848461092f565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156104cd5760405162461bcd60e51b8152600401808060200182810382526028815260200180610af86028913960400191505060405180910390fd5b6104da8533858403610843565b506001949350505050565b601290565b7f000000000000000000000000000000000000000000000000000000000000000090565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161044e9185908501610843565b6000546001600160a01b0316331461055857600080fd5b6001600160a01b0382166105b3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6105bb6104ea565b816105c4610457565b011115610618576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b61062460008383610a87565b60048054820190556001600160a01b0382166000818152600260209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6001600160a01b031660009081526002602052604090205490565b6001546001600160a01b031633146106b557600080fd5b600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104375780601f1061040c57610100808354040283529160200191610437565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156107ac5760405162461bcd60e51b8152600401808060200182810382526025815260200180610b696025913960400191505060405180910390fd5b6107b93385858403610843565b5060019392505050565b600061044e33848461092f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6001546001600160a01b031681565b6000546001600160a01b0316331461082157600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108885760405162461bcd60e51b8152600401808060200182810382526024815260200180610b456024913960400191505060405180910390fd5b6001600160a01b0382166108cd5760405162461bcd60e51b8152600401808060200182810382526022815260200180610ab06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109745760405162461bcd60e51b8152600401808060200182810382526025815260200180610b206025913960400191505060405180910390fd5b6001600160a01b0382166109b95760405162461bcd60e51b8152600401808060200182810382526023815260200180610a8d6023913960400191505060405180910390fd5b6109c4838383610a87565b6001600160a01b03831660009081526002602052604090205481811015610a1c5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ad26026913960400191505060405180910390fd5b6001600160a01b0380851660008181526002602090815260408083208787039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220db00302d011ff2369d8b65a9bd641374b360a27c0e721440cd2874af533d13f964736f6c6343000703003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b53504c59542053484f5058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553484f5058000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102f7578063a9059cbb14610323578063dd62ed3e1461034f578063e30c39781461037d578063f2fde38b146103855761010b565b806370a082311461029d57806379ba5097146102c35780638da5cb5b146102cb57806395d89b41146102ef5761010b565b8063313ce567116100de578063313ce5671461021d578063355274ea1461023b57806339509351146102435780634e6ec2471461026f5761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103ab565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610441565b604080519115158252519081900360200190f35b6101d5610457565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b0381358116916020810135909116906040013561045d565b6102256104e5565b6040805160ff9092168252519081900360200190f35b6101d56104ea565b6101b96004803603604081101561025957600080fd5b506001600160a01b03813516906020013561050e565b61029b6004803603604081101561028557600080fd5b506001600160a01b038135169060200135610541565b005b6101d5600480360360208110156102b357600080fd5b50356001600160a01b0316610683565b61029b61069e565b6102d36106d9565b604080516001600160a01b039092168252519081900360200190f35b6101186106e8565b6101b96004803603604081101561030d57600080fd5b506001600160a01b038135169060200135610749565b6101b96004803603604081101561033957600080fd5b506001600160a01b0381351690602001356107c3565b6101d56004803603604081101561036557600080fd5b506001600160a01b03813581169160200135166107d0565b6102d36107fb565b61029b6004803603602081101561039b57600080fd5b50356001600160a01b031661080a565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b5050505050905090565b600061044e338484610843565b50600192915050565b60045490565b600061046a84848461092f565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156104cd5760405162461bcd60e51b8152600401808060200182810382526028815260200180610af86028913960400191505060405180910390fd5b6104da8533858403610843565b506001949350505050565b601290565b7f0000000000000000000000000000000000000000019d971e4fe8401e7400000090565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161044e9185908501610843565b6000546001600160a01b0316331461055857600080fd5b6001600160a01b0382166105b3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6105bb6104ea565b816105c4610457565b011115610618576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b61062460008383610a87565b60048054820190556001600160a01b0382166000818152600260209081526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b6001600160a01b031660009081526002602052604090205490565b6001546001600160a01b031633146106b557600080fd5b600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104375780601f1061040c57610100808354040283529160200191610437565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156107ac5760405162461bcd60e51b8152600401808060200182810382526025815260200180610b696025913960400191505060405180910390fd5b6107b93385858403610843565b5060019392505050565b600061044e33848461092f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6001546001600160a01b031681565b6000546001600160a01b0316331461082157600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108885760405162461bcd60e51b8152600401808060200182810382526024815260200180610b456024913960400191505060405180910390fd5b6001600160a01b0382166108cd5760405162461bcd60e51b8152600401808060200182810382526022815260200180610ab06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109745760405162461bcd60e51b8152600401808060200182810382526025815260200180610b206025913960400191505060405180910390fd5b6001600160a01b0382166109b95760405162461bcd60e51b8152600401808060200182810382526023815260200180610a8d6023913960400191505060405180910390fd5b6109c4838383610a87565b6001600160a01b03831660009081526002602052604090205481811015610a1c5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ad26026913960400191505060405180910390fd5b6001600160a01b0380851660008181526002602090815260408083208787039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220db00302d011ff2369d8b65a9bd641374b360a27c0e721440cd2874af533d13f964736f6c63430007030033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b53504c59542053484f5058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553484f5058000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): SPLYT SHOPX
Arg [1] : symbol_ (string): SHOPX

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 53504c59542053484f5058000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 53484f5058000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4643:8954:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12417:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6529:167;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6529:167:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5484:108;;;:::i;:::-;;;;;;;;;;;;;;;;7178:418;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7178:418:0;;;;;;;;;;;;;;;;;:::i;13345:76::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13509:83;;;:::i;8005:211::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8005:211:0;;;;;;;;:::i;10440:428::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10440:428:0;;;;;;;;:::i;:::-;;5655:127;;;;;;;;;;;;;;;;-1:-1:-1;5655:127:0;-1:-1:-1;;;;;5655:127:0;;:::i;642:90::-;;;:::i;87:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;87:20:0;;;;;;;;;;;;;;12619:87;;;:::i;8705:373::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8705:373:0;;;;;;;;:::i;5995:173::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5995:173:0;;;;;;;;:::i;6231:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6231:151:0;;;;;;;;;;:::i;114:27::-;;;:::i;438:104::-;;;;;;;;;;;;;;;;-1:-1:-1;438:104:0;-1:-1:-1;;;;;438:104:0;;:::i;12417:83::-;12487:5;12480:12;;;;;;;;-1:-1:-1;;12480:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12454:13;;12480:12;;12487:5;;12480:12;;12487:5;12480:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12417:83;:::o;6529:167::-;6612:4;6629:37;6638:10;6650:7;6659:6;6629:8;:37::i;:::-;-1:-1:-1;6684:4:0;6529:167;;;;:::o;5484:108::-;5572:12;;5484:108;:::o;7178:418::-;7284:4;7301:36;7311:6;7319:9;7330:6;7301:9;:36::i;:::-;-1:-1:-1;;;;;7377:19:0;;7350:24;7377:19;;;:11;:19;;;;;;;;7397:10;7377:31;;;;;;;;7427:26;;;;7419:79;;;;-1:-1:-1;;;7419:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7509:55;7518:6;7526:10;7557:6;7538:16;:25;7509:8;:55::i;:::-;-1:-1:-1;7584:4:0;;7178:418;-1:-1:-1;;;;7178:418:0:o;13345:76::-;13411:2;13345:76;:::o;13509:83::-;13580:4;13509:83;:::o;8005:211::-;8119:10;8093:4;8140:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;8140:32:0;;;;;;;;;;8093:4;;8110:76;;8131:7;;8140:45;;8110:8;:76::i;10440:428::-;202:5;;-1:-1:-1;;;;;202:5:0;188:10;:19;180:28;;;;;;-1:-1:-1;;;;;10532:21:0;::::1;10524:65;;;::::0;;-1:-1:-1;;;10524:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;10634:5;:3;:5::i;:::-;10624:6;10608:13;:11;:13::i;:::-;:22;:31;;10600:69;;;::::0;;-1:-1:-1;;;10600:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;10684:49;10713:1;10717:7;10726:6;10684:20;:49::i;:::-;10746:12;:22:::0;;;::::1;::::0;;-1:-1:-1;;;;;10779:18:0;::::1;10746:12;10779:18:::0;;;:9:::1;:18;::::0;;;;;;;:28;;;::::1;::::0;;10823:37;;;;;;;::::1;::::0;;;;;;;;;::::1;10440:428:::0;;:::o;5655:127::-;-1:-1:-1;;;;;5756:18:0;5729:7;5756:18;;;:9;:18;;;;;;;5655:127::o;642:90::-;295:12;;-1:-1:-1;;;;;295:12:0;281:10;:26;273:35;;;;;;712:12:::1;::::0;::::1;704:20:::0;;-1:-1:-1;;;;;;704:20:0::1;-1:-1:-1::0;;;;;712:12:0;;::::1;704:20:::0;;;::::1;::::0;;642:90::o;87:20::-;;;-1:-1:-1;;;;;87:20:0;;:::o;12619:87::-;12691:7;12684:14;;;;;;;;-1:-1:-1;;12684:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12658:13;;12684:14;;12691:7;;12684:14;;12691:7;12684:14;;;;;;;;;;;;;;;;;;;;;;;;8705:373;8854:10;8798:4;8842:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;8842:32:0;;;;;;;;;;8893:35;;;;8885:85;;;;-1:-1:-1;;;8885:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8981:65;8990:10;9002:7;9030:15;9011:16;:34;8981:8;:65::i;:::-;-1:-1:-1;9066:4:0;;8705:373;-1:-1:-1;;;8705:373:0:o;5995:173::-;6081:4;6098:40;6108:10;6120:9;6131:6;6098:9;:40::i;6231:151::-;-1:-1:-1;;;;;6347:18:0;;;6320:7;6347:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6231:151::o;114:27::-;;;-1:-1:-1;;;;;114:27:0;;:::o;438:104::-;202:5;;-1:-1:-1;;;;;202:5:0;188:10;:19;180:28;;;;;;511:12:::1;:23:::0;;-1:-1:-1;;;;;;511:23:0::1;-1:-1:-1::0;;;;;511:23:0;;;::::1;::::0;;;::::1;::::0;;438:104::o;11306:346::-;-1:-1:-1;;;;;11408:19:0;;11400:68;;;;-1:-1:-1;;;11400:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11487:21:0;;11479:68;;;;-1:-1:-1;;;11479:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11560:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11612:32;;;;;;;;;;;;;;;;;11306:346;;;:::o;9554:604::-;-1:-1:-1;;;;;9660:20:0;;9652:70;;;;-1:-1:-1;;;9652:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9741:23:0;;9733:71;;;;-1:-1:-1;;;9733:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9817:47;9838:6;9846:9;9857:6;9817:20;:47::i;:::-;-1:-1:-1;;;;;9901:17:0;;9877:21;9901:17;;;:9;:17;;;;;;9937:23;;;;9929:74;;;;-1:-1:-1;;;9929:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10014:17:0;;;;;;;:9;:17;;;;;;;;10034:22;;;10014:42;;10067:20;;;;;;;;;;:30;;;;;;10115:35;;;;;;;10067:20;;10115:35;;;;;;;;;;;9554:604;;;;:::o;12255:92::-;;;;:::o

Swarm Source

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