ETH Price: $2,975.53 (+3.86%)
Gas: 2 Gwei

Token

Congruent DAO Vote Token (vGaas)
 

Overview

Max Total Supply

2,082.512522211623295664 vGaas

Holders

1,366

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
realtybytommy.eth
Balance
0.981522441 vGaas

Value
$0.00
0x77c35a443b7124f5134c5fc0b6c3eb65ef99fbaa
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:
vGaas

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : vGaas.sol
// SPDX-License-Identifier: AGPL-3.0-or-later



pragma solidity 0.7.5;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "../libs/ERC20.sol";
import "../libs/DaoOwnable.sol";

contract vGaas is ERC20, DaoOwnable {
    using SafeMath for uint256;

    IERC20 public wsMeta;

    mapping(address => uint256) public unstakeTime;
    mapping(address => uint256) public unstakeValue;
    uint256 public unstakeCD = 14;

    event Stake(address indexed user, uint256 amount);
    event RequestUnstake(address indexed user, uint256 amount, uint256 unlockTime);
    event CancelUnstake(address indexed user, uint256 amount);
    event Unstake(address indexed user, uint256 amount);

    constructor(IERC20 wsMeta_) ERC20("Congruent DAO Vote Token", "vGaas", 18) {
        wsMeta = wsMeta_;
    }

    function stake(uint256 amount) external {
        wsMeta.transferFrom(msg.sender, address(this), amount);
        _mint(msg.sender, amount);
		unstakeTime[msg.sender] = type(uint256).max;
        emit Stake(msg.sender, amount);
    }

    function requestUnstake(uint256 amount) external {
        _burn(msg.sender, amount);
        unstakeTime[msg.sender] = block.timestamp + unstakeCD * 1 days;
        unstakeValue[msg.sender] = unstakeValue[msg.sender].add(amount);
        emit RequestUnstake(msg.sender, amount, unstakeTime[msg.sender]);
    }

    function cancelUnstake(uint256 amount) external {
        unstakeValue[msg.sender] = unstakeValue[msg.sender].sub(amount);
        _mint(msg.sender, amount);
        emit CancelUnstake(msg.sender, amount);
    }

    function unstake() external {
        require(unstakeTime[msg.sender] <= block.timestamp, "unlocking...");
        unstakeTime[msg.sender] = type(uint256).max;
        wsMeta.transfer(msg.sender, unstakeValue[msg.sender]);
        emit Unstake(msg.sender, unstakeValue[msg.sender]);
        unstakeValue[msg.sender] = 0;
    }

    function moveWsGaas(uint256 amount) external onlyManager {
        wsMeta.transfer(msg.sender, amount);
    }

    function setCoolDown(uint256 coolDownDays) external onlyManager {
        require(coolDownDays <= 30, "bruh that's tooooo looooong");
        unstakeCD = coolDownDays;
    }

    function transfer(address, uint256) public pure override returns (bool) {
        revert("no transfer");
    }

    function transferFrom(address, address, uint256) public pure override returns (bool) {
        revert("no transfer");
    }
}

File 2 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.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;
    }
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-or-later



pragma solidity 0.7.5;

import "./IERC20.sol";
import "./Context.sol";

