ETH Price: $3,402.47 (+1.71%)
Gas: 6.78 Gwei

Contract

0x6aF53C6ec427525f7240E211941223288a0E7C66
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

WARPED (WARPED) (@$0.0008)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve214986172024-12-28 4:36:5912 hrs ago1735360619IN
Warped Games: WARPED Token
0 ETH0.000213054.57831672
Approve214929392024-12-27 9:36:3531 hrs ago1735292195IN
Warped Games: WARPED Token
0 ETH0.000448489.68495655
Approve214929392024-12-27 9:36:3531 hrs ago1735292195IN
Warped Games: WARPED Token
0 ETH0.000448489.68495655
Approve214924792024-12-27 8:03:3533 hrs ago1735286615IN
Warped Games: WARPED Token
0 ETH0.000339877.30374292
Approve214917582024-12-27 5:37:5935 hrs ago1735277879IN
Warped Games: WARPED Token
0 ETH0.000193994.18723619
Approve214894542024-12-26 21:54:2343 hrs ago1735250063IN
Warped Games: WARPED Token
0 ETH0.00021657.35534083
Approve214894282024-12-26 21:49:1143 hrs ago1735249751IN
Warped Games: WARPED Token
0 ETH0.000346787.45220366
Approve214858872024-12-26 9:56:592 days ago1735207019IN
Warped Games: WARPED Token
0 ETH0.000322846.92877225
Approve214798682024-12-25 13:44:353 days ago1735134275IN
Warped Games: WARPED Token
0 ETH0.000383928.25028332
Approve214782202024-12-25 8:13:233 days ago1735114403IN
Warped Games: WARPED Token
0 ETH0.000205914.41927302
Approve214779862024-12-25 7:26:353 days ago1735111595IN
Warped Games: WARPED Token
0 ETH0.000302436.49913156
Approve214777432024-12-25 6:37:233 days ago1735108643IN
Warped Games: WARPED Token
0 ETH0.000326057.00670962
Transfer214772292024-12-25 4:53:593 days ago1735102439IN
Warped Games: WARPED Token
0 ETH0.000348145.78791414
Approve214748712024-12-24 20:59:593 days ago1735073999IN
Warped Games: WARPED Token
0 ETH0.000260715.59542727
Transfer214748562024-12-24 20:56:593 days ago1735073819IN
Warped Games: WARPED Token
0 ETH0.000337164.65376103
Approve214718752024-12-24 10:57:114 days ago1735037831IN
Warped Games: WARPED Token
0 ETH0.000281856.04897334
Transfer214718752024-12-24 10:57:114 days ago1735037831IN
Warped Games: WARPED Token
0 ETH0.000544679.05510031
Approve214690322024-12-24 1:24:234 days ago1735003463IN
Warped Games: WARPED Token
0 ETH0.000457439.8299518
Transfer214690072024-12-24 1:19:234 days ago1735003163IN
Warped Games: WARPED Token
0 ETH0.000649468.40724551
Transfer214650912024-12-23 12:09:235 days ago1734955763IN
Warped Games: WARPED Token
0 ETH0.000498318.28438506
Transfer214650012024-12-23 11:50:595 days ago1734954659IN
Warped Games: WARPED Token
0 ETH0.000545367.06074502
Approve214641532024-12-23 9:00:475 days ago1734944447IN
Warped Games: WARPED Token
0 ETH0.000241025.17284378
Transfer214632872024-12-23 6:05:475 days ago1734933947IN
Warped Games: WARPED Token
0 ETH0.000353654.57874644
Transfer214625292024-12-23 3:33:355 days ago1734924815IN
Warped Games: WARPED Token
0 ETH0.0007876914.23704931
Transfer214625082024-12-23 3:29:235 days ago1734924563IN
Warped Games: WARPED Token
0 ETH0.0009214816.64449031
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
185725502023-11-14 20:32:59409 days ago1699993979  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WarpedToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 8 : WarpedToken.sol
// SPDX-License-Identifier: MIT

/**
 __      __  _____ _______________________________________   
/  \    /  \/  _  \\______   \______   \_   _____/\______ \  
\   \/\/   /  /_\  \|       _/|     ___/|    __)_  |    |  \ 
 \        /    |    \    |   \|    |    |        \ |    `   \
  \__/\  /\____|__  /____|_  /|____|   /_______  //_______  /
       \/         \/       \/                  \/         \/ 
 */

