ETH Price: $2,116.74 (+2.95%)

Contract

0x90cE5720c17587D28E4Af120ae2d313B3BAD1722
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer246051902026-03-07 11:11:115 days ago1772881871IN
Overtime: OVER Token
0 ETH0.00000310.10339338
Transfer245801092026-03-03 23:06:599 days ago1772579219IN
Overtime: OVER Token
0 ETH0.000005780.16490037
Approve245206982026-02-23 16:11:3517 days ago1771863095IN
Overtime: OVER Token
0 ETH0.000007850.16636692
Approve245081292026-02-21 22:08:3519 days ago1771711715IN
Overtime: OVER Token
0 ETH0.000004080.08699764
Transfer244483842026-02-13 14:13:3527 days ago1770992015IN
Overtime: OVER Token
0 ETH0.000004120.11821916
Transfer244413442026-02-12 14:38:2328 days ago1770907103IN
Overtime: OVER Token
0 ETH0.000031570.90565733
Transfer244202962026-02-09 16:06:4731 days ago1770653207IN
Overtime: OVER Token
0 ETH0.000010060.28876814
Transfer243683712026-02-02 9:47:1138 days ago1770025631IN
Overtime: OVER Token
0 ETH0.000022160.73747084
Transfer243550592026-01-31 13:08:5940 days ago1769864939IN
Overtime: OVER Token
0 ETH0.000003920.11274071
Transfer243267512026-01-27 14:24:4744 days ago1769523887IN
Overtime: OVER Token
0 ETH0.000007080.20309289
Transfer242688622026-01-19 12:36:4752 days ago1768826207IN
Overtime: OVER Token
0 ETH0.000002280.06552233
Approve242159392026-01-12 3:26:1159 days ago1768188371IN
Overtime: OVER Token
0 ETH0.000002340.04997
Approve241401372026-01-01 13:39:3570 days ago1767274775IN
Overtime: OVER Token
0 ETH0.000095992.03101541
Transfer241329262025-12-31 13:32:2371 days ago1767187943IN
Overtime: OVER Token
0 ETH0.000030410.58289729
Transfer241180062025-12-29 11:28:4773 days ago1767007727IN
Overtime: OVER Token
0 ETH0.00000250.08312286
Approve240820532025-12-24 11:02:5978 days ago1766574179IN
Overtime: OVER Token
0 ETH0.000002150.04583319
Approve240819822025-12-24 10:48:3578 days ago1766573315IN
Overtime: OVER Token
0 ETH0.000001620.03434822
Approve240761802025-12-23 15:22:4779 days ago1766503367IN
Overtime: OVER Token
0 ETH0.000007080.15
Transfer239979682025-12-12 17:15:5990 days ago1765559759IN
Overtime: OVER Token
0 ETH0.000071562.05245358
Transfer239813992025-12-10 9:24:2392 days ago1765358663IN
Overtime: OVER Token
0 ETH0.000028120.80686541
Approve239536192025-12-06 11:43:5996 days ago1765021439IN
Overtime: OVER Token
0 ETH0.000004720.1
Approve239473662025-12-05 14:33:4797 days ago1764945227IN
Overtime: OVER Token
0 ETH0.000004690.1
Approve239473202025-12-05 14:24:3597 days ago1764944675IN
Overtime: OVER Token
0 ETH0.000004690.1
Transfer238764872025-11-25 14:45:35107 days ago1764081935IN
Overtime: OVER Token
0 ETH0.000072762.08698025
Transfer238401412025-11-20 12:06:11112 days ago1763640371IN
Overtime: OVER Token
0 ETH0.000038761.11189818
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OverToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

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

pragma solidity 0.8.20;

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

