ETH Price: $2,003.73 (-2.92%)

Contract

0x000066320a467dE62B1548f46465abBB82662331
Transaction Hash
Method
Block
From
To
Allow190257322025-01-09 15:17:1276 days ago1736435832IN
0x00006632...B82662331
0 ETH0.000137590.133
Transfer Ownersh...190194942025-01-09 9:29:2076 days ago1736414960IN
0x00006632...B82662331
0 ETH0.000001770.0623
Withdraw186643152024-12-26 18:41:4890 days ago1735238508IN
0x00006632...B82662331
0 ETH0.000004940.155
Withdraw186596082024-12-26 14:22:5990 days ago1735222979IN
0x00006632...B82662331
0 ETH0.00000540.15
Execute186596022024-12-26 14:22:4090 days ago1735222960IN
0x00006632...B82662331
0 ETH0.000053650.15
Transfer Ownersh...186594552024-12-26 14:14:3790 days ago1735222477IN
0x00006632...B82662331
0 ETH0.000002970.104
Allow169825972024-10-21 8:41:36156 days ago1729500096IN
0x00006632...B82662331
0 ETH0.000279510.107
Allow167048772024-10-10 9:32:50167 days ago1728552770IN
0x00006632...B82662331
0 ETH0.001086860.189
Init167048472024-10-10 9:31:06167 days ago1728552666IN
0x00006632...B82662331
0 ETH0.000008160.177

Latest 23 internal transactions

Parent Transaction Hash Block From To
186596082024-12-26 14:22:5990 days ago1735222979
0x00006632...B82662331
0.00803504 ETH
186596082024-12-26 14:22:5990 days ago1735222979
0x00006632...B82662331
0.00137278 ETH
186596022024-12-26 14:22:4090 days ago1735222960
0x00006632...B82662331
0.0055229 ETH
172877062024-11-02 9:06:11144 days ago1730538371
0x00006632...B82662331
0.00002129 ETH
172659032024-11-01 12:41:27145 days ago1730464887
0x00006632...B82662331
0.00006507 ETH
170348062024-10-23 10:04:02154 days ago1729677842
0x00006632...B82662331
0.00002666 ETH
170337222024-10-23 9:02:45154 days ago1729674165
0x00006632...B82662331
0.0000446 ETH
170322202024-10-23 7:36:44154 days ago1729669004
0x00006632...B82662331
0.0000479 ETH
170274212024-10-23 3:09:01154 days ago1729652941
0x00006632...B82662331
0.0000246 ETH
170211282024-10-22 21:18:20155 days ago1729631900
0x00006632...B82662331
0.00004393 ETH
170194502024-10-22 19:45:47155 days ago1729626347
0x00006632...B82662331
0.00005001 ETH
170185342024-10-22 18:55:20155 days ago1729623320
0x00006632...B82662331
0.0000446 ETH
170182842024-10-22 18:41:21155 days ago1729622481
0x00006632...B82662331
0.00004866 ETH
170135012024-10-22 14:08:15155 days ago1729606095
0x00006632...B82662331
0.00035822 ETH
170087602024-10-22 9:38:44155 days ago1729589924
0x00006632...B82662331
0.00004731 ETH
170066632024-10-22 7:34:27155 days ago1729582467
0x00006632...B82662331
0.00002842 ETH
169881752024-10-21 14:05:32156 days ago1729519532
0x00006632...B82662331
0.0000909 ETH
169865142024-10-21 12:27:18156 days ago1729513638
0x00006632...B82662331
0.00003818 ETH
169864522024-10-21 12:23:42156 days ago1729513422
0x00006632...B82662331
0.00004122 ETH
169863812024-10-21 12:19:38156 days ago1729513178
0x00006632...B82662331
0.00003649 ETH
169797652024-10-21 6:00:56156 days ago1729490456
0x00006632...B82662331
0.00003954 ETH
169700592024-10-20 20:50:04157 days ago1729457404
0x00006632...B82662331
0.00004164 ETH
167048472024-10-10 9:31:06167 days ago1728552666  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Admin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
paris EvmVersion
File 1 of 10 : Admin.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.x;

import {IMulticall3} from "forge-std/interfaces/IMulticall3.sol";