pragma solidity 0.8.18;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

import {ITaxHandler} from "./interfaces/ITaxHandler.sol";
import {ITreasuryHandler} from "./interfaces/ITreasuryHandler.sol";

/// @notice WARPED token contract
/// @dev extends standard ERC20 contract
contract WarpedToken is ERC20, Ownable {
    uint8 private constant _DECIMALS = 18;
    uint256 private constant _T_TOTAL = 10_000_000_000 * 10 ** _DECIMALS;
    string private constant _NAME = "WARPED";
    string private constant _SYMBOL = "WARPED";

    uint256 private constant _NOT_IN_TAX_PROCESSING = 1;
    uint256 private constant _TAX_PROCESSING = 2;

    uint256 private _tax_processing_status = _NOT_IN_TAX_PROCESSING;

    /// @notice Tax handler address
    ITaxHandler public taxHandler;
    /// @notice Treasury handler address
    ITreasuryHandler public treasuryHandler;

    /// @notice Emitted when tax handler contract is updated.
    event TaxHandlerUpdated(address newAddress);

    /// @notice Emitted when tax handler contract is updated.
    event TreasuryHandlerUpdated(address newAddress);

    /// @notice Constructor of WARPED token contract
    /// @dev initialize with tax and treasury handler addresses.
    /// @param deployerAddress deployer address to receive total supply
    /// @param taxHandlerAddress tax handler contract address
    /// @param treasuryHandlerAddress treasury handler contract address
    constructor(
        address deployerAddress,
        address taxHandlerAddress,
        address treasuryHandlerAddress
    ) ERC20(_NAME, _SYMBOL) {
        require(deployerAddress != address(0), "Deployer is zero address");
        require(taxHandlerAddress != address(0), "taxHandler is zero address");
        require(treasuryHandlerAddress != address(0), "treasuryHandler is zero address");
        taxHandler = ITaxHandler(taxHandlerAddress);
        treasuryHandler = ITreasuryHandler(treasuryHandlerAddress);

        _mint(deployerAddress, _T_TOTAL);
    }

    modifier skipWhenTaxProcessing() {
        if (_tax_processing_status == _TAX_PROCESSING) {
            return;
        }

        _tax_processing_status = _TAX_PROCESSING;
        _;

        _tax_processing_status = _NOT_IN_TAX_PROCESSING;
    }

    /**
     * @notice Update tax handler
     * @param taxHandlerAddress address of tax handler contract.
     */
    function updateTaxHandler(address taxHandlerAddress) external onlyOwner {
        require(taxHandlerAddress != address(0x00), "Zero tax handler address");
        require(taxHandlerAddress != address(taxHandler), "Same tax handler address");

        taxHandler = ITaxHandler(taxHandlerAddress);
        emit TaxHandlerUpdated(taxHandlerAddress);
    }

    /**
     * @notice Update treasury handler
     * @param treasuryHandlerAddress address of treasury handler contract.
     */
    function updateTreasuryHandler(address treasuryHandlerAddress) external onlyOwner {
        require(treasuryHandlerAddress != address(0x00), "Zero treasury handler address");
        require(treasuryHandlerAddress != address(treasuryHandler), "Same treasury handler address");

        treasuryHandler = ITreasuryHandler(treasuryHandlerAddress);
        emit TreasuryHandlerUpdated(treasuryHandlerAddress);
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     * forward into beforeTokenTransferHandler function of treasury handler
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override skipWhenTaxProcessing {
        treasuryHandler.processTreasury(from, to, amount);
    }

    /**
     * @dev See {ERC20-_afterTokenTransfer}.
     * calculate tax, reward, and burn amount using tax handler and transfer using _transfer function
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal override skipWhenTaxProcessing {
        if (from == address(0x0)) {
            // skip for mint
            return;
        }

        uint256 taxAmount;
        taxAmount = taxHandler.getTax(from, to, amount);
        if (taxAmount > 0) {
            _transfer(to, address(treasuryHandler), taxAmount);
        }
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev 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 value {ERC20} uses, unless this function is
     * 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 {}
}

File 4 of 8 : IERC20Metadata.sol
// 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);
}

File 5 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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);
}

File 6 of 8 : Context.sol
// 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;
    }
}

File 7 of 8 : ITaxHandler.sol
// SPDX-License-Identifier: MIT

/**
 __      __  _____ _______________________________________   
/  \    /  \/  _  \\______   \______   \_   _____/\______ \  
\   \/\/   /  /_\  \|       _/|     ___/|    __)_  |    |  \ 
 \        /    |    \    |   \|    |    |        \ |    `   \
  \__/\  /\____|__  /____|_  /|____|   /_______  //_______  /
       \/         \/       \/                  \/         \/ 
 */

pragma solidity 0.8.18;

interface ITaxHandler {
    /**
     * @notice Get number of tokens to pay as tax.
     * @param benefactor Address of the benefactor.
     * @param beneficiary Address of the beneficiary.
     * @param amount Number of tokens in the transfer.
     * @return taxAmount Number of tokens for tax.
     */
    function getTax(address benefactor, address beneficiary, uint256 amount) external view returns (uint256);
}

File 8 of 8 : ITreasuryHandler.sol
// SPDX-License-Identifier: MIT

/**
 __      __  _____ _______________________________________   
/  \    /  \/  _  \\______   \______   \_   _____/\______ \  
\   \/\/   /  /_\  \|       _/|     ___/|    __)_  |    |  \ 
 \        /    |    \    |   \|    |    |        \ |    `   \
  \__/\  /\____|__  /____|_  /|____|   /_______  //_______  /
       \/         \/       \/                  \/         \/ 
 */

pragma solidity 0.8.18;

/**
 * @title Treasury handler interface
 * @dev Any class that implements this interface can be used for protocol-specific operations pertaining to the treasury.
 */
interface ITreasuryHandler {
    /**
     * @notice Perform operations before a transfer is executed.
     * @param benefactor Address of the benefactor.
     * @param beneficiary Address of the beneficiary.
     * @param amount Number of tokens in the transfer.
     */
    function processTreasury(address benefactor, address beneficiary, uint256 amount) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"deployerAddress","type":"address"},{"internalType":"address","name":"taxHandlerAddress","type":"address"},{"internalType":"address","name":"treasuryHandlerAddress","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TaxHandlerUpdated","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":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TreasuryHandlerUpdated","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":[],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxHandler","outputs":[{"internalType":"contract ITaxHandler","name":"","type":"address"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryHandler","outputs":[{"internalType":"contract ITreasuryHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"taxHandlerAddress","type":"address"}],"name":"updateTaxHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryHandlerAddress","type":"address"}],"name":"updateTreasuryHandler","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016006553480156200001657600080fd5b50604051620019613803806200196183398101604081905262000039916200066b565b60408051808201825260068082526515d05494115160d21b60208084018290528451808601909552918452908301529060036200007783826200075a565b5060046200008682826200075a565b505050620000a36200009d6200021260201b60201c565b62000216565b6001600160a01b038316620000ff5760405162461bcd60e51b815260206004820152601860248201527f4465706c6f796572206973207a65726f2061646472657373000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216620001575760405162461bcd60e51b815260206004820152601a60248201527f74617848616e646c6572206973207a65726f20616464726573730000000000006044820152606401620000f6565b6001600160a01b038116620001af5760405162461bcd60e51b815260206004820152601f60248201527f747265617375727948616e646c6572206973207a65726f2061646472657373006044820152606401620000f6565b600780546001600160a01b038085166001600160a01b03199283161790925560088054928416929091169190911790556200020983620001f26012600a6200093b565b62000203906402540be40062000953565b62000268565b5050506200099d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002c05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000f6565b620002ce6000838362000336565b8060026000828254620002e291906200096d565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602062001941833981519152910160405180910390a36200033260008383620003c5565b5050565b6002600654036200034657505050565b6002600655600854604051630103138760e41b81526001600160a01b03858116600483015284811660248301526044820184905290911690631031387090606401600060405180830381600087803b158015620003a257600080fd5b505af1158015620003b7573d6000803e3d6000fd5b505060016006555050505050565b600260065403620003d557505050565b60026006556001600160a01b0383161562000490576007546040516335eb486b60e21b81526001600160a01b038581166004830152848116602483015260448201849052600092169063d7ad21ac90606401602060405180830381865afa15801562000445573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200046b919062000983565b905080156200048e576008546200048e9084906001600160a01b0316836200049a565b505b5050600160065550565b6001600160a01b038316620005005760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401620000f6565b6001600160a01b038216620005645760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401620000f6565b6200057183838362000336565b6001600160a01b03831660009081526020819052604090205481811015620005eb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620000f6565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602062001941833981519152910160405180910390a362000648848484620003c5565b50505050565b80516001600160a01b03811681146200066657600080fd5b919050565b6000806000606084860312156200068157600080fd5b6200068c846200064e565b92506200069c602085016200064e565b9150620006ac604085016200064e565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006e057607f821691505b6020821081036200070157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200075557600081815260208120601f850160051c81016020861015620007305750805b601f850160051c820191505b8181101562000751578281556001016200073c565b5050505b505050565b81516001600160401b03811115620007765762000776620006b5565b6200078e81620007878454620006cb565b8462000707565b602080601f831160018114620007c65760008415620007ad5750858301515b600019600386901b1c1916600185901b17855562000751565b600085815260208120601f198616915b82811015620007f757888601518255948401946001909101908401620007d6565b5085821015620008165787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200087d57816000190482111562000861576200086162000826565b808516156200086f57918102915b93841c939080029062000841565b509250929050565b600082620008965750600162000935565b81620008a55750600062000935565b8160018114620008be5760028114620008c957620008e9565b600191505062000935565b60ff841115620008dd57620008dd62000826565b50506001821b62000935565b5060208310610133831016604e8410600b84101617156200090e575081810a62000935565b6200091a83836200083c565b806000190482111562000931576200093162000826565b0290505b92915050565b60006200094c60ff84168362000885565b9392505050565b808202811582820484141762000935576200093562000826565b8082018082111562000935576200093562000826565b6000602082840312156200099657600080fd5b5051919050565b610f9480620009ad6000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c806370a08231116100b2578063a457c2d711610081578063d40890da11610066578063d40890da14610286578063dd62ed3e14610299578063f2fde38b146102d257600080fd5b8063a457c2d714610260578063a9059cbb1461027357600080fd5b806370a0823114610216578063715018a61461023f5780638da5cb5b1461024757806395d89b411461025857600080fd5b806318160ddd11610109578063313ce567116100ee578063313ce567146101df578063351a1d33146101ee578063395093511461020357600080fd5b806318160ddd146101ba57806323b872dd146101cc57600080fd5b806306fdde031461013b578063095ea7b31461015957806312280ba81461017c57806317889633146101a7575b600080fd5b6101436102e5565b6040516101509190610dc5565b60405180910390f35b61016c610167366004610e2f565b610377565b6040519015158152602001610150565b60075461018f906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b60085461018f906001600160a01b031681565b6002545b604051908152602001610150565b61016c6101da366004610e59565b610391565b60405160128152602001610150565b6102016101fc366004610e95565b6103b5565b005b61016c610211366004610e2f565b6104d8565b6101be610224366004610e95565b6001600160a01b031660009081526020819052604090205490565b610201610517565b6005546001600160a01b031661018f565b61014361052b565b61016c61026e366004610e2f565b61053a565b61016c610281366004610e2f565b6105e4565b610201610294366004610e95565b6105f2565b6101be6102a7366004610eb7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102016102e0366004610e95565b610709565b6060600380546102f490610eea565b80601f016020809104026020016040519081016040528092919081815260200182805461032090610eea565b801561036d5780601f106103425761010080835404028352916020019161036d565b820191906000526020600020905b81548152906001019060200180831161035057829003601f168201915b5050505050905090565b600033610385818585610799565b60019150505b92915050565b60003361039f8582856108f1565b6103aa858585610983565b506001949350505050565b6103bd610b81565b6001600160a01b0381166104185760405162461bcd60e51b815260206004820152601d60248201527f5a65726f2074726561737572792068616e646c6572206164647265737300000060448201526064015b60405180910390fd5b6008546001600160a01b03908116908216036104765760405162461bcd60e51b815260206004820152601d60248201527f53616d652074726561737572792068616e646c65722061646472657373000000604482015260640161040f565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fd64709474b2b7511a8009e565185fb39031554a6eb9962ef785c97d8759f11d7906020015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103859082908690610512908790610f24565b610799565b61051f610b81565b6105296000610bdb565b565b6060600480546102f490610eea565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161040f565b6103aa8286868403610799565b600033610385818585610983565b6105fa610b81565b6001600160a01b0381166106505760405162461bcd60e51b815260206004820152601860248201527f5a65726f207461782068616e646c657220616464726573730000000000000000604482015260640161040f565b6007546001600160a01b03908116908216036106ae5760405162461bcd60e51b815260206004820152601860248201527f53616d65207461782068616e646c657220616464726573730000000000000000604482015260640161040f565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fc1959f68452befae2f1bf3776735f8834b46289c3cce391ab1daaa71ab70caf7906020016104cd565b610711610b81565b6001600160a01b03811661078d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161040f565b61079681610bdb565b50565b6001600160a01b0383166108145760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b0382166108905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461097d57818110156109705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040f565b61097d8484848403610799565b50505050565b6001600160a01b0383166109ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b038216610a7b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161040f565b610a86838383610c3a565b6001600160a01b03831660009081526020819052604090205481811015610b155760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361097d848484610cdf565b6005546001600160a01b031633146105295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161040f565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600260065403610c4957505050565b60026006556008546040517f103138700000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811660248301526044820184905290911690631031387090606401600060405180830381600087803b158015610cbd57600080fd5b505af1158015610cd1573d6000803e3d6000fd5b505060016006555050505050565b600260065403610cee57505050565b60026006556001600160a01b03831615610dbb576007546040517fd7ad21ac0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152848116602483015260448201849052600092169063d7ad21ac90606401602060405180830381865afa158015610d75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d999190610f45565b90508015610db957600854610db99084906001600160a01b031683610983565b505b5050600160065550565b600060208083528351808285015260005b81811015610df257858101830151858201604001528201610dd6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e2a57600080fd5b919050565b60008060408385031215610e4257600080fd5b610e4b83610e13565b946020939093013593505050565b600080600060608486031215610e6e57600080fd5b610e7784610e13565b9250610e8560208501610e13565b9150604084013590509250925092565b600060208284031215610ea757600080fd5b610eb082610e13565b9392505050565b60008060408385031215610eca57600080fd5b610ed383610e13565b9150610ee160208401610e13565b90509250929050565b600181811c90821680610efe57607f821691505b602082108103610f1e57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561038b57634e487b7160e01b600052601160045260246000fd5b600060208284031215610f5757600080fd5b505191905056fea26469706673582212200e1d394b0edf1859fa3c74de550584205acb58eb6a42ec9ce34c9fdd6ba74b8864736f6c63430008120033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000c2a979dea339089ad09220622bf3d955a10275a000000000000000000000000019da0d2ed37d4390d2798b9831bfee4ad5477ff90000000000000000000000005ad032625f1c616a0fa50939e1929b8148f9d71a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c806370a08231116100b2578063a457c2d711610081578063d40890da11610066578063d40890da14610286578063dd62ed3e14610299578063f2fde38b146102d257600080fd5b8063a457c2d714610260578063a9059cbb1461027357600080fd5b806370a0823114610216578063715018a61461023f5780638da5cb5b1461024757806395d89b411461025857600080fd5b806318160ddd11610109578063313ce567116100ee578063313ce567146101df578063351a1d33146101ee578063395093511461020357600080fd5b806318160ddd146101ba57806323b872dd146101cc57600080fd5b806306fdde031461013b578063095ea7b31461015957806312280ba81461017c57806317889633146101a7575b600080fd5b6101436102e5565b6040516101509190610dc5565b60405180910390f35b61016c610167366004610e2f565b610377565b6040519015158152602001610150565b60075461018f906001600160a01b031681565b6040516001600160a01b039091168152602001610150565b60085461018f906001600160a01b031681565b6002545b604051908152602001610150565b61016c6101da366004610e59565b610391565b60405160128152602001610150565b6102016101fc366004610e95565b6103b5565b005b61016c610211366004610e2f565b6104d8565b6101be610224366004610e95565b6001600160a01b031660009081526020819052604090205490565b610201610517565b6005546001600160a01b031661018f565b61014361052b565b61016c61026e366004610e2f565b61053a565b61016c610281366004610e2f565b6105e4565b610201610294366004610e95565b6105f2565b6101be6102a7366004610eb7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102016102e0366004610e95565b610709565b6060600380546102f490610eea565b80601f016020809104026020016040519081016040528092919081815260200182805461032090610eea565b801561036d5780601f106103425761010080835404028352916020019161036d565b820191906000526020600020905b81548152906001019060200180831161035057829003601f168201915b5050505050905090565b600033610385818585610799565b60019150505b92915050565b60003361039f8582856108f1565b6103aa858585610983565b506001949350505050565b6103bd610b81565b6001600160a01b0381166104185760405162461bcd60e51b815260206004820152601d60248201527f5a65726f2074726561737572792068616e646c6572206164647265737300000060448201526064015b60405180910390fd5b6008546001600160a01b03908116908216036104765760405162461bcd60e51b815260206004820152601d60248201527f53616d652074726561737572792068616e646c65722061646472657373000000604482015260640161040f565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fd64709474b2b7511a8009e565185fb39031554a6eb9962ef785c97d8759f11d7906020015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103859082908690610512908790610f24565b610799565b61051f610b81565b6105296000610bdb565b565b6060600480546102f490610eea565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161040f565b6103aa8286868403610799565b600033610385818585610983565b6105fa610b81565b6001600160a01b0381166106505760405162461bcd60e51b815260206004820152601860248201527f5a65726f207461782068616e646c657220616464726573730000000000000000604482015260640161040f565b6007546001600160a01b03908116908216036106ae5760405162461bcd60e51b815260206004820152601860248201527f53616d65207461782068616e646c657220616464726573730000000000000000604482015260640161040f565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fc1959f68452befae2f1bf3776735f8834b46289c3cce391ab1daaa71ab70caf7906020016104cd565b610711610b81565b6001600160a01b03811661078d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161040f565b61079681610bdb565b50565b6001600160a01b0383166108145760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b0382166108905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461097d57818110156109705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040f565b61097d8484848403610799565b50505050565b6001600160a01b0383166109ff5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b038216610a7b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161040f565b610a86838383610c3a565b6001600160a01b03831660009081526020819052604090205481811015610b155760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161040f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361097d848484610cdf565b6005546001600160a01b031633146105295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161040f565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600260065403610c4957505050565b60026006556008546040517f103138700000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015284811660248301526044820184905290911690631031387090606401600060405180830381600087803b158015610cbd57600080fd5b505af1158015610cd1573d6000803e3d6000fd5b505060016006555050505050565b600260065403610cee57505050565b60026006556001600160a01b03831615610dbb576007546040517fd7ad21ac0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152848116602483015260448201849052600092169063d7ad21ac90606401602060405180830381865afa158015610d75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d999190610f45565b90508015610db957600854610db99084906001600160a01b031683610983565b505b5050600160065550565b600060208083528351808285015260005b81811015610df257858101830151858201604001528201610dd6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e2a57600080fd5b919050565b60008060408385031215610e4257600080fd5b610e4b83610e13565b946020939093013593505050565b600080600060608486031215610e6e57600080fd5b610e7784610e13565b9250610e8560208501610e13565b9150604084013590509250925092565b600060208284031215610ea757600080fd5b610eb082610e13565b9392505050565b60008060408385031215610eca57600080fd5b610ed383610e13565b9150610ee160208401610e13565b90509250929050565b600181811c90821680610efe57607f821691505b602082108103610f1e57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561038b57634e487b7160e01b600052601160045260246000fd5b600060208284031215610f5757600080fd5b505191905056fea26469706673582212200e1d394b0edf1859fa3c74de550584205acb58eb6a42ec9ce34c9fdd6ba74b8864736f6c63430008120033

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

000000000000000000000000c2a979dea339089ad09220622bf3d955a10275a000000000000000000000000019da0d2ed37d4390d2798b9831bfee4ad5477ff90000000000000000000000005ad032625f1c616a0fa50939e1929b8148f9d71a

-----Decoded View---------------
Arg [0] : deployerAddress (address): 0xC2a979DEA339089aD09220622Bf3D955A10275A0
Arg [1] : taxHandlerAddress (address): 0x19Da0D2ED37D4390d2798B9831BFEE4ad5477ff9
Arg [2] : treasuryHandlerAddress (address): 0x5aD032625f1c616A0fA50939e1929B8148f9d71A

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c2a979dea339089ad09220622bf3d955a10275a0
Arg [1] : 00000000000000000000000019da0d2ed37d4390d2798b9831bfee4ad5477ff9
Arg [2] : 0000000000000000000000005ad032625f1c616a0fa50939e1929b8148f9d71a


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

WARPED embark on an immersive sci-fi gaming adventure where all games, actions, and items interconnect, blending Web2 and Web3 for limitless possibilities.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.