/**
 * @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 Context, IERC20 {
    mapping (address => uint256) private _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;
	uint8 private _decimals;
	

    /**
     * @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 three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
		_decimals = decimals_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @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(_msgSender(), 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(_msgSender(), 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][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), 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(_msgSender(), spender, _allowances[_msgSender()][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[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), 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) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), 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, address, uint256) internal virtual { }
}

File 4 of 6 : DaoOwnable.sol
// SPDX-License-Identifier: AGPL-3.0-or-later


pragma solidity 0.7.5;

contract DaoOwnable{

    address internal _owner;
    address internal _newOwner;

    event OwnershipPushed(address indexed previousOwner, address indexed newOwner);
    event OwnershipPulled(address indexed previousOwner, address indexed newOwner);

    constructor () {
        _owner = msg.sender;
        emit OwnershipPushed( address(0), _owner );
    }

    function manager() public view returns (address) {
        return _owner;
    }

    modifier onlyManager() {
        require( _owner == msg.sender, "Ownable: caller is not the owner" );
        _;
    }

    function renounceManagement() public onlyManager() {
        emit OwnershipPushed( _owner, address(0) );
        _owner = address(0);
    }

    function pushManagement( address newOwner_ ) public onlyManager() {
        require( newOwner_ != address(0), "Ownable: new owner is the zero address");
        emit OwnershipPushed( _owner, newOwner_ );
        _newOwner = newOwner_;
    }
    
    function pullManagement() public {
        require( msg.sender == _newOwner, "Ownable: must be new owner to pull");
        emit OwnershipPulled( _owner, _newOwner );
        _owner = _newOwner;
    }
}

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: AGPL-3.0-or-later


pragma solidity 0.7.5;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {

	/**
     * @dev Returns the decimals of token.
     */
	function decimals() external view returns (uint8);
	
    /**
     * @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 6 of 6 : Context.sol
// SPDX-License-Identifier: AGPL-3.0-or-later

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"wsMeta_","type":"address"}],"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CancelUnstake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipPulled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipPushed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockTime","type":"uint256"}],"name":"RequestUnstake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unstake","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":"uint256","name":"amount","type":"uint256"}],"name":"cancelUnstake","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":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"moveWsGaas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pullManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner_","type":"address"}],"name":"pushManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"requestUnstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"coolDownDays","type":"uint256"}],"name":"setCoolDown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstakeCD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unstakeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unstakeValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wsMeta","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600e600a553480156200001657600080fd5b50604051620015e9380380620015e9833981810160405260208110156200003c57600080fd5b5051604080518082018252601881527f436f6e677275656e742044414f20566f746520546f6b656e0000000000000000602082810191825283518085019094526005845264764761617360d81b908401528151919291601291620000a4916003919062000147565b508151620000ba90600490602085019062000147565b506005805460ff191660ff9290921691909117610100600160a81b03191661010033810291909117918290556040516001600160a01b0391909204169250600091507fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908290a3600780546001600160a01b0319166001600160a01b0392909216919091179055620001f3565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b6113e680620002036000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806339509351116100de5780637c56687a11610097578063a694fc3a11610071578063a694fc3a14610440578063a9059cbb1461045d578063cedba1fe14610489578063dd62ed3e146104a657610173565b80637c56687a146103ef57806395d89b411461040c578063a457c2d71461041457610173565b8063395093511461034357806346f68ee91461036f578063481c6a75146103955780635a96ac0a146103b957806367b64d9b146103c157806370a08231146103c957610173565b806326c1d1341161013057806326c1d134146102ac5780632ac1aa35146102d25780632b187b2b146102f85780632def662014610315578063313ce5671461031d578063353abda71461033b57610173565b806306fdde0314610178578063089208d8146101f5578063095ea7b3146101ff57806318160ddd1461023f578063230957211461025957806323b872dd14610276575b600080fd5b6101806104d4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fd61056a565b005b61022b6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561060c565b604080519115158252519081900360200190f35b610247610629565b60408051918252519081900360200190f35b6101fd6004803603602081101561026f57600080fd5b503561062f565b61022b6004803603606081101561028c57600080fd5b506001600160a01b038135811691602081013590911690604001356106c2565b610247600480360360208110156102c257600080fd5b50356001600160a01b03166106ff565b610247600480360360208110156102e857600080fd5b50356001600160a01b0316610711565b6101fd6004803603602081101561030e57600080fd5b5035610723565b6101fd610793565b6103256108d6565b6040805160ff9092168252519081900360200190f35b6102476108df565b61022b6004803603604081101561035957600080fd5b506001600160a01b0381351690602001356108e5565b6101fd6004803603602081101561038557600080fd5b50356001600160a01b0316610930565b61039d610a28565b604080516001600160a01b039092168252519081900360200190f35b6101fd610a3c565b61039d610af5565b610247600480360360208110156103df57600080fd5b50356001600160a01b0316610b04565b6101fd6004803603602081101561040557600080fd5b5035610b1f565b610180610bcc565b61022b6004803603604081101561042a57600080fd5b506001600160a01b038135169060200135610c2d565b6101fd6004803603602081101561045657600080fd5b5035610cc5565b61022b6004803603604081101561047357600080fd5b506001600160a01b0381351690602001356106c2565b6101fd6004803603602081101561049f57600080fd5b5035610da2565b610247600480360360408110156104bc57600080fd5b506001600160a01b0381358116916020013516610e77565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b60055461010090046001600160a01b031633146105bc576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908390a360058054610100600160a81b0319169055565b6000610620610619610ea2565b8484610ea6565b50600192915050565b60025490565b6106393382610f92565b600a5433600090815260086020908152604080832062015180909402420190935560099052205461066a908261109c565b33600081815260096020908152604080832094909455600881529083902054835185815291820152825191927fc80277265097707f6f12a4ac4c09d46c9926e2eea2536f63616cb04d9fcad7d692918290030190a250565b6040805162461bcd60e51b815260206004820152600b60248201526a3737903a3930b739b332b960a91b6044820152905160009181900360640190fd5b60096020526000908152604090205481565b60086020526000908152604090205481565b3360009081526009602052604090205461073d90826110fd565b3360008181526009602052604090209190915561075a908261113f565b60408051828152905133917fa7f85e651af05027a4f843edc9b8e9aa3b3afb933dfc1e61752cb2bb3b13e88a919081900360200190a250565b336000908152600860205260409020544210156107e6576040805162461bcd60e51b815260206004820152600c60248201526b3ab73637b1b5b4b73397171760a11b604482015290519081900360640190fd5b33600081815260086020908152604080832060001990556007546009835281842054825163a9059cbb60e01b81526004810196909652602486015290516001600160a01b039091169363a9059cbb9360448083019493928390030190829087803b15801561085357600080fd5b505af1158015610867573d6000803e3d6000fd5b505050506040513d602081101561087d57600080fd5b50503360008181526009602090815260409182902054825190815291517f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd9281900390910190a233600090815260096020526040812055565b60055460ff1690565b600a5481565b60006106206108f2610ea2565b848460016000610900610ea2565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205401610ea6565b60055461010090046001600160a01b03163314610982576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b6001600160a01b0381166109c75760405162461bcd60e51b81526004018080602001828103825260268152602001806112bd6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b60055461010090046001600160a01b031690565b6006546001600160a01b03163314610a855760405162461bcd60e51b81526004018080602001828103825260228152602001806113056022913960400191505060405180910390fd5b6006546005546040516001600160a01b0392831692610100909204909116907faa151555690c956fc3ea32f106bb9f119b5237a061eaa8557cff3e51e3792c8d90600090a3600654600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6007546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b60055461010090046001600160a01b03163314610b71576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b601e811115610bc7576040805162461bcd60e51b815260206004820152601b60248201527f627275682074686174277320746f6f6f6f6f206c6f6f6f6f6f6e670000000000604482015290519081900360640190fd5b600a55565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105605780601f1061053557610100808354040283529160200191610560565b60008060016000610c3c610ea2565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610ca75760405162461bcd60e51b815260040180806020018281038252602581526020018061138c6025913960400191505060405180910390fd5b610cbb610cb2610ea2565b85858403610ea6565b5060019392505050565b600754604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015610d1f57600080fd5b505af1158015610d33573d6000803e3d6000fd5b505050506040513d6020811015610d4957600080fd5b50610d569050338261113f565b336000818152600860209081526040918290206000199055815184815291517febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a9281900390910190a250565b60055461010090046001600160a01b03163314610df4576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b6007546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b158015610e4857600080fd5b505af1158015610e5c573d6000803e3d6000fd5b505050506040513d6020811015610e7257600080fd5b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610eeb5760405162461bcd60e51b81526004018080602001828103825260248152602001806113686024913960400191505060405180910390fd5b6001600160a01b038216610f305760405162461bcd60e51b81526004018080602001828103825260228152602001806112e36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610fd75760405162461bcd60e51b81526004018080602001828103825260218152602001806113476021913960400191505060405180910390fd5b610fe382600083610e72565b6001600160a01b0382166000908152602081905260409020548181101561103b5760405162461bcd60e51b815260040180806020018281038252602281526020018061129b6022913960400191505060405180910390fd5b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b6000828201838110156110f6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006110f683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611203565b6001600160a01b03821661119a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6111a660008383610e72565b60028054820190556001600160a01b038216600081815260208181526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b600081848411156112925760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561125757818101518382015260200161123f565b50505050905090810190601f1680156112845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f776e61626c653a206d757374206265206e6577206f776e657220746f2070756c6c4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209b46a68444902977d1949b3c5a43e3d3c59d3c83eb943ed5ee1ece8de03e6c2464736f6c634300070500330000000000000000000000006b5735cbdd0da81d18b5c2b3acaf8f27dcad9edb

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806339509351116100de5780637c56687a11610097578063a694fc3a11610071578063a694fc3a14610440578063a9059cbb1461045d578063cedba1fe14610489578063dd62ed3e146104a657610173565b80637c56687a146103ef57806395d89b411461040c578063a457c2d71461041457610173565b8063395093511461034357806346f68ee91461036f578063481c6a75146103955780635a96ac0a146103b957806367b64d9b146103c157806370a08231146103c957610173565b806326c1d1341161013057806326c1d134146102ac5780632ac1aa35146102d25780632b187b2b146102f85780632def662014610315578063313ce5671461031d578063353abda71461033b57610173565b806306fdde0314610178578063089208d8146101f5578063095ea7b3146101ff57806318160ddd1461023f578063230957211461025957806323b872dd14610276575b600080fd5b6101806104d4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fd61056a565b005b61022b6004803603604081101561021557600080fd5b506001600160a01b03813516906020013561060c565b604080519115158252519081900360200190f35b610247610629565b60408051918252519081900360200190f35b6101fd6004803603602081101561026f57600080fd5b503561062f565b61022b6004803603606081101561028c57600080fd5b506001600160a01b038135811691602081013590911690604001356106c2565b610247600480360360208110156102c257600080fd5b50356001600160a01b03166106ff565b610247600480360360208110156102e857600080fd5b50356001600160a01b0316610711565b6101fd6004803603602081101561030e57600080fd5b5035610723565b6101fd610793565b6103256108d6565b6040805160ff9092168252519081900360200190f35b6102476108df565b61022b6004803603604081101561035957600080fd5b506001600160a01b0381351690602001356108e5565b6101fd6004803603602081101561038557600080fd5b50356001600160a01b0316610930565b61039d610a28565b604080516001600160a01b039092168252519081900360200190f35b6101fd610a3c565b61039d610af5565b610247600480360360208110156103df57600080fd5b50356001600160a01b0316610b04565b6101fd6004803603602081101561040557600080fd5b5035610b1f565b610180610bcc565b61022b6004803603604081101561042a57600080fd5b506001600160a01b038135169060200135610c2d565b6101fd6004803603602081101561045657600080fd5b5035610cc5565b61022b6004803603604081101561047357600080fd5b506001600160a01b0381351690602001356106c2565b6101fd6004803603602081101561049f57600080fd5b5035610da2565b610247600480360360408110156104bc57600080fd5b506001600160a01b0381358116916020013516610e77565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b5050505050905090565b60055461010090046001600160a01b031633146105bc576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908390a360058054610100600160a81b0319169055565b6000610620610619610ea2565b8484610ea6565b50600192915050565b60025490565b6106393382610f92565b600a5433600090815260086020908152604080832062015180909402420190935560099052205461066a908261109c565b33600081815260096020908152604080832094909455600881529083902054835185815291820152825191927fc80277265097707f6f12a4ac4c09d46c9926e2eea2536f63616cb04d9fcad7d692918290030190a250565b6040805162461bcd60e51b815260206004820152600b60248201526a3737903a3930b739b332b960a91b6044820152905160009181900360640190fd5b60096020526000908152604090205481565b60086020526000908152604090205481565b3360009081526009602052604090205461073d90826110fd565b3360008181526009602052604090209190915561075a908261113f565b60408051828152905133917fa7f85e651af05027a4f843edc9b8e9aa3b3afb933dfc1e61752cb2bb3b13e88a919081900360200190a250565b336000908152600860205260409020544210156107e6576040805162461bcd60e51b815260206004820152600c60248201526b3ab73637b1b5b4b73397171760a11b604482015290519081900360640190fd5b33600081815260086020908152604080832060001990556007546009835281842054825163a9059cbb60e01b81526004810196909652602486015290516001600160a01b039091169363a9059cbb9360448083019493928390030190829087803b15801561085357600080fd5b505af1158015610867573d6000803e3d6000fd5b505050506040513d602081101561087d57600080fd5b50503360008181526009602090815260409182902054825190815291517f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd9281900390910190a233600090815260096020526040812055565b60055460ff1690565b600a5481565b60006106206108f2610ea2565b848460016000610900610ea2565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205401610ea6565b60055461010090046001600160a01b03163314610982576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b6001600160a01b0381166109c75760405162461bcd60e51b81526004018080602001828103825260268152602001806112bd6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b60055461010090046001600160a01b031690565b6006546001600160a01b03163314610a855760405162461bcd60e51b81526004018080602001828103825260228152602001806113056022913960400191505060405180910390fd5b6006546005546040516001600160a01b0392831692610100909204909116907faa151555690c956fc3ea32f106bb9f119b5237a061eaa8557cff3e51e3792c8d90600090a3600654600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6007546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b60055461010090046001600160a01b03163314610b71576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b601e811115610bc7576040805162461bcd60e51b815260206004820152601b60248201527f627275682074686174277320746f6f6f6f6f206c6f6f6f6f6f6e670000000000604482015290519081900360640190fd5b600a55565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105605780601f1061053557610100808354040283529160200191610560565b60008060016000610c3c610ea2565b6001600160a01b0390811682526020808301939093526040918201600090812091881681529252902054905082811015610ca75760405162461bcd60e51b815260040180806020018281038252602581526020018061138c6025913960400191505060405180910390fd5b610cbb610cb2610ea2565b85858403610ea6565b5060019392505050565b600754604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015610d1f57600080fd5b505af1158015610d33573d6000803e3d6000fd5b505050506040513d6020811015610d4957600080fd5b50610d569050338261113f565b336000818152600860209081526040918290206000199055815184815291517febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a9281900390910190a250565b60055461010090046001600160a01b03163314610df4576040805162461bcd60e51b81526020600482018190526024820152600080516020611327833981519152604482015290519081900360640190fd5b6007546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b158015610e4857600080fd5b505af1158015610e5c573d6000803e3d6000fd5b505050506040513d6020811015610e7257600080fd5b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610eeb5760405162461bcd60e51b81526004018080602001828103825260248152602001806113686024913960400191505060405180910390fd5b6001600160a01b038216610f305760405162461bcd60e51b81526004018080602001828103825260228152602001806112e36022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610fd75760405162461bcd60e51b81526004018080602001828103825260218152602001806113476021913960400191505060405180910390fd5b610fe382600083610e72565b6001600160a01b0382166000908152602081905260409020548181101561103b5760405162461bcd60e51b815260040180806020018281038252602281526020018061129b6022913960400191505060405180910390fd5b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b6000828201838110156110f6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006110f683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611203565b6001600160a01b03821661119a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6111a660008383610e72565b60028054820190556001600160a01b038216600081815260208181526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b600081848411156112925760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561125757818101518382015260200161123f565b50505050905090810190601f1680156112845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f776e61626c653a206d757374206265206e6577206f776e657220746f2070756c6c4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209b46a68444902977d1949b3c5a43e3d3c59d3c83eb943ed5ee1ece8de03e6c2464736f6c63430007050033

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

0000000000000000000000006b5735cbdd0da81d18b5c2b3acaf8f27dcad9edb

-----Decoded View---------------
Arg [0] : wsMeta_ (address): 0x6B5735cbdD0dA81d18B5c2b3ACaF8F27dcad9EdB

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006b5735cbdd0da81d18b5c2b3acaf8f27dcad9edb


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.