import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {SafeERC20, IERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

import {Consts} from "./Consts.sol";
import {IWETH} from "./IWETH.sol";

contract Admin is Ownable {
    using SafeERC20 for IERC20;

    mapping(address => bool) public allowed;
    IWETH public weth;

    constructor(address _owner) Ownable() {
        allowed[_owner] = true;
        transferOwnership(_owner);
    }

    function init(address _weth) external onlyOwner {
        if (address(weth) != address(0)) revert();
        weth = IWETH(_weth);
    }

    function allow(address[] calldata addr, bool value) external onlyOwner {
        for (uint256 i = 0; i < addr.length; i++) {
            allowed[addr[i]] = value;
        }
    }

    function execute(IMulticall3.Call[] calldata calls) external onlyOwner {
        Address.functionDelegateCall(
            Consts.MULTICALL_ADDRESS, abi.encodeWithSelector(IMulticall3.aggregate.selector, calls)
        );
    }

    function withdraw(IERC20[] calldata tokens) external onlyOwner {
        uint256 balance = weth.balanceOf(address(this));
        if (balance > 0) weth.withdraw(balance);

        for (uint256 i = 0; i < tokens.length; i++) {
            balance = tokens[i].balanceOf(address(this));
            if (balance > 0) tokens[i].safeTransfer(owner(), balance);
        }

        Address.sendValue(payable(owner()), address(this).balance);
    }

    receive() external payable {
        // accept ETH
    }
}

File 2 of 10 : IMulticall3.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.9.0;

pragma experimental ABIEncoderV2;

interface IMulticall3 {
    struct Call {
        address target;
        bytes callData;
    }

    struct Call3 {
        address target;
        bool allowFailure;
        bytes callData;
    }

    struct Call3Value {
        address target;
        bool allowFailure;
        uint256 value;
        bytes callData;
    }

    struct Result {
        bool success;
        bytes returnData;
    }

    function aggregate(Call[] calldata calls)
        external
        payable
        returns (uint256 blockNumber, bytes[] memory returnData);

    function aggregate3(Call3[] calldata calls) external payable returns (Result[] memory returnData);

    function aggregate3Value(Call3Value[] calldata calls) external payable returns (Result[] memory returnData);

    function blockAndAggregate(Call[] calldata calls)
        external
        payable
        returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData);

    function getBasefee() external view returns (uint256 basefee);

    function getBlockHash(uint256 blockNumber) external view returns (bytes32 blockHash);

    function getBlockNumber() external view returns (uint256 blockNumber);

    function getChainId() external view returns (uint256 chainid);

    function getCurrentBlockCoinbase() external view returns (address coinbase);

    function getCurrentBlockDifficulty() external view returns (uint256 difficulty);

    function getCurrentBlockGasLimit() external view returns (uint256 gaslimit);

    function getCurrentBlockTimestamp() external view returns (uint256 timestamp);

    function getEthBalance(address addr) external view returns (uint256 balance);

    function getLastBlockHash() external view returns (bytes32 blockHash);

    function tryAggregate(bool requireSuccess, Call[] calldata calls)
        external
        payable
        returns (Result[] memory returnData);

    function tryBlockAndAggregate(bool requireSuccess, Call[] calldata calls)
        external
        payable
        returns (uint256 blockNumber, bytes32 blockHash, Result[] memory returnData);
}

File 3 of 10 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 4 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 5 of 10 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 6 of 10 : Consts.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.x;

library Consts {
    address public constant MULTICALL_ADDRESS = 0xcA11bde05977b3631167028862bE2a173976CA11;
    address public constant PERMIT2_ADDRESS = 0x000000000022D473030F116dDEE9F6B43aC78BA3;
}

File 7 of 10 : IWETH.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.x;

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

interface IWETH is IERC20 {
    function deposit() external payable;
    function withdraw(uint256 wad) external;
}