/// @title OverToken - Overtime DAO Token
/// @notice This contract implements an ERC20 token for the Overtime DAO.
/// @dev This contract includes owner management and CCIP admin functionality.
contract OverToken is ERC20 {
    /// @notice The name of the token
    string private __name = "Overtime DAO Token";
    /// @notice The symbol of the token
    string private __symbol = "OVER";
    /// @notice The number of decimals for the token
    uint8 private constant __decimals = 18;
    /// @notice The initial total supply of tokens
    uint private constant INITIAL_TOTAL_SUPPLY = 69420000;

    /// @notice The owner of the contract
    address public owner;
    /// @notice The admin responsible for CCIP operations
    address public ccipAdmin;

    /// @notice Deploys the token contract and mints the initial supply to the treasury
    /// @param _treasury The address of the treasury that receives the initial supply
    constructor(address _treasury) ERC20(__name, __symbol) {
        owner = _treasury;
        ccipAdmin = _treasury;
        _mint(_treasury, INITIAL_TOTAL_SUPPLY * 1e18);
    }

    /// @notice Retrieves the current CCIP admin address
    /// @return The address of the CCIP admin
    function getCCIPAdmin() external view returns (address) {
        return ccipAdmin;
    }

    /// @notice Sets a new CCIP admin
    /// @dev Only callable by the contract owner
    /// @param _ccipAdmin The address of the new CCIP admin
    function setCCIPAdmin(address _ccipAdmin) external {
        require(msg.sender == owner, "OnlyAllowedFromOwner");
        ccipAdmin = _ccipAdmin;
        emit SetCCIPAdmin(_ccipAdmin);
    }

    /// @notice Transfers ownership of the contract to a new owner
    /// @dev Only callable by the current owner
    /// @param _newOwner The address of the new owner
    function changeOwner(address _newOwner) external {
        require(msg.sender == owner, "OnlyAllowedFromOwner");
        owner = _newOwner;
        emit OwnerChanged(_newOwner);
    }

    /// @notice Emitted when a new CCIP admin is set
    /// @param newCCIPAdmin The address of the new CCIP admin
    event SetCCIPAdmin(address newCCIPAdmin);
    /// @notice Emitted when ownership of the contract is transferred
    /// @param _newOwner The address of the new owner
    event OwnerChanged(address _newOwner);
}

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

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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 v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"_newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newCCIPAdmin","type":"address"}],"name":"SetCCIPAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"ccipAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCCIPAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"_ccipAdmin","type":"address"}],"name":"setCCIPAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601281526020017f4f76657274696d652044414f20546f6b656e0000000000000000000000000000815250600590816200004a9190620007d0565b506040518060400160405280600481526020017f4f5645520000000000000000000000000000000000000000000000000000000081525060069081620000919190620007d0565b503480156200009e575f80fd5b5060405162001c6c38038062001c6c8339818101604052810190620000c4919062000919565b60058054620000d390620005d0565b80601f01602080910402602001604051908101604052809291908181526020018280546200010190620005d0565b8015620001505780601f10620001265761010080835404028352916020019162000150565b820191905f5260205f20905b8154815290600101906020018083116200013257829003601f168201915b5050505050600680546200016490620005d0565b80601f01602080910402602001604051908101604052809291908181526020018280546200019290620005d0565b8015620001e15780601f10620001b757610100808354040283529160200191620001e1565b820191905f5260205f20905b815481529060010190602001808311620001c357829003601f168201915b50505050508160039081620001f79190620007d0565b508060049081620002099190620007d0565b5050508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b781670de0b6b3a764000063042343e0620002ab919062000976565b620002be60201b60201c565b5062000a8d565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000331575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003289190620009d1565b60405180910390fd5b620003445f83836200034860201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200039c578060025f8282546200038f9190620009ec565b925050819055506200046d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000428578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200041f9392919062000a37565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004b6578060025f828254039250508190555062000500565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200055f919062000a72565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005e857607f821691505b602082108103620005fe57620005fd620005a3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000625565b6200066e868362000625565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006b8620006b2620006ac8462000686565b6200068f565b62000686565b9050919050565b5f819050919050565b620006d38362000698565b620006eb620006e282620006bf565b84845462000631565b825550505050565b5f90565b62000701620006f3565b6200070e818484620006c8565b505050565b5b818110156200073557620007295f82620006f7565b60018101905062000714565b5050565b601f82111562000784576200074e8162000604565b620007598462000616565b8101602085101562000769578190505b62000781620007788562000616565b83018262000713565b50505b505050565b5f82821c905092915050565b5f620007a65f198460080262000789565b1980831691505092915050565b5f620007c0838362000795565b9150826002028217905092915050565b620007db826200056c565b67ffffffffffffffff811115620007f757620007f662000576565b5b620008038254620005d0565b6200081082828562000739565b5f60209050601f83116001811462000846575f841562000831578287015190505b6200083d8582620007b3565b865550620008ac565b601f198416620008568662000604565b5f5b828110156200087f5784890151825560018201915060208501945060208101905062000858565b868310156200089f57848901516200089b601f89168262000795565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008e382620008b8565b9050919050565b620008f581620008d7565b811462000900575f80fd5b50565b5f815190506200091381620008ea565b92915050565b5f60208284031215620009315762000930620008b4565b5b5f620009408482850162000903565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009828262000686565b91506200098f8362000686565b92508282026200099f8162000686565b91508282048414831517620009b957620009b862000949565b5b5092915050565b620009cb81620008d7565b82525050565b5f602082019050620009e65f830184620009c0565b92915050565b5f620009f88262000686565b915062000a058362000686565b925082820190508082111562000a205762000a1f62000949565b5b92915050565b62000a318162000686565b82525050565b5f60608201905062000a4c5f830186620009c0565b62000a5b602083018562000a26565b62000a6a604083018462000a26565b949350505050565b5f60208201905062000a875f83018462000a26565b92915050565b6111d18062000a9b5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638fd6a6ac1161008a578063a8fa343c11610064578063a8fa343c1461024c578063a9059cbb14610268578063dd62ed3e14610298578063f63ce795146102c8576100e8565b80638fd6a6ac146101f457806395d89b4114610212578063a6f9dae114610230576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a65780638da5cb5b146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e6565b6040516101019190610de2565b60405180910390f35b610124600480360381019061011f9190610e93565b610376565b6040516101319190610eeb565b60405180910390f35b610142610398565b60405161014f9190610f13565b60405180910390f35b610172600480360381019061016d9190610f2c565b6103a1565b60405161017f9190610eeb565b60405180910390f35b6101906103cf565b60405161019d9190610f97565b60405180910390f35b6101c060048036038101906101bb9190610fb0565b6103d7565b6040516101cd9190610f13565b60405180910390f35b6101de61041c565b6040516101eb9190610fea565b60405180910390f35b6101fc610441565b6040516102099190610fea565b60405180910390f35b61021a610469565b6040516102279190610de2565b60405180910390f35b61024a60048036038101906102459190610fb0565b6104f9565b005b61026660048036038101906102619190610fb0565b610602565b005b610282600480360381019061027d9190610e93565b61070b565b60405161028f9190610eeb565b60405180910390f35b6102b260048036038101906102ad9190611003565b61072d565b6040516102bf9190610f13565b60405180910390f35b6102d06107af565b6040516102dd9190610fea565b60405180910390f35b6060600380546102f59061106e565b80601f01602080910402602001604051908101604052809291908181526020018280546103219061106e565b801561036c5780601f106103435761010080835404028352916020019161036c565b820191905f5260205f20905b81548152906001019060200180831161034f57829003601f168201915b5050505050905090565b5f806103806107d4565b905061038d8185856107db565b600191505092915050565b5f600254905090565b5f806103ab6107d4565b90506103b88582856107ed565b6103c3858585610880565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104789061106e565b80601f01602080910402602001604051908101604052809291908181526020018280546104a49061106e565b80156104ef5780601f106104c6576101008083540402835291602001916104ef565b820191905f5260205f20905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057f906110e8565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa2ea9883a321a3e97b8266c2b078bfeec6d50c711ed71f874a90d500ae2eaf36816040516105f79190610fea565b60405180910390a150565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610688906110e8565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f8fae4c7ba5cf44c67b73481ba2dad289ffe11a802a2cea6758a40006ac672c31816040516107009190610fea565b60405180910390a150565b5f806107156107d4565b9050610722818585610880565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b6107e88383836001610970565b505050565b5f6107f8848461072d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561087a578181101561086b578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161086293929190611106565b60405180910390fd5b61087984848484035f610970565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f0575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108e79190610fea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610960575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109579190610fea565b60405180910390fd5b61096b838383610b3f565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109e0575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109d79190610fea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a479190610fea565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b39578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b309190610f13565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8f578060025f828254610b839190611168565b92505081905550610c5d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c18578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c0f93929190611106565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca4578060025f8282540392505081905550610cee565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d4b9190610f13565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d8f578082015181840152602081019050610d74565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610db482610d58565b610dbe8185610d62565b9350610dce818560208601610d72565b610dd781610d9a565b840191505092915050565b5f6020820190508181035f830152610dfa8184610daa565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e2f82610e06565b9050919050565b610e3f81610e25565b8114610e49575f80fd5b50565b5f81359050610e5a81610e36565b92915050565b5f819050919050565b610e7281610e60565b8114610e7c575f80fd5b50565b5f81359050610e8d81610e69565b92915050565b5f8060408385031215610ea957610ea8610e02565b5b5f610eb685828601610e4c565b9250506020610ec785828601610e7f565b9150509250929050565b5f8115159050919050565b610ee581610ed1565b82525050565b5f602082019050610efe5f830184610edc565b92915050565b610f0d81610e60565b82525050565b5f602082019050610f265f830184610f04565b92915050565b5f805f60608486031215610f4357610f42610e02565b5b5f610f5086828701610e4c565b9350506020610f6186828701610e4c565b9250506040610f7286828701610e7f565b9150509250925092565b5f60ff82169050919050565b610f9181610f7c565b82525050565b5f602082019050610faa5f830184610f88565b92915050565b5f60208284031215610fc557610fc4610e02565b5b5f610fd284828501610e4c565b91505092915050565b610fe481610e25565b82525050565b5f602082019050610ffd5f830184610fdb565b92915050565b5f806040838503121561101957611018610e02565b5b5f61102685828601610e4c565b925050602061103785828601610e4c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061108557607f821691505b60208210810361109857611097611041565b5b50919050565b7f4f6e6c79416c6c6f77656446726f6d4f776e65720000000000000000000000005f82015250565b5f6110d2601483610d62565b91506110dd8261109e565b602082019050919050565b5f6020820190508181035f8301526110ff816110c6565b9050919050565b5f6060820190506111195f830186610fdb565b6111266020830185610f04565b6111336040830184610f04565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61117282610e60565b915061117d83610e60565b92508282019050808211156111955761119461113b565b5b9291505056fea264697066735822122014ed1d8c47b2602f59322b8b97208efa358d6a24d066065ade2710a260fd239164736f6c634300081400330000000000000000000000004da7493c2ce2bece36e75aaddf39d5c041b6d468

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638fd6a6ac1161008a578063a8fa343c11610064578063a8fa343c1461024c578063a9059cbb14610268578063dd62ed3e14610298578063f63ce795146102c8576100e8565b80638fd6a6ac146101f457806395d89b4114610212578063a6f9dae114610230576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a65780638da5cb5b146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e6565b6040516101019190610de2565b60405180910390f35b610124600480360381019061011f9190610e93565b610376565b6040516101319190610eeb565b60405180910390f35b610142610398565b60405161014f9190610f13565b60405180910390f35b610172600480360381019061016d9190610f2c565b6103a1565b60405161017f9190610eeb565b60405180910390f35b6101906103cf565b60405161019d9190610f97565b60405180910390f35b6101c060048036038101906101bb9190610fb0565b6103d7565b6040516101cd9190610f13565b60405180910390f35b6101de61041c565b6040516101eb9190610fea565b60405180910390f35b6101fc610441565b6040516102099190610fea565b60405180910390f35b61021a610469565b6040516102279190610de2565b60405180910390f35b61024a60048036038101906102459190610fb0565b6104f9565b005b61026660048036038101906102619190610fb0565b610602565b005b610282600480360381019061027d9190610e93565b61070b565b60405161028f9190610eeb565b60405180910390f35b6102b260048036038101906102ad9190611003565b61072d565b6040516102bf9190610f13565b60405180910390f35b6102d06107af565b6040516102dd9190610fea565b60405180910390f35b6060600380546102f59061106e565b80601f01602080910402602001604051908101604052809291908181526020018280546103219061106e565b801561036c5780601f106103435761010080835404028352916020019161036c565b820191905f5260205f20905b81548152906001019060200180831161034f57829003601f168201915b5050505050905090565b5f806103806107d4565b905061038d8185856107db565b600191505092915050565b5f600254905090565b5f806103ab6107d4565b90506103b88582856107ed565b6103c3858585610880565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104789061106e565b80601f01602080910402602001604051908101604052809291908181526020018280546104a49061106e565b80156104ef5780601f106104c6576101008083540402835291602001916104ef565b820191905f5260205f20905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057f906110e8565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa2ea9883a321a3e97b8266c2b078bfeec6d50c711ed71f874a90d500ae2eaf36816040516105f79190610fea565b60405180910390a150565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610691576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610688906110e8565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f8fae4c7ba5cf44c67b73481ba2dad289ffe11a802a2cea6758a40006ac672c31816040516107009190610fea565b60405180910390a150565b5f806107156107d4565b9050610722818585610880565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b6107e88383836001610970565b505050565b5f6107f8848461072d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561087a578181101561086b578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161086293929190611106565b60405180910390fd5b61087984848484035f610970565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f0575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108e79190610fea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610960575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109579190610fea565b60405180910390fd5b61096b838383610b3f565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109e0575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109d79190610fea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a479190610fea565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b39578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b309190610f13565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8f578060025f828254610b839190611168565b92505081905550610c5d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c18578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c0f93929190611106565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca4578060025f8282540392505081905550610cee565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d4b9190610f13565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d8f578082015181840152602081019050610d74565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610db482610d58565b610dbe8185610d62565b9350610dce818560208601610d72565b610dd781610d9a565b840191505092915050565b5f6020820190508181035f830152610dfa8184610daa565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e2f82610e06565b9050919050565b610e3f81610e25565b8114610e49575f80fd5b50565b5f81359050610e5a81610e36565b92915050565b5f819050919050565b610e7281610e60565b8114610e7c575f80fd5b50565b5f81359050610e8d81610e69565b92915050565b5f8060408385031215610ea957610ea8610e02565b5b5f610eb685828601610e4c565b9250506020610ec785828601610e7f565b9150509250929050565b5f8115159050919050565b610ee581610ed1565b82525050565b5f602082019050610efe5f830184610edc565b92915050565b610f0d81610e60565b82525050565b5f602082019050610f265f830184610f04565b92915050565b5f805f60608486031215610f4357610f42610e02565b5b5f610f5086828701610e4c565b9350506020610f6186828701610e4c565b9250506040610f7286828701610e7f565b9150509250925092565b5f60ff82169050919050565b610f9181610f7c565b82525050565b5f602082019050610faa5f830184610f88565b92915050565b5f60208284031215610fc557610fc4610e02565b5b5f610fd284828501610e4c565b91505092915050565b610fe481610e25565b82525050565b5f602082019050610ffd5f830184610fdb565b92915050565b5f806040838503121561101957611018610e02565b5b5f61102685828601610e4c565b925050602061103785828601610e4c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061108557607f821691505b60208210810361109857611097611041565b5b50919050565b7f4f6e6c79416c6c6f77656446726f6d4f776e65720000000000000000000000005f82015250565b5f6110d2601483610d62565b91506110dd8261109e565b602082019050919050565b5f6020820190508181035f8301526110ff816110c6565b9050919050565b5f6060820190506111195f830186610fdb565b6111266020830185610f04565b6111336040830184610f04565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61117282610e60565b915061117d83610e60565b92508282019050808211156111955761119461113b565b5b9291505056fea264697066735822122014ed1d8c47b2602f59322b8b97208efa358d6a24d066065ade2710a260fd239164736f6c63430008140033

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

0000000000000000000000004da7493c2ce2bece36e75aaddf39d5c041b6d468

-----Decoded View---------------
Arg [0] : _treasury (address): 0x4dA7493C2CE2BEce36e75AaDdF39D5c041B6d468

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004da7493c2ce2bece36e75aaddf39d5c041b6d468


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

OVERVIEW

Overtime is a fully on-chain sportsbook protocol that enables decentralized sports betting and digital options trading. Powered by smart contracts and Chainlink data feeds, it offers transparency, accuracy, and an engaging experience within the decentralized finance (DeFi) space.

Loading...
Loading
[ 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.