ETH Price: $2,862.78 (-2.93%)
 

Overview

Max Total Supply

695,205.47945205476 BASED

Holders

9,137 (0.00%)

Market

Price

$0.0117 @ 0.000004 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
9.831726053386035775 BASED

Value
$0.11 ( ~3.84241313485127E-05 ETH) [0.0014%]
0xbEE2D469AACB46251aE33Cca91F482e26c971dFF
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Intent-based market and p2p derivatives.

Contract Source Code Verified (Exact Match)

Contract Name:
Based

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT

/* ----------------------------------------------------------------------------------------------------------------------------------------------

BASED MARKETS on @BuildOnBase coinbase LayerTwo aka BASE
 https://based.markets < official website (going live 10th august)
 https://app.based.markets < trading interface (going live 1st september)
 For more information check out our documentation @ docs.based.markets


__/\\\\\\\\\\\\\_______/\\\\\\\\\________/\\\\\\\\\\\____/\\\\\\\\\\\\\\\__/\\\\\\\\\\\\____        
 _\/\\\/////////\\\___/\\\\\\\\\\\\\____/\\\/////////\\\_\/\\\///////////__\/\\\////////\\\__       
  _\/\\\_______\/\\\__/\\\/////////\\\__\//\\\______\///__\/\\\_____________\/\\\______\//\\\_      
   _\/\\\\\\\\\\\\\\__\/\\\_______\/\\\___\////\\\_________\/\\\\\\\\\\\_____\/\\\_______\/\\\_     
    _\/\\\/////////\\\_\/\\\\\\\\\\\\\\\______\////\\\______\/\\\///////______\/\\\_______\/\\\_    
     _\/\\\_______\/\\\_\/\\\/////////\\\_________\////\\\___\/\\\_____________\/\\\_______\/\\\_   
      _\/\\\_______\/\\\_\/\\\_______\/\\\__/\\\______\//\\\__\/\\\_____________\/\\\_______/\\\__  
       _\/\\\\\\\\\\\\\/__\/\\\_______\/\\\_\///\\\\\\\\\\\/___\/\\\\\\\\\\\\\\\_\/\\\\\\\\\\\\/___ 
        _\/////////////____\///________\///____\///////////_____\///////////////__\////////////_____

__/\\\\____________/\\\\_____/\\\\\\\\\_______/\\\\\\\\\______/\\\________/\\\__/\\\\\\\\\\\\\\\__/\\\\\\\\\\\\\\\_____/\\\\\\\\\\\___        
 _\/\\\\\\________/\\\\\\___/\\\\\\\\\\\\\___/\\\///////\\\___\/\\\_____/\\\//__\/\\\///////////__\///////\\\/////____/\\\/////////\\\_       
  _\/\\\//\\\____/\\\//\\\__/\\\/////////\\\_\/\\\_____\/\\\___\/\\\__/\\\//_____\/\\\___________________\/\\\________\//\\\______\///__      
   _\/\\\\///\\\/\\\/_\/\\\_\/\\\_______\/\\\_\/\\\\\\\\\\\/____\/\\\\\\//\\\_____\/\\\\\\\\\\\___________\/\\\_________\////\\\_________     
    _\/\\\__\///\\\/___\/\\\_\/\\\\\\\\\\\\\\\_\/\\\//////\\\____\/\\\//_\//\\\____\/\\\///////____________\/\\\____________\////\\\______    
     _\/\\\____\///_____\/\\\_\/\\\/////////\\\_\/\\\____\//\\\___\/\\\____\//\\\___\/\\\___________________\/\\\_______________\////\\\___   
      _\/\\\_____________\/\\\_\/\\\_______\/\\\_\/\\\_____\//\\\__\/\\\_____\//\\\__\/\\\___________________\/\\\________/\\\______\//\\\__  
       _\/\\\_____________\/\\\_\/\\\_______\/\\\_\/\\\______\//\\\_\/\\\______\//\\\_\/\\\\\\\\\\\\\\\_______\/\\\_______\///\\\\\\\\\\\/___ 
        _\///______________\///__\///________\///__\///________\///__\///________\///__\///////////////________\///__________\///////////_____


---------------------------------------------------------------------------------------------------------------------------------------------- */

pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./interfaces/IDibsRewarder.sol";

contract Based is ERC20 {
    string public constant domain = "https://based.markets";
    address public admin;

    uint256 public constant maxSupply = 1_000_000e18;

    address public dibsRewarder;
    uint256 public startTimestamp;
    mapping(uint256 => bool) public isRewardMinted;

    event FillDibsRewarder(address sender, uint256 day, uint256 amount);

    constructor(address admin_) ERC20("based.markets", "BASED") {
        admin = admin_;

        _mint(admin, 350_000e18);
    }

    function initialize(
        address dibsRewarder_,
        uint256 startTimestamp_
    ) external {
        require(msg.sender == admin, "ONLY ADMIN");
        require(
            dibsRewarder_ != address(0) && startTimestamp_ > block.timestamp,
            "BAD PARAMS"
        );

        dibsRewarder = dibsRewarder_;
        startTimestamp = startTimestamp_;

        _approve(address(this), dibsRewarder, maxSupply - totalSupply());

        admin = address(0);
    }

    function getDibsRewardAmount(uint256 day) public view returns (uint256) {
        if (day < 365) return 821917808219178000000;
        if (day < 365 * 2) return 547945205479452000000;
        if (day < 365 * 3) return 273972602739726000000;
        if (day < 365 * 4) return 136986301369863000000;
        if (maxSupply - totalSupply() < 136986301369863000000)
            return maxSupply - totalSupply();
        return 0;
    }

    function fillDibsRewarder(uint256 day) external {
        require(block.timestamp >= startTimestamp, "NOT STARTED");
        require(
            startTimestamp + day * 1 days < block.timestamp,
            "NOT REACHED DAY"
        );

        if (!isRewardMinted[day]) {
            isRewardMinted[day] = true;

            uint256 amount = getDibsRewardAmount(day);
            if (amount > 0) {
                _mint(address(this), amount);
                IDibsRewarder(dibsRewarder).fill(day, amount);

                emit FillDibsRewarder(msg.sender, day, amount);
            }
        }
    }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------

               _                               _ _                 _   _                                      
               | |                             | | |               | | (_)                                     
  _ __   ___   | |_ ___  __ _ _ __ ___     __ _| | | ___   ___ __ _| |_ _  ___  _ __                           
 | '_ \ / _ \  | __/ _ \/ _` | '_ ` _ \   / _` | | |/ _ \ / __/ _` | __| |/ _ \| '_ \                          
 | | | | (_) | | ||  __/ (_| | | | | | | | (_| | | | (_) | (_| (_| | |_| | (_) | | | |                         
 |_| |_|\___/   \__\___|\__,_|_| |_| |_|  \__,_|_|_|\___/ \___\__,_|\__|_|\___/|_| |_|                         
 | |               | |      | |                                                                                
 | |_ _ __ __ _  __| | ___  | |_ ___     ___  __ _ _ __ _ __                                                   
 | __| '__/ _` |/ _` |/ _ \ | __/ _ \   / _ \/ _` | '__| '_ \                                                  
 | |_| | | (_| | (_| |  __/ | || (_) | |  __/ (_| | |  | | | |                                                 
  \__|_|  \__,_|\__,_|\___|  \__\___/   \___|\__,_|_|  |_| |_|                                                 
  _      _____       _            _            _                                                               
 | |    |  __ \     | |          | |          | |                                                              
 | |    | |__) |__  | | ___   ___| | _____  __| |                                                              
 | |    |  ___/ __| | |/ _ \ / __| |/ / _ \/ _` |                                                              
 | |____| |   \__ \ | | (_) | (__|   <  __/ (_| |                                                              
 |______|_|   |___/ |_|\___/_\___|_|\_\___|\__,_|              _ _ _   _                                       
             | |           | |                                (_) | | | |                                      
   ___  _ __ | |_   _    __| |_   _ _ __ ___  _ __   __      ___| | | | |__   ___   _   _  ___  _   _ _ __ ___ 
  / _ \| '_ \| | | | |  / _` | | | | '_ ` _ \| '_ \  \ \ /\ / / | | | | '_ \ / _ \ | | | |/ _ \| | | | '__/ __|
 | (_) | | | | | |_| | | (_| | |_| | | | | | | |_) |  \ V  V /| | | | | |_) |  __/ | |_| | (_) | |_| | |  \__ \
  \___/|_| |_|_|\__, |  \__,_|\__,_|_| |_| |_| .__/    \_/\_/ |_|_|_| |_.__/ \___|  \__, |\___/ \__,_|_|  |___/
                 __/ |                       | |                                     __/ |                     
                |___/                        |_|                                    |___/                      

Welcome to intent-based derivatives for degenerates.
BASED Markets are Intent-based 
derivatives.

NO LPs.
NO OrderBooks
NO Trading Based on Oracles Prices.
NO Infinite Slippage.
NO pre locked liquidity.

Based Markets are 100% 
economically sound 
& red-pilled.



Why are these markets so Based?
PartyA Intent 
1 BTC Long

PartyB responds 
1 BTC Short
 
Alice (PartyB) sends an Intent to the contract (1 BTC Long),
Bob (PartyB) responds, and opens a countertrade (1 BTC Short).
Both sides lock collateral and are immutably 
locked into the trade.
3 Party Liquidators are now observing their position to 
ensure they are solvent at all times.



learn more on https://docs.based.markets

---------------------------------------------------------------------------------------------------------------------------------------------- */

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 default value returned by this function, unless
     * it's overridden.
     *
     * 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 18;
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

interface IDibsRewarder {
    function fill(uint256 day, uint256 amount) external;
    function setBased(address) external;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "metadata": {
    "bytecodeHash": "none"
  },
  "viaIR": true,
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"admin_","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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"day","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FillDibsRewarder","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":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":[],"name":"dibsRewarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"domain","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"day","type":"uint256"}],"name":"fillDibsRewarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"day","type":"uint256"}],"name":"getDibsRewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"dibsRewarder_","type":"address"},{"internalType":"uint256","name":"startTimestamp_","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isRewardMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080346200040957601f19906001600160401b03601f620013383881900382810186168501848111868210176200030d578592829160405283396020948591810103126200040957516001600160a01b03811694908590036200040957620000666200040e565b90600d82526c62617365642e6d61726b65747360981b858301526200008a6200040e565b9360059283865264109054d15160da1b878701528051908282116200030d5760039182546001928382811c92168015620003fe575b8b831014620003e857818984931162000394575b508a908983116001146200032f5760009262000323575b505060001982851b1c191690821b1782555b86519283116200030d5760049687548281811c9116801562000302575b8a821014620002ed57878111620002a4575b5088908785116001146200023b57849550908492916000956200022f575b50501b92600019911b1c19161783555b80546001600160a01b031916851790558315620001ef5750600254694a1d89bb94865ec0000091828201809211620001da57506002556000838152808352604080822080548401905551918252917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a3604051610f0990816200042f8239f35b601190634e487b7160e01b6000525260246000fd5b6064926040519262461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b01519350388062000149565b92919484169288600052848a6000209460005b8c898383106200028c575050501062000271575b50505050811b01835562000159565b01519060f884600019921b161c191690553880808062000262565b8686015189559097019694850194889350016200024e565b886000528960002088808701891c8201928c8810620002e3575b01881c019083905b828110620002d65750506200012b565b60008155018390620002c6565b92508192620002be565b602289634e487b7160e01b6000525260246000fd5b90607f169062000119565b634e487b7160e01b600052604160045260246000fd5b015190503880620000ea565b908785941691866000528c600020928d6000905b8282106200037c575050841162000363575b505050811b018255620000fc565b015160001983871b60f8161c1916905538808062000355565b83850151865588979095019493840193018e62000343565b909150846000528a600020898085018a1c8201928d8610620003de575b91869186959493018b1c01915b828110620003ce575050620000d3565b60008155859450869101620003be565b92508192620003b1565b634e487b7160e01b600052602260045260246000fd5b91607f1691620000bf565b600080fd5b60408051919082016001600160401b038111838210176200030d5760405256fe608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde0314610a0c57508163095ea7b3146109e25781630fd175b5146109bb57816318160ddd1461099c57816323b872dd146108d1578163313ce567146108b5578163395093511461086657816370a082311461083057816395d89b41146107315781639f768510146104cc578163a457c2d71461040c578163a4a2ce9a146103db578163a9059cbb146103aa578163c2fb26a614610327578163cd6dc687146101df57508063d5abeb01146101bb578063dd62ed3e14610170578063e6fd48bc14610152578063f4ecf9771461012b5763f851a4401461010157600080fd5b346101275781600319360112610127576020906001600160a01b03600554169051908152f35b5080fd5b50346101275781600319360112610127576020906001600160a01b03600654169051908152f35b50346101275781600319360112610127576020906007549051908152f35b503461012757806003193601126101275760209161018c610b46565b82610195610b61565b926001600160a01b03809316815260018652209116600052825280600020549051908152f35b50346101275781600319360112610127576020905169d3c21bcecceda10000008152f35b8383346101275780600319360112610127576101f9610b46565b90602435916001600160a01b0390816005541633036102e4571690811515806102db575b156102995750600654907fffffffffffffffffffffffff00000000000000000000000000000000000000009281848416176006556007556002549169d3c21bcecceda100000092830392831161028657908461027c9392161730610d6f565b6005541660055580f35b634e487b7160e01b855260118652602485fd5b5162461bcd60e51b8152602081860152600a60248201527f42414420504152414d53000000000000000000000000000000000000000000006044820152606490fd5b5042831161021d565b825162461bcd60e51b8152602081880152600a60248201527f4f4e4c592041444d494e000000000000000000000000000000000000000000006044820152606490fd5b8284346103a757806003193601126103a7575080519080820182811067ffffffffffffffff8211176103925761038e93508152601582527f68747470733a2f2f62617365642e6d61726b657473000000000000000000000060208301525191829182610afd565b0390f35b604184634e487b7160e01b6000525260246000fd5b80fd5b5050346101275780600319360112610127576020906103d46103ca610b46565b6024359033610bd2565b5160018152f35b905034610408576020366003190112610408578160209360ff923581526008855220541690519015158152f35b8280fd5b905082346103a757826003193601126103a757610427610b46565b9183602435923381526001602052206001600160a01b038416600052602052836000205490828210610463576020856103d48585038733610d6f565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b905034610408576020918260031936011261072d5781356007548042106106ea57620151808083029083820414831517156106d75761050c904292610baf565b1015610695578085526008845260ff828620541615610529578480f35b818520805460ff1916600117905561054081610e71565b928361054b57508480f35b301561065257859061055f85600254610baf565b6002553082528186528382208581540190558351858152827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef883093a36001600160a01b0360065416803b156104085782906044865180958193633c29fc4360e01b835288878401528a60248401525af1801561064857610617575b50508151338152938401528201527f95fc4e38d158c19512c4b2d45e28ad59668fded2ad418eb2c16e97e110bb04de90606090a1388080808480f35b67ffffffffffffffff829793971161063557508252938160606105db565b634e487b7160e01b835260419052602482fd5b84513d89823e3d90fd5b825162461bcd60e51b8152908101859052601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b5091606492519162461bcd60e51b8352820152600f60248201527f4e4f5420524541434845442044415900000000000000000000000000000000006044820152fd5b634e487b7160e01b875260118552602487fd5b825162461bcd60e51b8152808501869052600b60248201527f4e4f5420535441525445440000000000000000000000000000000000000000006044820152606490fd5b8380fd5b838334610127578160031936011261012757805191809380549160019083821c92828516948515610826575b6020958686108114610813578589529081156107ef5750600114610797575b61038e878761078d828c0383610b77565b5191829182610afd565b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8284106107dc575050508261038e9461078d9282010194868061077c565b80548685018801529286019281016107be565b60ff19168887015250505050151560051b830101925061078d8261038e868061077c565b634e487b7160e01b845260228352602484fd5b93607f169361075d565b50503461012757602036600319011261012757806020926001600160a01b03610857610b46565b16815280845220549051908152f35b5050346101275780600319360112610127576103d46020926108ae610889610b46565b91338152600186528481206001600160a01b0384168252865284602435912054610baf565b9033610d6f565b5050346101275781600319360112610127576020905160128152f35b83915034610127576060366003190112610127576108ed610b46565b6108f5610b61565b9184604435946001600160a01b038416815260016020528181203382526020522054906000198203610930575b6020866103d4878787610bd2565b848210610959575091839161094e602096956103d495033383610d6f565b919394819350610922565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346101275781600319360112610127576020906002549051908152f35b8284346103a75760203660031901126103a757506109db60209235610e71565b9051908152f35b5050346101275780600319360112610127576020906103d4610a02610b46565b6024359033610d6f565b9291503461072d578360031936011261072d57600354600181811c9186908281168015610af3575b6020958686108214610ae05750848852908115610abe5750600114610a65575b61038e868661078d828b0383610b77565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610aab575050508261038e9461078d928201019438610a54565b8054868501880152928601928101610a8e565b60ff191687860152505050151560051b830101925061078d8261038e38610a54565b634e487b7160e01b845260229052602483fd5b93607f1693610a34565b6020808252825181830181905290939260005b828110610b3257505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610b10565b600435906001600160a01b0382168203610b5c57565b600080fd5b602435906001600160a01b0382168203610b5c57565b90601f8019910116810190811067ffffffffffffffff821117610b9957604052565b634e487b7160e01b600052604160045260246000fd5b91908201809211610bbc57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03809116918215610d045716918215610cb357600082815280602052604081205491808310610c4857604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608490fd5b6001600160a01b03809116918215610e205716918215610dd05760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b61016d8110610eee576102da8110610ee0576104478110610ed2576105b411610ec55760025469d3c21bcecceda1000000908103908111610bbc5768076d111b4fb54a4fc08110610ec25750600090565b90565b68076d111b4fb54a4fc090565b50680eda22369f6a949f8090565b50681db4446d3ed5293f0090565b50682c8e66a3de3fbdde809056fea164736f6c6343000811000a00000000000000000000000027b0249681ae7bcee5e6477c6ff99acc1e8f65e5

Deployed Bytecode

0x608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde0314610a0c57508163095ea7b3146109e25781630fd175b5146109bb57816318160ddd1461099c57816323b872dd146108d1578163313ce567146108b5578163395093511461086657816370a082311461083057816395d89b41146107315781639f768510146104cc578163a457c2d71461040c578163a4a2ce9a146103db578163a9059cbb146103aa578163c2fb26a614610327578163cd6dc687146101df57508063d5abeb01146101bb578063dd62ed3e14610170578063e6fd48bc14610152578063f4ecf9771461012b5763f851a4401461010157600080fd5b346101275781600319360112610127576020906001600160a01b03600554169051908152f35b5080fd5b50346101275781600319360112610127576020906001600160a01b03600654169051908152f35b50346101275781600319360112610127576020906007549051908152f35b503461012757806003193601126101275760209161018c610b46565b82610195610b61565b926001600160a01b03809316815260018652209116600052825280600020549051908152f35b50346101275781600319360112610127576020905169d3c21bcecceda10000008152f35b8383346101275780600319360112610127576101f9610b46565b90602435916001600160a01b0390816005541633036102e4571690811515806102db575b156102995750600654907fffffffffffffffffffffffff00000000000000000000000000000000000000009281848416176006556007556002549169d3c21bcecceda100000092830392831161028657908461027c9392161730610d6f565b6005541660055580f35b634e487b7160e01b855260118652602485fd5b5162461bcd60e51b8152602081860152600a60248201527f42414420504152414d53000000000000000000000000000000000000000000006044820152606490fd5b5042831161021d565b825162461bcd60e51b8152602081880152600a60248201527f4f4e4c592041444d494e000000000000000000000000000000000000000000006044820152606490fd5b8284346103a757806003193601126103a7575080519080820182811067ffffffffffffffff8211176103925761038e93508152601582527f68747470733a2f2f62617365642e6d61726b657473000000000000000000000060208301525191829182610afd565b0390f35b604184634e487b7160e01b6000525260246000fd5b80fd5b5050346101275780600319360112610127576020906103d46103ca610b46565b6024359033610bd2565b5160018152f35b905034610408576020366003190112610408578160209360ff923581526008855220541690519015158152f35b8280fd5b905082346103a757826003193601126103a757610427610b46565b9183602435923381526001602052206001600160a01b038416600052602052836000205490828210610463576020856103d48585038733610d6f565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b905034610408576020918260031936011261072d5781356007548042106106ea57620151808083029083820414831517156106d75761050c904292610baf565b1015610695578085526008845260ff828620541615610529578480f35b818520805460ff1916600117905561054081610e71565b928361054b57508480f35b301561065257859061055f85600254610baf565b6002553082528186528382208581540190558351858152827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef883093a36001600160a01b0360065416803b156104085782906044865180958193633c29fc4360e01b835288878401528a60248401525af1801561064857610617575b50508151338152938401528201527f95fc4e38d158c19512c4b2d45e28ad59668fded2ad418eb2c16e97e110bb04de90606090a1388080808480f35b67ffffffffffffffff829793971161063557508252938160606105db565b634e487b7160e01b835260419052602482fd5b84513d89823e3d90fd5b825162461bcd60e51b8152908101859052601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b5091606492519162461bcd60e51b8352820152600f60248201527f4e4f5420524541434845442044415900000000000000000000000000000000006044820152fd5b634e487b7160e01b875260118552602487fd5b825162461bcd60e51b8152808501869052600b60248201527f4e4f5420535441525445440000000000000000000000000000000000000000006044820152606490fd5b8380fd5b838334610127578160031936011261012757805191809380549160019083821c92828516948515610826575b6020958686108114610813578589529081156107ef5750600114610797575b61038e878761078d828c0383610b77565b5191829182610afd565b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8284106107dc575050508261038e9461078d9282010194868061077c565b80548685018801529286019281016107be565b60ff19168887015250505050151560051b830101925061078d8261038e868061077c565b634e487b7160e01b845260228352602484fd5b93607f169361075d565b50503461012757602036600319011261012757806020926001600160a01b03610857610b46565b16815280845220549051908152f35b5050346101275780600319360112610127576103d46020926108ae610889610b46565b91338152600186528481206001600160a01b0384168252865284602435912054610baf565b9033610d6f565b5050346101275781600319360112610127576020905160128152f35b83915034610127576060366003190112610127576108ed610b46565b6108f5610b61565b9184604435946001600160a01b038416815260016020528181203382526020522054906000198203610930575b6020866103d4878787610bd2565b848210610959575091839161094e602096956103d495033383610d6f565b919394819350610922565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b5050346101275781600319360112610127576020906002549051908152f35b8284346103a75760203660031901126103a757506109db60209235610e71565b9051908152f35b5050346101275780600319360112610127576020906103d4610a02610b46565b6024359033610d6f565b9291503461072d578360031936011261072d57600354600181811c9186908281168015610af3575b6020958686108214610ae05750848852908115610abe5750600114610a65575b61038e868661078d828b0383610b77565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410610aab575050508261038e9461078d928201019438610a54565b8054868501880152928601928101610a8e565b60ff191687860152505050151560051b830101925061078d8261038e38610a54565b634e487b7160e01b845260229052602483fd5b93607f1693610a34565b6020808252825181830181905290939260005b828110610b3257505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610b10565b600435906001600160a01b0382168203610b5c57565b600080fd5b602435906001600160a01b0382168203610b5c57565b90601f8019910116810190811067ffffffffffffffff821117610b9957604052565b634e487b7160e01b600052604160045260246000fd5b91908201809211610bbc57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03809116918215610d045716918215610cb357600082815280602052604081205491808310610c4857604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608490fd5b6001600160a01b03809116918215610e205716918215610dd05760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b61016d8110610eee576102da8110610ee0576104478110610ed2576105b411610ec55760025469d3c21bcecceda1000000908103908111610bbc5768076d111b4fb54a4fc08110610ec25750600090565b90565b68076d111b4fb54a4fc090565b50680eda22369f6a949f8090565b50681db4446d3ed5293f0090565b50682c8e66a3de3fbdde809056fea164736f6c6343000811000a

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

00000000000000000000000027b0249681ae7bcee5e6477c6ff99acc1e8f65e5

-----Decoded View---------------
Arg [0] : admin_ (address): 0x27B0249681aE7BceE5E6477c6FF99acc1E8F65E5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000027b0249681ae7bcee5e6477c6ff99acc1e8f65e5


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.