File 8 of 10 : 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 9 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 10 of 10 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
    "uniswapx/=lib/UniswapX/",
    "solmate/=lib/solmate/",
    "UniswapX/=lib/UniswapX/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-gas-snapshot/=lib/UniswapX/lib/forge-gas-snapshot/src/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "permit2/=lib/UniswapX/lib/permit2/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"allow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"callData","type":"bytes"}],"internalType":"struct IMulticall3.Call[]","name":"calls","type":"tuple[]"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200144b3803806200144b8339810160408190526200003491620001a8565b6200003f3362000077565b6001600160a01b0381166000908152600160208190526040909120805460ff191690911790556200007081620000c7565b50620001da565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620000d16200014a565b6001600160a01b0381166200013c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b620001478162000077565b50565b6000546001600160a01b03163314620001a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000133565b565b600060208284031215620001bb57600080fd5b81516001600160a01b0381168114620001d357600080fd5b9392505050565b61126180620001ea6000396000f3fe60806040526004361061009a5760003560e01c80638da5cb5b11610069578063bd5dec981161004e578063bd5dec981461019f578063d63a8e11146101bf578063f2fde38b146101ff57600080fd5b80638da5cb5b14610154578063baae8abf1461017f57600080fd5b806319ab453c146100a65780633fc8cef3146100c857806364c958081461011f578063715018a61461013f57600080fd5b366100a157005b600080fd5b3480156100b257600080fd5b506100c66100c1366004610e34565b61021f565b005b3480156100d457600080fd5b506002546100f59073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561012b57600080fd5b506100c661013a366004610eab565b610291565b34801561014b57600080fd5b506100c661033b565b34801561016057600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100f5565b34801561018b57600080fd5b506100c661019a366004610f02565b61034f565b3480156101ab57600080fd5b506100c66101ba366004610f02565b610411565b3480156101cb57600080fd5b506101ef6101da366004610e34565b60016020526000908152604090205460ff1681565b6040519015158152602001610116565b34801561020b57600080fd5b506100c661021a366004610e34565b6106a5565b610227610761565b60025473ffffffffffffffffffffffffffffffffffffffff161561024a57600080fd5b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610299610761565b60005b828110156103355781600160008686858181106102bb576102bb610f44565b90506020020160208101906102d09190610e34565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061032d81610f73565b91505061029c565b50505050565b610343610761565b61034d60006107e2565b565b610357610761565b61040c73ca11bde05977b3631167028862be2a173976ca1163252dba4260e01b848460405160240161038a929190610fd2565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610857565b505050565b610419610761565b6002546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610488573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ac919061113d565b90508015610539576002546040517f2e1a7d4d0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff90911690632e1a7d4d90602401600060405180830381600087803b15801561052057600080fd5b505af1158015610534573d6000803e3d6000fd5b505050505b60005b8281101561067c5783838281811061055657610556610f44565b905060200201602081019061056b9190610e34565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff91909116906370a0823190602401602060405180830381865afa1580156105d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fb919061113d565b9150811561066a5761066a61062560005473ffffffffffffffffffffffffffffffffffffffff1690565b8386868581811061063857610638610f44565b905060200201602081019061064d9190610e34565b73ffffffffffffffffffffffffffffffffffffffff169190610883565b8061067481610f73565b91505061053c565b5061040c61069f60005473ffffffffffffffffffffffffffffffffffffffff1690565b47610910565b6106ad610761565b73ffffffffffffffffffffffffffffffffffffffff8116610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61075e816107e2565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461034d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074c565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606061087c838360405180606001604052806027815260200161120560279139610a6a565b9392505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261040c908490610aef565b8047101561097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161074c565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146109d4576040519150601f19603f3d011682016040523d82523d6000602084013e6109d9565b606091505b505090508061040c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161074c565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051610a94919061117a565b600060405180830381855af49150503d8060008114610acf576040519150601f19603f3d011682016040523d82523d6000602084013e610ad4565b606091505b5091509150610ae586838387610bfe565b9695505050505050565b6000610b51826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610ca69092919063ffffffff16565b9050805160001480610b72575080806020019051810190610b729190611196565b61040c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161074c565b60608315610c94578251600003610c8d5773ffffffffffffffffffffffffffffffffffffffff85163b610c8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161074c565b5081610c9e565b610c9e8383610cb5565b949350505050565b6060610c9e8484600085610cf9565b815115610cc55781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c91906111b3565b606082471015610d8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161074c565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610db4919061117a565b60006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5091509150610e0787838387610bfe565b979650505050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461075e57600080fd5b600060208284031215610e4657600080fd5b813561087c81610e12565b60008083601f840112610e6357600080fd5b50813567ffffffffffffffff811115610e7b57600080fd5b6020830191508360208260051b8501011115610e9657600080fd5b9250929050565b801515811461075e57600080fd5b600080600060408486031215610ec057600080fd5b833567ffffffffffffffff811115610ed757600080fd5b610ee386828701610e51565b9094509250506020840135610ef781610e9d565b809150509250925092565b60008060208385031215610f1557600080fd5b823567ffffffffffffffff811115610f2c57600080fd5b610f3885828601610e51565b90969095509350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b60208082528181018390526000906040808401600586901b8501820187855b8881101561112f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc18b360301811261105257600080fd5b8a01803561105f81610e12565b73ffffffffffffffffffffffffffffffffffffffff16845280870135368290037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe10181126110ac57600080fd5b01868101903567ffffffffffffffff8111156110c757600080fd5b8036038213156110d657600080fd5b868886015280878601526060818382880137600086830182015295880195601f9091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016909401909301925090850190600101610ff1565b509098975050505050505050565b60006020828403121561114f57600080fd5b5051919050565b60005b83811015611171578181015183820152602001611159565b50506000910152565b6000825161118c818460208701611156565b9190910192915050565b6000602082840312156111a857600080fd5b815161087c81610e9d565b60208152600082518060208401526111d2816040850160208701611156565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220b60406fab62a461032a6d499a081d611def408cc133f9c2004ada6f8b1e5790764736f6c63430008130033000000000000000000000000fcd300aafe1fdb3166cd1a3b46463144fc2d46ad

Deployed Bytecode

0x60806040526004361061009a5760003560e01c80638da5cb5b11610069578063bd5dec981161004e578063bd5dec981461019f578063d63a8e11146101bf578063f2fde38b146101ff57600080fd5b80638da5cb5b14610154578063baae8abf1461017f57600080fd5b806319ab453c146100a65780633fc8cef3146100c857806364c958081461011f578063715018a61461013f57600080fd5b366100a157005b600080fd5b3480156100b257600080fd5b506100c66100c1366004610e34565b61021f565b005b3480156100d457600080fd5b506002546100f59073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b34801561012b57600080fd5b506100c661013a366004610eab565b610291565b34801561014b57600080fd5b506100c661033b565b34801561016057600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100f5565b34801561018b57600080fd5b506100c661019a366004610f02565b61034f565b3480156101ab57600080fd5b506100c66101ba366004610f02565b610411565b3480156101cb57600080fd5b506101ef6101da366004610e34565b60016020526000908152604090205460ff1681565b6040519015158152602001610116565b34801561020b57600080fd5b506100c661021a366004610e34565b6106a5565b610227610761565b60025473ffffffffffffffffffffffffffffffffffffffff161561024a57600080fd5b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610299610761565b60005b828110156103355781600160008686858181106102bb576102bb610f44565b90506020020160208101906102d09190610e34565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061032d81610f73565b91505061029c565b50505050565b610343610761565b61034d60006107e2565b565b610357610761565b61040c73ca11bde05977b3631167028862be2a173976ca1163252dba4260e01b848460405160240161038a929190610fd2565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610857565b505050565b610419610761565b6002546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610488573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ac919061113d565b90508015610539576002546040517f2e1a7d4d0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff90911690632e1a7d4d90602401600060405180830381600087803b15801561052057600080fd5b505af1158015610534573d6000803e3d6000fd5b505050505b60005b8281101561067c5783838281811061055657610556610f44565b905060200201602081019061056b9190610e34565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff91909116906370a0823190602401602060405180830381865afa1580156105d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fb919061113d565b9150811561066a5761066a61062560005473ffffffffffffffffffffffffffffffffffffffff1690565b8386868581811061063857610638610f44565b905060200201602081019061064d9190610e34565b73ffffffffffffffffffffffffffffffffffffffff169190610883565b8061067481610f73565b91505061053c565b5061040c61069f60005473ffffffffffffffffffffffffffffffffffffffff1690565b47610910565b6106ad610761565b73ffffffffffffffffffffffffffffffffffffffff8116610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61075e816107e2565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461034d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074c565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606061087c838360405180606001604052806027815260200161120560279139610a6a565b9392505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261040c908490610aef565b8047101561097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161074c565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146109d4576040519150601f19603f3d011682016040523d82523d6000602084013e6109d9565b606091505b505090508061040c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161074c565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051610a94919061117a565b600060405180830381855af49150503d8060008114610acf576040519150601f19603f3d011682016040523d82523d6000602084013e610ad4565b606091505b5091509150610ae586838387610bfe565b9695505050505050565b6000610b51826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16610ca69092919063ffffffff16565b9050805160001480610b72575080806020019051810190610b729190611196565b61040c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161074c565b60608315610c94578251600003610c8d5773ffffffffffffffffffffffffffffffffffffffff85163b610c8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161074c565b5081610c9e565b610c9e8383610cb5565b949350505050565b6060610c9e8484600085610cf9565b815115610cc55781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c91906111b3565b606082471015610d8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161074c565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051610db4919061117a565b60006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5091509150610e0787838387610bfe565b979650505050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461075e57600080fd5b600060208284031215610e4657600080fd5b813561087c81610e12565b60008083601f840112610e6357600080fd5b50813567ffffffffffffffff811115610e7b57600080fd5b6020830191508360208260051b8501011115610e9657600080fd5b9250929050565b801515811461075e57600080fd5b600080600060408486031215610ec057600080fd5b833567ffffffffffffffff811115610ed757600080fd5b610ee386828701610e51565b9094509250506020840135610ef781610e9d565b809150509250925092565b60008060208385031215610f1557600080fd5b823567ffffffffffffffff811115610f2c57600080fd5b610f3885828601610e51565b90969095509350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b60208082528181018390526000906040808401600586901b8501820187855b8881101561112f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc18b360301811261105257600080fd5b8a01803561105f81610e12565b73ffffffffffffffffffffffffffffffffffffffff16845280870135368290037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe10181126110ac57600080fd5b01868101903567ffffffffffffffff8111156110c757600080fd5b8036038213156110d657600080fd5b868886015280878601526060818382880137600086830182015295880195601f9091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016909401909301925090850190600101610ff1565b509098975050505050505050565b60006020828403121561114f57600080fd5b5051919050565b60005b83811015611171578181015183820152602001611159565b50506000910152565b6000825161118c818460208701611156565b9190910192915050565b6000602082840312156111a857600080fd5b815161087c81610e9d565b60208152600082518060208401526111d2816040850160208701611156565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220b60406fab62a461032a6d499a081d611def408cc133f9c2004ada6f8b1e5790764736f6c63430008130033

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

000000000000000000000000fcd300aafe1fdb3166cd1a3b46463144fc2d46ad

-----Decoded View---------------
Arg [0] : _owner (address): 0xFcd300AaFE1fDB3166cd1A3B46463144fc2D46ad

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fcd300aafe1fdb3166cd1a3b46463144fc2d46ad


Block Transaction Gas Used Reward
view all blocks sequenced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
BSC27.35%$17,500.2787$7,500.28
BSC8.82%$0.9999912,417.4216$2,417.4
BSC6.77%$0.007907234,678.6188$1,855.56
BSC3.16%$2,004.60.4328$867.56
BSC2.88%$87,158.490.00907015$790.54
BSC2.37%$619.521.0469$648.58
BSC1.28%$0.002755127,492.6697$351.22
BSC0.70%$0.618313312.6592$193.32
BSC0.70%$0.999022192.1567$191.97
BSC0.58%$0.999295158.5216$158.41
BSC0.53%$137.91.0501$144.81
BSC0.50%$0.0153788,943.4118$137.53
BSC0.39%$1106.5653$106.97
BSC0.32%$0.99844187.5355$87.4
BSC0.28%$2.333.877$77.92
BSC0.28%$0.00000242,555,019.9491$77.88
BSC0.28%$3.1324.7691$77.53
BSC0.26%$0.99979670.0869$70.07
BSC0.23%$3.0520.7923$63.33
BSC0.22%$0.0372981,621.968$60.5
BSC0.22%$15.173.8906$59.01
BSC0.21%$0.00000237,310,653.971$58.2
BSC0.21%$0.0313181,797.2785$56.29
BSC0.20%$0.074346755.4428$56.16
BSC0.20%$0.0006584,248.8285$54.77
BSC0.19%$6.178.5518$52.79
BSC0.15%$677.670.0606$41.08
BSC0.15%$86,7480.00046864$40.65
BSC0.14%$11.053.5173$38.87
BSC0.14%$676.60.0574$38.82
BSC0.12%$0.096085354.6038$34.07
BSC0.12%$0.72889746.3913$33.81
BSC0.11%$0.195655160.1448$31.33
BSC0.10%$0.0101152,831.2524$28.64
BSC0.09%$619.30.0412$25.5
BSC0.08%$1,995.140.0108$21.58
BSC0.07%$0.030031668.1561$20.07
BSC0.07%$0.00091221,896.154$19.97
BSC0.07%<$0.0000011,146,248,006.1816$18
BSC0.06%$2,381.960.00732917$17.46
BSC0.06%$6.762.5733$17.4
BSC0.06%$0.0108511,481.5038$16.08
BSC0.04%$1.557.6774$11.9
BSC0.04%$1.39.0569$11.8
BSC0.04%$625.270.0156$9.73
BSC0.03%$0.0029663,192.9735$9.47
BSC0.03%$0.23501738.095$8.95
BSC0.03%<$0.000001617,545,393.105$8.11
BSC0.03%$0.000008917,609.2871$7.41
BSC0.03%$0.00007102,119.279$7.13
BSC0.03%$85,9360.00007979$6.86
BSC0.02%$2.372.8655$6.79
BSC0.02%$0.9993526.6842$6.68
BSC0.02%$0.7263747.1048$5.16
BSC0.02%$336.360.0153$5.14
BSC0.02%$0.9201245.4301$5
BSC0.02%$2.252.1774$4.9
BSC0.02%$14.668$4.67
BSC0.02%$2.042.2027$4.49
BSC0.01%$31.3581$4.08
BSC0.01%$0.00028313,965.7079$3.95
BSC0.01%$2.871.3378$3.84
BSC0.01%$2,235.210.00153104$3.42
BSC0.01%$10.580.3164$3.35
BSC0.01%$0.23042714.0104$3.23
BSC0.01%$0.03727282.5379$3.08
BSC<0.01%<$0.0000011,640,463,815.2119$2.32
BSC<0.01%$0.019783106.7956$2.11
BSC<0.01%$0.08638222.4252$1.94
BSC<0.01%$4.70.4114$1.93
BSC<0.01%$1.261.4621$1.85
BSC<0.01%$0.003943463.2408$1.83
BSC<0.01%$0.000009206,738.7004$1.76
BSC<0.01%$0.02629463.2482$1.66
BSC<0.01%$0.000014114,071.3715$1.63
BSC<0.01%$649.050.00235278$1.53
BSC<0.01%$0.012546112.3417$1.41
BSC<0.01%$0.07678416.6205$1.28
BSC<0.01%$1.081.0679$1.16
BSC<0.01%$0.006782168.5768$1.14
BSC<0.01%$0.2758743.9856$1.1
BSC<0.01%$0.1323347.0693$0.9355
BSC<0.01%$92.670.00946163$0.8768
BSC<0.01%$0.02074640.4121$0.8383
BSC<0.01%$0.2815792.7537$0.7753
BSC<0.01%$0.1023146.2928$0.6438
BSC<0.01%$3.640.175$0.637
BSC<0.01%$0.004815119.7966$0.5768
BSC<0.01%$0.02590421.3706$0.5535
BSC<0.01%$0.6247730.8703$0.5437
BSC<0.01%$86,7470.00000611$0.53
BSC<0.01%$0.1867892.6868$0.5018
BSC<0.01%$0.1485763.3696$0.5006
BSC<0.01%$0.0561378.7545$0.4914
BSC<0.01%$0.0603487.034$0.4244
BSC<0.01%$0.03021212.9149$0.3901
BSC<0.01%$0.02108216.2851$0.3433
BSC<0.01%$0.0370196.0404$0.2236
BSC<0.01%$0.00334141.9327$0.14
LINEA5.69%$0.9998751,561.7788$1,561.58
LINEA2.28%$1625.608$625.61
LINEA1.38%$0.01984419,039.5289$377.82
LINEA1.16%$0.002219143,691.694$318.87
LINEA0.97%$0.0316658,392.5635$265.75
LINEA0.78%$86,7470.00246595$213.91
LINEA0.71%$2,010.350.0975$195.93
LINEA0.40%$2,081.390.053$110.21
LINEA0.33%$0.000257348,274.8$89.49
LINEA0.20%$2,080.830.0266$55.26
LINEA0.20%$0.99955554.6777$54.65
LINEA0.16%$2,397.290.0186$44.6
LINEA0.14%$0.000121318,882.7346$38.43
LINEA0.12%$0.0012425,861.4357$32.07
LINEA0.06%$0.99970917.4841$17.48
LINEA0.06%$0.00018590,412.8572$16.71
LINEA0.06%$2,172.130.00766596$16.65
LINEA0.04%$1.219.3909$11.36
LINEA0.04%$0.00022943,240.5315$9.91
LINEA0.03%$0.9997967.8733$7.87
LINEA0.03%$0.9960677.5083$7.48
LINEA0.03%$3,980.290.00187446$7.46
LINEA0.02%$15.3798$5.38
LINEA0.02%$0.000009577,924.9716$4.95
LINEA0.02%$0.0005368,444.8625$4.53
LINEA0.01%$0.007773357.2695$2.78
LINEA<0.01%$12.7015$2.7
LINEA<0.01%$0.0000013,630,113.613$2.34
LINEA<0.01%$0.2350811.6348$0.3843
POL2.92%$1799.4862$799.49
POL2.26%$0.999875619.9955$619.92
POL0.72%$0.999875198.503$198.48
POL0.70%$2,004.60.0951$190.73
POL0.56%$0.126591,212.3584$153.47
POL0.43%$86,7470.00136703$118.59
POL0.39%$0.00127684,432.9632$107.71
POL0.34%$0.99955592.708$92.67
POL0.19%$0.250646206.3374$51.72
POL0.16%$0.0277971,544.1326$42.92
POL0.13%$0.235857151.9591$35.84
POL0.13%$16.62.1024$34.9
POL0.10%$15.111.8972$28.67
POL0.10%$0.0059794,376.03$26.16
POL0.05%$0.21131762.0765$13.12
POL0.05%$0.49769426.0029$12.94
POL0.04%$0.23498244.073$10.36
POL0.04%$0.31005231.7986$9.86
POL0.03%$0.25735535.9719$9.26
POL0.03%$0.00037324,180.5137$9.02
POL0.03%$0.000013675,471.7717$8.9
POL0.03%$3.822.2063$8.44
POL0.03%$2,397.290.00351399$8.42
POL0.03%$0.012499666.3356$8.33
POL0.03%$177.550.0425$7.54
POL0.03%$0.002233,159.8526$7.05
POL0.03%$0.53620913.1431$7.05
POL0.03%$0.00044115,863.1347$7
POL0.02%$0.0029631,947.4703$5.77
POL0.02%$8.260.693$5.72
POL0.02%$1.583.374$5.33
POL0.02%<$0.000001883,703,258.4049$4.77
POL0.02%$0.09394750.487$4.74
POL0.02%$0.028547155.4077$4.44
POL0.02%$6.450.6485$4.18
POL0.01%<$0.0000018,175,729.7497$3.37
POL0.01%$0.12787423.2422$2.97
POL0.01%$0.9997962.8793$2.88
POL0.01%$0.00017116,589.9528$2.84
POL<0.01%$0.0009842,739.5514$2.7
POL<0.01%$0.013167201.0985$2.65
POL<0.01%$0.00023310,960.2879$2.56
POL<0.01%$0.03860560.5095$2.34
POL<0.01%$0.0008032,905.8373$2.33
POL<0.01%$0.004996425.9066$2.13
POL<0.01%$0.009739218.2982$2.13
POL<0.01%$0.00013715,422.3502$2.12
POL<0.01%$0.008475245.0921$2.08
POL<0.01%$0.4113074.9882$2.05
POL<0.01%<$0.00000112,567,167.9084$2.04
POL<0.01%$0.0010411,910.65$1.99
POL<0.01%$0.004124457.9936$1.89
POL<0.01%$0.0539734.8578$1.88
POL<0.01%$0.00196867.0495$1.7
POL<0.01%$0.004857344.7029$1.67
POL<0.01%$0.0001898,835.229$1.67
POL<0.01%$0.006662219.8532$1.46
POL<0.01%$0.006416227.0678$1.46
POL<0.01%$0.01958472.0614$1.41
POL<0.01%$0.0002295,749.399$1.31
POL<0.01%$0.00372343.8883$1.28
POL<0.01%$0.000472,343.3948$1.1
POL<0.01%$6.730.1606$1.08
POL<0.01%$0.2312714.5129$1.04
POL<0.01%$0.4446682.3245$1.03
POL<0.01%$0.00006416,117.4124$1.03
POL<0.01%$0.001114853.9317$0.9514
POL<0.01%$0.01407563.9223$0.8997
POL<0.01%$0.2823242.9758$0.8401
POL<0.01%$0.0002223,606.4358$0.8007
POL<0.01%$21.940.0364$0.7992
POL<0.01%$0.001329588.574$0.7822
POL<0.01%$0.0100277.7095$0.7786
POL<0.01%$0.0789159.7561$0.7699
POL<0.01%$1.020.6666$0.6812
POL<0.01%$0.0857177.6241$0.6535
POL<0.01%$0.00122534.8868$0.6523
POL<0.01%$0.001085585.1736$0.635
POL<0.01%$0.001278485.9211$0.6211
POL<0.01%$0.1421784.2231$0.6004
POL<0.01%$0.0998355.562$0.5552
POL<0.01%$0.001063520.2565$0.5528
POL<0.01%$0.003488157.7921$0.5503
POL<0.01%$0.001179466.4608$0.55
POL<0.01%$0.0001183,935.2823$0.4654
POL<0.01%$1,368.090.00032664$0.4468
POL<0.01%$0.0535648.1877$0.4385
POL<0.01%$0.002352173.6934$0.4085
POL<0.01%$0.00055722.1792$0.397
POL<0.01%$0.000484790.7619$0.3829
POL<0.01%$0.03449810.7156$0.3696
POL<0.01%$3.950.0909$0.359
POL<0.01%$0.661770.5169$0.342
POL<0.01%$0.000113,069.1852$0.3386
POL<0.01%$0.0000933,593.0916$0.3326
POL<0.01%$1.180.2679$0.3161
POL<0.01%$0.4640310.6559$0.3043
POL<0.01%$0.001584190.2371$0.3012
POL<0.01%$0.0005588.7542$0.2944
POL<0.01%$1.420.1861$0.2643
POL<0.01%$0.000471558.6077$0.2629
POL<0.01%$0.001066242.1477$0.2581
POL<0.01%$0.002161118.69$0.2564
POL<0.01%$1.170.2118$0.2479
POL<0.01%$0.0812742.9329$0.2383
POL<0.01%$0.000314726.8171$0.2281
POL<0.01%$0.00245790.8737$0.2232
POL<0.01%$26.240.00837334$0.2197
POL<0.01%$0.2485540.8806$0.2188
POL<0.01%$0.3410470.624$0.2128
POL<0.01%$0.0727752.9221$0.2126
POL<0.01%$0.2685920.7064$0.1897
POL<0.01%$0.00250775.0128$0.188
POL<0.01%$0.2703070.6366$0.172
POL<0.01%$2,189.860.00007793$0.1706
POL<0.01%$0.0432083.5488$0.1533
POL<0.01%$0.0158559.4438$0.1497
POL<0.01%$0.0764181.9151$0.1463
POL<0.01%$1.040.1362$0.1416
POL<0.01%$3,023.520.00004583$0.1385
POL<0.01%$0.00162385.1195$0.1381
POL<0.01%$0.000204667.5959$0.1363
POL<0.01%$0.00744717.5478$0.1306
POL<0.01%$0.0502682.5847$0.1299
POL<0.01%$0.5238580.2402$0.1258
POL<0.01%$0.00000337,789.6015$0.1092
POL<0.01%$0.9936160.109$0.1083
SONIC2.04%$0.999875558.6274$558.56
SONIC0.71%$0.600237326.0266$195.69
SONIC0.64%$0.593515296.3396$175.88
SONIC0.42%$0.286093403.6846$115.49
SONIC0.28%$0.99931275.4908$75.44
SONIC0.24%$0.605936106.4349$64.49
SONIC0.18%$2,000.780.0246$49.21
SONIC0.16%$6.556.7819$44.42
SONIC0.09%$124.6076$24.61
SONIC0.06%$0.022684761.8376$17.28
SONIC0.03%$0.0058881,298.7929$7.65
SONIC0.03%$0.15172248.2588$7.32
SONIC0.02%$0.999385.7231$5.72
SONIC0.02%$1.125.042$5.65
SONIC0.02%$1,995.140.00261151$5.21
SONIC0.02%$0.021721223.4239$4.85
SONIC0.02%$0.05308889.286$4.74
SONIC0.01%$86,7470.00003316$2.88
SONIC<0.01%$0.04173239.0357$1.63
SONIC<0.01%$1.311.1042$1.45
SONIC<0.01%$2.870.3823$1.1
SONIC<0.01%$0.01472173.9873$1.09
SONIC<0.01%$0.0002464,356.9533$1.07
SONIC<0.01%$0.002925299.8421$0.8768
SONIC<0.01%$0.03852222.7121$0.8749
SONIC<0.01%$0.0124263.5827$0.7897
SONIC<0.01%$0.3072761.7945$0.5514
SONIC<0.01%$0.002145204.5907$0.4388
SONIC<0.01%$1.080.4064$0.4369
SONIC<0.01%$0.002108196.5742$0.4143
SONIC<0.01%$82.930.00399723$0.3314
SONIC<0.01%$0.8882660.2977$0.2643
SONIC<0.01%$0.2141511.1252$0.2409
SONIC<0.01%$0.00315471.3496$0.225
ETH1.30%$0.99984356.8618$356.8
ETH1.16%$0.00598453,382.43$319.45
ETH0.94%$1256.5799$256.58
ETH0.23%$2,004.750.0318$63.66
ETH0.16%$0.99969443.1164$43.1
ETH0.15%$0.00158126,129.6903$41.32
ETH0.11%$0.217859136.4886$29.74
ETH0.08%$2,004.750.0116$23.19
ETH0.08%$5.064.4659$22.6
ETH0.07%$0.0158441,211.4624$19.19
ETH0.07%$86,8870.00021081$18.32
ETH0.05%$0.0071112,082.167$14.81
ETH0.03%$0.30979228.7929$8.92
ETH0.02%$177.860.0377$6.7
ETH0.02%$3.151.9065$6.01
ETH<0.01%$0.0000021,112,641.4406$2.2
ETH<0.01%$0.06063711.9291$0.7233
ETH<0.01%$0.00389676.0868$0.2964
FTM2.76%<$0.0000019,586,727,510.4285$757.35
FTM0.52%$86,8030.00165056$143.27
FTM0.15%$1.0241.3608$42.27
FTM0.12%$0.99987533.8687$33.86
FTM0.06%$0.053179322.0265$17.13
FTM0.04%$0.59640720.0258$11.94
FTM0.04%$0.36733428.5377$10.48
FTM0.02%$0.02175304.5876$6.62
FTM0.02%$0.9966565.1547$5.14
FTM0.02%$0.21002421.5377$4.52
FTM0.02%$2,004.620.00216236$4.33
FTM0.01%$29.420.1251$3.68
FTM0.01%$0.5679825.6144$3.19
FTM0.01%$0.003455857.8569$2.96
FTM0.01%$1.312.2555$2.95
FTM<0.01%$12.6284$2.63
FTM<0.01%$5.730.3454$1.98
FTM<0.01%$2,004.620.0006842$1.37
FTM<0.01%$0.01961559.4087$1.17
FTM<0.01%$15.170.0556$0.8433
FTM<0.01%$0.005881134.9954$0.7938
FTM<0.01%$5,346.940.00010773$0.576
FTM<0.01%$0.003718132.2451$0.4916
FTM<0.01%$0.3560571.3571$0.4832
FTM<0.01%$86,8030.00000543$0.4713
FTM<0.01%$0.9992660.4258$0.4255
FTM<0.01%$0.003518120.7719$0.4248
FTM<0.01%$0.7970170.5243$0.4178
FTM<0.01%$0.1998391.8888$0.3774
FTM<0.01%$0.222541.4303$0.3183
FTM<0.01%$0.9998160.3172$0.3171
FTM<0.01%$0.000663447.4894$0.2964
FTM<0.01%$0.00001120,842.1675$0.2207
FTM<0.01%$197.660.00105048$0.2076
FTM<0.01%$0.00880822.272$0.1961
FTM<0.01%<$0.0000012,964,168.2809$0.1802
FTM<0.01%$0.0000422,840.2602$0.1187
ZKEVM0.09%$125.3252$25.33
ZKEVM0.02%$16.0846$6.08
ZKEVM0.02%$0.23526518.7424$4.41
ZKEVM0.01%$0.23521817.157$4.04
ZKEVM<0.01%$86,8760.00001988$1.73
ZKEVM<0.01%$0.9995261.051$1.05
ZKEVM<0.01%$15.120.0646$0.9768
ZKEVM<0.01%$0.003175290.163$0.9211
ZKEVM<0.01%$2,002.990.00032916$0.6593
ZKEVM<0.01%$10.5077$0.5077
ZKEVM<0.01%$177.850.00265329$0.4718
ARB0.01%$2,002.990.00166054$3.33
ARB<0.01%$11.9758$1.98
ARB<0.01%$0.9998541.8432$1.84
ARB<0.01%$86,8760.0000076$0.6602
BASE<0.01%$0.999842.1372$2.14
BASE<0.01%$0.006965100$0.6964
Loading...
Loading
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.