POL Price: $0.595043 (-1.35%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0.003962647417996886 POL

POL Value

Less Than $0.01 (@ $0.60/POL)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap Balance649842642024-12-02 7:20:061 hr ago1733124006IN
0x23b5aa43...A549dFc06
0 POL0.02565252155.90352762
Swap Balance649839632024-12-02 7:09:261 hr ago1733123366IN
0x23b5aa43...A549dFc06
0 POL0.02441947156.73506392
Swap Balance649793222024-12-02 4:19:254 hrs ago1733113165IN
0x23b5aa43...A549dFc06
0 POL0.15256689222.4325018
Swap Balance649771532024-12-02 2:59:545 hrs ago1733108394IN
0x23b5aa43...A549dFc06
0 POL0.02946028189.20458771
Swap Balance649747082024-12-02 1:29:557 hrs ago1733102995IN
0x23b5aa43...A549dFc06
0 POL0.03617488154.68475903
Swap Balance649725332024-12-02 0:09:548 hrs ago1733098194IN
0x23b5aa43...A549dFc06
0 POL0.5074659150.00000124
Swap Balance649711702024-12-01 23:19:599 hrs ago1733095199IN
0x23b5aa43...A549dFc06
0 POL0.02337105150.00000005
Swap Balance649706092024-12-01 23:00:009 hrs ago1733094000IN
0x23b5aa43...A549dFc06
0 POL0.02322495150.00000003
Swap Balance649700632024-12-01 22:39:569 hrs ago1733092796IN
0x23b5aa43...A549dFc06
0 POL0.0337629150.00000003
Swap Balance649697872024-12-01 22:30:0010 hrs ago1733092200IN
0x23b5aa43...A549dFc06
0 POL0.03351735150.00000004
Swap Balance649645032024-12-01 19:19:5113 hrs ago1733080791IN
0x23b5aa43...A549dFc06
0 POL0.0233909150.14094643
Swap Balance649633532024-12-01 18:38:0913 hrs ago1733078289IN
0x23b5aa43...A549dFc06
0 POL0.02335972150.81787983
Swap Balance649600352024-12-01 16:39:2715 hrs ago1733071167IN
0x23b5aa43...A549dFc06
0 POL0.03254334208.91382443
Swap Balance649584012024-12-01 15:40:0316 hrs ago1733067603IN
0x23b5aa43...A549dFc06
0 POL0.03016523206.33139898
Swap Balance649526642024-12-01 12:09:3020 hrs ago1733054970IN
0x23b5aa43...A549dFc06
0 POL0.25455656154.82732809
Swap Balance649487442024-12-01 9:50:0422 hrs ago1733046604IN
0x23b5aa43...A549dFc06
0 POL0.02373278152.31583431
Swap Balance649481892024-12-01 9:30:1023 hrs ago1733045410IN
0x23b5aa43...A549dFc06
0 POL0.06133402152.0589082
Swap Balance649417892024-12-01 5:39:2026 hrs ago1733031560IN
0x23b5aa43...A549dFc06
0 POL0.02323414150.03418466
Swap Balance649396012024-12-01 4:20:0128 hrs ago1733026801IN
0x23b5aa43...A549dFc06
0 POL0.02355582151.11994987
Swap Balance649370722024-12-01 2:50:0329 hrs ago1733021403IN
0x23b5aa43...A549dFc06
0 POL0.03287167154.38290331
Swap Balance649326252024-12-01 0:09:5732 hrs ago1733011797IN
0x23b5aa43...A549dFc06
0 POL0.31948155150.00000226
Swap Balance649320812024-11-30 23:50:0132 hrs ago1733010601IN
0x23b5aa43...A549dFc06
0 POL0.0278475150.00000004
Swap Balance649317952024-11-30 23:39:5232 hrs ago1733009992IN
0x23b5aa43...A549dFc06
0 POL0.02322150.00000005
Swap Balance649306802024-11-30 22:59:2133 hrs ago1733007561IN
0x23b5aa43...A549dFc06
0 POL0.0314514150.00000048
Swap Balance649304132024-11-30 22:49:4933 hrs ago1733006989IN
0x23b5aa43...A549dFc06
0 POL0.10284975150.00000051
View all transactions

Latest 2 internal transactions

Parent Transaction Hash Block From To
634913012024-10-26 0:00:1037 days ago1729900810
0x23b5aa43...A549dFc06
0.00396264 POL
567787522024-05-09 22:49:23206 days ago1715294963  Contract Creation0 POL
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FeeCollector

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : FeeCollector.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.0;

import {Owned} from "solmate/auth/Owned.sol";
import {ERC20} from "solmate/tokens/ERC20.sol";
import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol";
import {IFeeCollector} from "./interfaces/IFeeCollector.sol";
import {IPermit2} from "./external/IPermit2.sol";

/// @notice The collector of protocol fees that will be used to swap and send to a fee recipient address.
contract FeeCollector is Owned, IFeeCollector {
    using SafeTransferLib for ERC20;

    address public universalRouter;

    ERC20 public immutable feeToken;
    IPermit2 public immutable permit2;

    uint256 public constant MAX_APPROVAL_AMOUNT = type(uint256).max;
    uint160 public constant MAX_PERMIT2_APPROVAL_AMOUNT = type(uint160).max;
    uint48 public constant MAX_PERMIT2_DEADLINE = type(uint48).max;

    constructor(address _owner, address _universalRouter, address _permit2, address _feeToken) Owned(_owner) {
        universalRouter = _universalRouter;
        feeToken = ERC20(_feeToken);
        permit2 = IPermit2(_permit2);
    }

    /// @inheritdoc IFeeCollector
    function swapBalance(bytes calldata swapData, uint256 nativeValue) external onlyOwner {
        _execute(swapData, nativeValue);
    }

    /// @inheritdoc IFeeCollector
    function swapBalance(bytes calldata swapData, uint256 nativeValue, ERC20[] calldata tokensToApprove)
        external
        onlyOwner
    {
        unchecked {
            for (uint256 i = 0; i < tokensToApprove.length; i++) {
                tokensToApprove[i].safeApprove(address(permit2), MAX_APPROVAL_AMOUNT);
                permit2.approve(
                    address(tokensToApprove[i]), universalRouter, MAX_PERMIT2_APPROVAL_AMOUNT, MAX_PERMIT2_DEADLINE
                );
            }
        }

        _execute(swapData, nativeValue);
    }

    /// @notice Helper function to call UniversalRouter.
    /// @param swapData The bytes call data to be forwarded to UniversalRouter.
    /// @param nativeValue The amount of native currency to send to UniversalRouter.
    function _execute(bytes calldata swapData, uint256 nativeValue) internal {
        (bool success,) = universalRouter.call{value: nativeValue}(swapData);
        if (!success) revert UniversalRouterCallFailed();
    }

    /// @inheritdoc IFeeCollector
    function revokeTokenApprovals(ERC20[] calldata tokensToRevoke) external onlyOwner {
        unchecked {
            for (uint256 i = 0; i < tokensToRevoke.length; i++) {
                tokensToRevoke[i].safeApprove(address(permit2), 0);
            }
        }
    }

    /// @inheritdoc IFeeCollector
    function revokePermit2Approvals(IPermit2.TokenSpenderPair[] calldata approvals) external onlyOwner {
        permit2.lockdown(approvals);
    }

    /// @inheritdoc IFeeCollector
    function withdrawFeeToken(address feeRecipient, uint256 amount) external onlyOwner {
        feeToken.safeTransfer(feeRecipient, amount);
    }

    /// @inheritdoc IFeeCollector
    function setUniversalRouter(address _universalRouter) external onlyOwner {
        emit UniversalRouterChanged(universalRouter, _universalRouter);
        universalRouter = _universalRouter;
    }

    receive() external payable {}
}

File 2 of 8 : Owned.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

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

    /*//////////////////////////////////////////////////////////////
                            OWNERSHIP STORAGE
    //////////////////////////////////////////////////////////////*/

    address public owner;

    modifier onlyOwner() virtual {
        require(msg.sender == owner, "UNAUTHORIZED");

        _;
    }

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address _owner) {
        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    /*//////////////////////////////////////////////////////////////
                             OWNERSHIP LOGIC
    //////////////////////////////////////////////////////////////*/

    function transferOwnership(address newOwner) public virtual onlyOwner {
        owner = newOwner;

        emit OwnershipTransferred(msg.sender, newOwner);
    }
}

File 3 of 8 : ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 amount);

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

File 4 of 8 : SafeTransferLib.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

import {ERC20} from "../tokens/ERC20.sol";

/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)
/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer.
/// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.
library SafeTransferLib {
    /*//////////////////////////////////////////////////////////////
                             ETH OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferETH(address to, uint256 amount) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Transfer the ETH and store if it succeeded or not.
            success := call(gas(), to, amount, 0, 0, 0, 0)
        }

        require(success, "ETH_TRANSFER_FAILED");
    }

    /*//////////////////////////////////////////////////////////////
                            ERC20 OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferFrom(
        ERC20 token,
        address from,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), and(from, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "from" argument.
            mstore(add(freeMemoryPointer, 36), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 100 because the length of our calldata totals up like so: 4 + 32 * 3.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 100, 0, 32)
            )
        }

        require(success, "TRANSFER_FROM_FAILED");
    }

    function safeTransfer(
        ERC20 token,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
            )
        }

        require(success, "TRANSFER_FAILED");
    }

    function safeApprove(
        ERC20 token,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
            )
        }

        require(success, "APPROVE_FAILED");
    }
}

File 5 of 8 : IFeeCollector.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.13;

import {ERC20} from "solmate/tokens/ERC20.sol";
import {IPermit2} from "../external/IPermit2.sol";

/// @notice The collector of protocol fees that will be used to swap and send to a fee recipient address.
interface IFeeCollector {
    /// @notice Error thrown when the call to UniversalRouter fails.
    error UniversalRouterCallFailed();

    /// @notice Emitted when the UniversalRouter address is changed.
    /// @param oldUniversalRouter The old router address.
    /// @param newUniversalRouter The new router address.
    event UniversalRouterChanged(address oldUniversalRouter, address newUniversalRouter);

    /// @notice Swaps the contract balance.
    /// @param swapData The bytes call data to be forwarded to UniversalRouter.
    /// @param nativeValue The amount of native currency to send to UniversalRouter.
    function swapBalance(bytes calldata swapData, uint256 nativeValue) external;

    /// @notice Approves tokens for swapping and then swaps the contract balance.
    /// @param swapData The bytes call data to be forwarded to UniversalRouter.
    /// @param nativeValue The amount of native currency to send to UniversalRouter.
    /// @param tokensToApprove An array of ERC20 tokens to approve for spending.
    function swapBalance(bytes calldata swapData, uint256 nativeValue, ERC20[] calldata tokensToApprove) external;

    /// @notice Revokes approvals on tokens by setting their allowance to 0.
    /// @param tokensToRevoke The token to revoke the approval for.
    function revokeTokenApprovals(ERC20[] calldata tokensToRevoke) external;

    /// @notice Revokes the permit2 allowance of a spender by setting token allowances to 0.
    /// @param approvals The approvals to revoke.
    function revokePermit2Approvals(IPermit2.TokenSpenderPair[] calldata approvals) external;

    /// @notice Transfers the fee token balance from this contract to the fee recipient.
    /// @param feeRecipient The address to send the fee token balance to.
    /// @param amount The amount to withdraw.
    function withdrawFeeToken(address feeRecipient, uint256 amount) external;

    /// @notice Sets the address of the UniversalRouter contract.
    /// @param _universalRouter The address of the UniversalRouter contract.
    function setUniversalRouter(address _universalRouter) external;
}

File 6 of 8 : IPermit2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

/// @notice Permit2 handles signature-based transfers in SignatureTransfer and allowance-based transfers in AllowanceTransfer.
/// @dev Users must approve Permit2 before calling any of the transfer functions.
interface IPermit2 is IAllowanceTransfer {
// IPermit2 unifies the two interfaces so users have maximal flexibility with their approval.
}

File 7 of 8 : IAllowanceTransfer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

/// @title AllowanceTransfer
/// @notice Handles ERC20 token permissions through signature based allowance setting and ERC20 token transfers by checking allowed amounts
/// @dev Requires user's token approval on the Permit2 contract
interface IAllowanceTransfer is IEIP712 {
    /// @notice A token spender pair.
    struct TokenSpenderPair {
        // the token the spender is approved
        address token;
        // the spender address
        address spender;
    }

    /// @notice A mapping from owner address to token address to spender address to PackedAllowance struct, which contains details and conditions of the approval.
    /// @notice The mapping is indexed in the above order see: allowance[ownerAddress][tokenAddress][spenderAddress]
    /// @dev The packed slot holds the allowed amount, expiration at which the allowed amount is no longer valid, and current nonce thats updated on any signature based approvals.
    function allowance(address user, address token, address spender)
        external
        view
        returns (uint160 amount, uint48 expiration, uint48 nonce);

    /// @notice Approves the spender to use up to amount of the specified token up until the expiration
    /// @param token The token to approve
    /// @param spender The spender address to approve
    /// @param amount The approved amount of the token
    /// @param expiration The timestamp at which the approval is no longer valid
    /// @dev The packed allowance also holds a nonce, which will stay unchanged in approve
    /// @dev Setting amount to type(uint160).max sets an unlimited approval
    function approve(address token, address spender, uint160 amount, uint48 expiration) external;

    /// @notice Enables performing a "lockdown" of the sender's Permit2 identity
    /// by batch revoking approvals
    /// @param approvals Array of approvals to revoke.
    function lockdown(TokenSpenderPair[] calldata approvals) external;
}

File 8 of 8 : IEIP712.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IEIP712 {
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "solmate/=lib/solmate/src/",
    "v2-core/=lib/v2-core/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "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

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_universalRouter","type":"address"},{"internalType":"address","name":"_permit2","type":"address"},{"internalType":"address","name":"_feeToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"UniversalRouterCallFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldUniversalRouter","type":"address"},{"indexed":false,"internalType":"address","name":"newUniversalRouter","type":"address"}],"name":"UniversalRouterChanged","type":"event"},{"inputs":[],"name":"MAX_APPROVAL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERMIT2_APPROVAL_AMOUNT","outputs":[{"internalType":"uint160","name":"","type":"uint160"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERMIT2_DEADLINE","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permit2","outputs":[{"internalType":"contract IPermit2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"internalType":"struct IAllowanceTransfer.TokenSpenderPair[]","name":"approvals","type":"tuple[]"}],"name":"revokePermit2Approvals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20[]","name":"tokensToRevoke","type":"address[]"}],"name":"revokeTokenApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_universalRouter","type":"address"}],"name":"setUniversalRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"swapData","type":"bytes"},{"internalType":"uint256","name":"nativeValue","type":"uint256"}],"name":"swapBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"swapData","type":"bytes"},{"internalType":"uint256","name":"nativeValue","type":"uint256"},{"internalType":"contract ERC20[]","name":"tokensToApprove","type":"address[]"}],"name":"swapBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"universalRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"feeRecipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFeeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405234801561001057600080fd5b50604051610d96380380610d9683398101604081905261002f916100bf565b600080546001600160a01b0319166001600160a01b03861690811782556040518692907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b0394851617905582166080521660a05250610113565b80516001600160a01b03811681146100ba57600080fd5b919050565b600080600080608085870312156100d557600080fd5b6100de856100a3565b93506100ec602086016100a3565b92506100fa604086016100a3565b9150610108606086016100a3565b905092959194509250565b60805160a051610c3c61015a6000396000818160ff01528181610414015281816105100152818161054601526106720152600081816101cd01526104ab0152610c3c6000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063b4a25ce711610059578063b4a25ce714610273578063bbf20c15146102a4578063d88d35de146102c4578063f2fde38b146102e457600080fd5b80638da5cb5b1461020f57806394a228b51461022f578063b2ef14e31461025357600080fd5b8063481fb142116100bb578063481fb14214610180578063628a4b2f1461019b578063647846a5146101bb57806365d82753146101ef57600080fd5b806312261ee7146100ed5780631ac169861461013e57806335a9e4df1461016057600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561014a57600080fd5b5061015e61015936600461092a565b610304565b005b34801561016c57600080fd5b50600154610121906001600160a01b031681565b34801561018c57600080fd5b506101216001600160a01b0381565b3480156101a757600080fd5b5061015e6101b636600461098e565b610347565b3480156101c757600080fd5b506101217f000000000000000000000000000000000000000000000000000000000000000081565b3480156101fb57600080fd5b5061015e61020a3660046109f7565b6103da565b34801561021b57600080fd5b50600054610121906001600160a01b031681565b34801561023b57600080fd5b5061024560001981565b604051908152602001610135565b34801561025f57600080fd5b5061015e61026e366004610a39565b610474565b34801561027f57600080fd5b5061028d65ffffffffffff81565b60405165ffffffffffff9091168152602001610135565b3480156102b057600080fd5b5061015e6102bf366004610a65565b6104d6565b3480156102d057600080fd5b5061015e6102df366004610adf565b610631565b3480156102f057600080fd5b5061015e6102ff36600461098e565b6106df565b6000546001600160a01b031633146103375760405162461bcd60e51b815260040161032e90610b54565b60405180910390fd5b610342838383610754565b505050565b6000546001600160a01b031633146103715760405162461bcd60e51b815260040161032e90610b54565b600154604080516001600160a01b03928316815291831660208301527f736ee8e49f5bc52c4483e2bf96ce5c99a25af7c12037267ccde543b28ab63071910160405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104045760405162461bcd60e51b815260040161032e90610b54565b60005b818110156103425761046c7f0000000000000000000000000000000000000000000000000000000000000000600085858581811061044757610447610b7a565b905060200201602081019061045c919061098e565b6001600160a01b031691906107e0565b600101610407565b6000546001600160a01b0316331461049e5760405162461bcd60e51b815260040161032e90610b54565b6104d26001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383610860565b5050565b6000546001600160a01b031633146105005760405162461bcd60e51b815260040161032e90610b54565b60005b8181101561061e576105447f000000000000000000000000000000000000000000000000000000000000000060001985858581811061044757610447610b7a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166387517c4584848481811061058557610585610b7a565b905060200201602081019061059a919061098e565b60015460405160e084901b6001600160e01b03191681526001600160a01b0392831660048201529082166024820152604481019190915265ffffffffffff6064820152608401600060405180830381600087803b1580156105fa57600080fd5b505af115801561060e573d6000803e3d6000fd5b5050600190920191506105039050565b5061062a858585610754565b5050505050565b6000546001600160a01b0316331461065b5760405162461bcd60e51b815260040161032e90610b54565b60405163cc53287f60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cc53287f906106a99085908590600401610b90565b600060405180830381600087803b1580156106c357600080fd5b505af11580156106d7573d6000803e3d6000fd5b505050505050565b6000546001600160a01b031633146107095760405162461bcd60e51b815260040161032e90610b54565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6001546040516000916001600160a01b03169083906107769087908790610bf6565b60006040518083038185875af1925050503d80600081146107b3576040519150601f19603f3d011682016040523d82523d6000602084013e6107b8565b606091505b50509050806107da5760405163cee8b77760e01b815260040160405180910390fd5b50505050565b600060405163095ea7b360e01b81526001600160a01b0384166004820152826024820152602060006044836000895af13d15601f3d11600160005114161716915050806107da5760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b604482015260640161032e565b600060405163a9059cbb60e01b81526001600160a01b0384166004820152826024820152602060006044836000895af13d15601f3d11600160005114161716915050806107da5760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b604482015260640161032e565b60008083601f8401126108f357600080fd5b50813567ffffffffffffffff81111561090b57600080fd5b60208301915083602082850101111561092357600080fd5b9250929050565b60008060006040848603121561093f57600080fd5b833567ffffffffffffffff81111561095657600080fd5b610962868287016108e1565b909790965060209590950135949350505050565b6001600160a01b038116811461098b57600080fd5b50565b6000602082840312156109a057600080fd5b81356109ab81610976565b9392505050565b60008083601f8401126109c457600080fd5b50813567ffffffffffffffff8111156109dc57600080fd5b6020830191508360208260051b850101111561092357600080fd5b60008060208385031215610a0a57600080fd5b823567ffffffffffffffff811115610a2157600080fd5b610a2d858286016109b2565b90969095509350505050565b60008060408385031215610a4c57600080fd5b8235610a5781610976565b946020939093013593505050565b600080600080600060608688031215610a7d57600080fd5b853567ffffffffffffffff80821115610a9557600080fd5b610aa189838a016108e1565b9097509550602088013594506040880135915080821115610ac157600080fd5b50610ace888289016109b2565b969995985093965092949392505050565b60008060208385031215610af257600080fd5b823567ffffffffffffffff80821115610b0a57600080fd5b818501915085601f830112610b1e57600080fd5b813581811115610b2d57600080fd5b8660208260061b8501011115610b4257600080fd5b60209290920196919550909350505050565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101839052600090604080840186845b87811015610be9578135610bb981610976565b6001600160a01b0390811684528286013590610bd482610976565b16838601529183019190830190600101610ba6565b5090979650505050505050565b818382376000910190815291905056fea26469706673582212209ca59ca3b1a45c0142169edc7d5c3e7051782a57f49a40db6fa82c782f3349f864736f6c63430008130033000000000000000000000000be84d31b2ee049dcb1d8e7c798511632b44d1b55000000000000000000000000ec7be89e9d109e7e3fec59c222cf297125fefda2000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba30000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359

Deployed Bytecode

0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063b4a25ce711610059578063b4a25ce714610273578063bbf20c15146102a4578063d88d35de146102c4578063f2fde38b146102e457600080fd5b80638da5cb5b1461020f57806394a228b51461022f578063b2ef14e31461025357600080fd5b8063481fb142116100bb578063481fb14214610180578063628a4b2f1461019b578063647846a5146101bb57806365d82753146101ef57600080fd5b806312261ee7146100ed5780631ac169861461013e57806335a9e4df1461016057600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101217f000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba381565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561014a57600080fd5b5061015e61015936600461092a565b610304565b005b34801561016c57600080fd5b50600154610121906001600160a01b031681565b34801561018c57600080fd5b506101216001600160a01b0381565b3480156101a757600080fd5b5061015e6101b636600461098e565b610347565b3480156101c757600080fd5b506101217f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c335981565b3480156101fb57600080fd5b5061015e61020a3660046109f7565b6103da565b34801561021b57600080fd5b50600054610121906001600160a01b031681565b34801561023b57600080fd5b5061024560001981565b604051908152602001610135565b34801561025f57600080fd5b5061015e61026e366004610a39565b610474565b34801561027f57600080fd5b5061028d65ffffffffffff81565b60405165ffffffffffff9091168152602001610135565b3480156102b057600080fd5b5061015e6102bf366004610a65565b6104d6565b3480156102d057600080fd5b5061015e6102df366004610adf565b610631565b3480156102f057600080fd5b5061015e6102ff36600461098e565b6106df565b6000546001600160a01b031633146103375760405162461bcd60e51b815260040161032e90610b54565b60405180910390fd5b610342838383610754565b505050565b6000546001600160a01b031633146103715760405162461bcd60e51b815260040161032e90610b54565b600154604080516001600160a01b03928316815291831660208301527f736ee8e49f5bc52c4483e2bf96ce5c99a25af7c12037267ccde543b28ab63071910160405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104045760405162461bcd60e51b815260040161032e90610b54565b60005b818110156103425761046c7f000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3600085858581811061044757610447610b7a565b905060200201602081019061045c919061098e565b6001600160a01b031691906107e0565b600101610407565b6000546001600160a01b0316331461049e5760405162461bcd60e51b815260040161032e90610b54565b6104d26001600160a01b037f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359168383610860565b5050565b6000546001600160a01b031633146105005760405162461bcd60e51b815260040161032e90610b54565b60005b8181101561061e576105447f000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba360001985858581811061044757610447610b7a565b7f000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba36001600160a01b03166387517c4584848481811061058557610585610b7a565b905060200201602081019061059a919061098e565b60015460405160e084901b6001600160e01b03191681526001600160a01b0392831660048201529082166024820152604481019190915265ffffffffffff6064820152608401600060405180830381600087803b1580156105fa57600080fd5b505af115801561060e573d6000803e3d6000fd5b5050600190920191506105039050565b5061062a858585610754565b5050505050565b6000546001600160a01b0316331461065b5760405162461bcd60e51b815260040161032e90610b54565b60405163cc53287f60e01b81526001600160a01b037f000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3169063cc53287f906106a99085908590600401610b90565b600060405180830381600087803b1580156106c357600080fd5b505af11580156106d7573d6000803e3d6000fd5b505050505050565b6000546001600160a01b031633146107095760405162461bcd60e51b815260040161032e90610b54565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6001546040516000916001600160a01b03169083906107769087908790610bf6565b60006040518083038185875af1925050503d80600081146107b3576040519150601f19603f3d011682016040523d82523d6000602084013e6107b8565b606091505b50509050806107da5760405163cee8b77760e01b815260040160405180910390fd5b50505050565b600060405163095ea7b360e01b81526001600160a01b0384166004820152826024820152602060006044836000895af13d15601f3d11600160005114161716915050806107da5760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b604482015260640161032e565b600060405163a9059cbb60e01b81526001600160a01b0384166004820152826024820152602060006044836000895af13d15601f3d11600160005114161716915050806107da5760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b604482015260640161032e565b60008083601f8401126108f357600080fd5b50813567ffffffffffffffff81111561090b57600080fd5b60208301915083602082850101111561092357600080fd5b9250929050565b60008060006040848603121561093f57600080fd5b833567ffffffffffffffff81111561095657600080fd5b610962868287016108e1565b909790965060209590950135949350505050565b6001600160a01b038116811461098b57600080fd5b50565b6000602082840312156109a057600080fd5b81356109ab81610976565b9392505050565b60008083601f8401126109c457600080fd5b50813567ffffffffffffffff8111156109dc57600080fd5b6020830191508360208260051b850101111561092357600080fd5b60008060208385031215610a0a57600080fd5b823567ffffffffffffffff811115610a2157600080fd5b610a2d858286016109b2565b90969095509350505050565b60008060408385031215610a4c57600080fd5b8235610a5781610976565b946020939093013593505050565b600080600080600060608688031215610a7d57600080fd5b853567ffffffffffffffff80821115610a9557600080fd5b610aa189838a016108e1565b9097509550602088013594506040880135915080821115610ac157600080fd5b50610ace888289016109b2565b969995985093965092949392505050565b60008060208385031215610af257600080fd5b823567ffffffffffffffff80821115610b0a57600080fd5b818501915085601f830112610b1e57600080fd5b813581811115610b2d57600080fd5b8660208260061b8501011115610b4257600080fd5b60209290920196919550909350505050565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101839052600090604080840186845b87811015610be9578135610bb981610976565b6001600160a01b0390811684528286013590610bd482610976565b16838601529183019190830190600101610ba6565b5090979650505050505050565b818382376000910190815291905056fea26469706673582212209ca59ca3b1a45c0142169edc7d5c3e7051782a57f49a40db6fa82c782f3349f864736f6c63430008130033

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

000000000000000000000000be84d31b2ee049dcb1d8e7c798511632b44d1b55000000000000000000000000ec7be89e9d109e7e3fec59c222cf297125fefda2000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba30000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359

-----Decoded View---------------
Arg [0] : _owner (address): 0xbE84D31B2eE049DCb1d8E7c798511632b44d1b55
Arg [1] : _universalRouter (address): 0xec7BE89e9d109e7e3Fec59c222CF297125FEFda2
Arg [2] : _permit2 (address): 0x000000000022D473030F116dDEE9F6B43aC78BA3
Arg [3] : _feeToken (address): 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000be84d31b2ee049dcb1d8e7c798511632b44d1b55
Arg [1] : 000000000000000000000000ec7be89e9d109e7e3fec59c222cf297125fefda2
Arg [2] : 000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3
Arg [3] : 0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359


Block Transaction Gas Used Reward
view all blocks produced

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
POL27.26%$0.22529915,323.6848$3,452.41
POL26.97%$0.15827521,578.8188$3,415.4
POL6.53%$0.001216680,178.095$826.8
POL5.09%$0.2881612,238.8829$645.16
POL3.96%$0.999059501.8413$501.37
POL3.83%$3,622.690.134$485.56
POL2.18%$95,0560.00290776$276.4
POL1.58%$95,409.90.00209185$199.58
POL1.22%$0.00997915,530.8294$154.98
POL1.13%$1.7979.9619$143.13
POL1.04%$0.368992358.5656$132.31
POL0.87%$0.000228485,529.9593$110.68
POL0.79%$0.998325100.2171$100.05
POL0.62%$0.054661,440.6316$78.75
POL0.60%$0.99832575.6035$75.48
POL0.59%$1.0671.1828$75.17
POL0.53%$0.00485713,910.8769$67.57
POL0.48%$210.070.2891$60.73
POL0.47%$0.0020828,369.1339$59.01
POL0.46%$0.59970297.5185$58.48
POL0.39%$0.054556915.0173$49.92
POL0.34%$1.3930.6428$42.59
POL0.33%$1.1935.5245$42.27
POL0.26%$0.75746142.6503$32.31
POL0.25%$19.551.6288$31.84
POL0.24%$0.0038787,901.4199$30.64
POL0.23%$0.249803115.9478$28.96
POL0.21%$225.770.1163$26.26
POL0.20%$0.0113332,254.6526$25.55
POL0.19%$0.000031802,470.7776$24.69
POL0.19%$3.966.152$24.36
POL0.19%$1.5115.6951$23.7
POL0.18%$1.7213.1685$22.65
POL0.18%$1.0720.78$22.28
POL0.17%$0.73644528.7731$21.19
POL0.17%$0.09028234.575$21.18
POL0.16%$1.0220.2241$20.67
POL0.15%$0.63728630.5705$19.48
POL0.15%$0.0064712,947.2113$19.07
POL0.15%$118.9378$18.94
POL0.15%$1.1216.8718$18.9
POL0.15%$0.00065828,476.1044$18.72
POL0.15%$1.4213.1172$18.63
POL0.15%$0.44860641.1641$18.47
POL0.14%$0.0105131,723.8745$18.12
POL0.13%$0.051367327.5548$16.83
POL0.13%$0.0027465,968.3637$16.39
POL0.13%$0.052045313.0754$16.29
POL0.13%$0.017535911.9129$15.99
POL0.13%$0.0000111,484,144.4329$15.97
POL0.12%$0.23133968.2036$15.78
POL0.12%$0.0066452,352.7468$15.63
POL0.12%$0.000027574,490.1721$15.57
POL0.12%$0.0080141,936.2794$15.52
POL0.12%$0.0103311,497.6375$15.47
POL0.12%$1.0315.0514$15.44
POL0.12%$0.0050163,045.1217$15.27
POL0.12%$0.00003516,100.3471$15.26
POL0.12%$0.21328869.6699$14.86
POL0.12%$0.23245563.1105$14.67
POL0.11%$0.0021726,701.6592$14.55
POL0.11%$0.052676274.5161$14.46
POL0.11%$4,044.290.00354254$14.33
POL0.11%$0.0095041,495.8152$14.22
POL0.11%$0.0045633,093.9307$14.12
POL0.11%$0.22651161.3875$13.9
POL0.11%$0.013917991.6575$13.8
POL0.11%$0.17962676.1084$13.67
POL0.11%$0.23586157.6604$13.6
POL0.11%$0.090314149.355$13.49
POL0.11%$0.00632,132.0483$13.43
POL0.11%$0.026216511.0583$13.4
POL0.11%$0.21299562.7926$13.37
POL0.11%$0.0082951,603.7696$13.3
POL0.10%$0.17997872.5586$13.06
POL0.10%$0.00061420,321.0745$12.48
POL0.10%$0.0067511,832.0097$12.37
POL0.10%$0.00105311,738.7614$12.36
POL0.10%$0.000017734,566.8514$12.14
POL0.10%$0.0111561,086.1552$12.12
POL0.09%$0.0015157,905.5464$11.98
POL0.09%$0.97348212.2453$11.92
POL0.09%$6.611.7688$11.69
POL0.09%$4,325.860.00266556$11.53
POL0.09%$0.025757446.6177$11.5
POL0.09%$0.0073941,496.1484$11.06
POL0.08%$0.16785563.5726$10.67
POL0.08%$2,627.430.00405587$10.66
POL0.08%$0.0067131,572.47$10.56
POL0.08%$3.52.8662$10.03
POL0.08%$2.374.1857$9.92
POL0.08%$0.11422685.8156$9.8
POL0.08%$0.0010749,082.43$9.76
POL0.08%$26.610.3649$9.71
POL0.07%$0.76815712.3284$9.47
POL0.07%$0.21434344.181$9.47
POL0.07%$94,8230.00009878$9.37
POL0.07%$0.20030546.5123$9.32
POL0.07%$0.998019.0911$9.07
POL0.07%$1.914.7057$8.98
POL0.07%$0.1028185.8078$8.82
POL0.07%$0.0017165,052.5527$8.67
POL0.07%$1.187.0986$8.38
POL0.07%$0.019167434.0678$8.32
POL0.07%<$0.000001600,962,250.2418$8.23
POL0.06%$0.28715828.3981$8.15
POL0.06%$0.9943338.077$8.03
POL0.06%$0.014863528.5879$7.86
POL0.06%$0.14072154.0426$7.6
POL0.06%$0.28313226.8602$7.6
POL0.06%$22.440.3241$7.27
POL0.06%$0.62355711.5869$7.23
POL0.06%$0.000043164,496.3318$7.03
POL0.05%$0.048495141.5345$6.86
POL0.05%$77.310.0868$6.71
POL0.05%$0.6744129.8288$6.63
POL0.05%$0.00021630,379.2469$6.57
POL0.05%$47.70.1316$6.28
POL0.05%$2.922.0543$6
POL0.05%$1.823.2497$5.91
POL0.05%$0.037477157.5096$5.9
POL0.05%$0.0049291,187.571$5.85
POL0.04%$0.05725599.0536$5.67
POL0.04%<$0.00000125,356,982.7343$5.55
POL0.04%$0.026438209.8151$5.55
POL0.04%$0.009821537.6422$5.28
POL0.04%$0.0030661,709.4115$5.24
POL0.04%$0.05427192.0616$5
POL0.04%$2.472.0023$4.95
POL0.04%$0.0013363,527.3546$4.71
POL0.04%$0.0018952,358.7308$4.47
POL0.04%$1.33.4288$4.46
POL0.03%$0.041773105.6861$4.41
POL0.03%$1.054.1529$4.38
POL0.03%$0.024326176.9141$4.3
POL0.03%$0.013007330.5743$4.3
POL0.03%$0.0010224,046.6389$4.14
POL0.03%$0.13083130.7726$4.03
POL0.03%$0.05002180.4445$4.02
POL0.03%$0.032869121.0815$3.98
POL0.03%$0.02202175.7155$3.87
POL0.03%$0.0010293,719.1242$3.83
POL0.03%$8.380.4566$3.83
POL0.03%$0.0022971,614.7071$3.71
POL0.03%$1.143.1585$3.6
POL0.03%$1.183$3.54
POL0.03%$0.9908143.5381$3.51
POL0.03%$0.685484.8246$3.31
POL0.03%$0.6881854.7191$3.25
POL0.02%$0.05512654.9388$3.03
POL0.02%$0.00019613,957.5924$2.73
POL0.02%$0.0009932,742.3477$2.72
POL0.02%$0.0013831,943.4913$2.69
POL0.02%$0.24887210.7287$2.67
POL0.02%$3.710.6756$2.51
POL0.02%$0.12654719.7921$2.5
POL0.02%$0.0013291,869.0186$2.48
POL0.02%$0.03291675.1687$2.47
POL0.02%$0.007207340.9154$2.46
POL0.02%$255.530.00943208$2.41
POL0.02%$0.03513265.3328$2.3
POL0.02%$0.6870373.22$2.21
POL0.02%$0.0021071,017.2241$2.14
POL0.02%$0.0013371,502.4281$2.01
POL0.02%$0.004947399.3551$1.98
POL0.01%$0.008565221.257$1.9
POL0.01%$0.012629148.748$1.88
POL0.01%$0.0013211,338.3429$1.77
POL0.01%$0.4514353.8776$1.75
POL0.01%$0.012773135.6993$1.73
POL0.01%$0.3658254.6918$1.72
POL0.01%$0.01977286.067$1.7
POL0.01%$0.952331.7309$1.65
POL0.01%$12.880.1219$1.57
POL0.01%$100.1565$1.57
POL0.01%$0.00001980,714.0809$1.55
POL0.01%$0.011993127.035$1.52
POL0.01%$0.14073410.8074$1.52
POL0.01%$0.12436812.2139$1.52
POL0.01%$3.620.4033$1.46
POL0.01%$0.04035235.5857$1.44
POL0.01%$0.006518216.402$1.41
POL0.01%$0.00006221,290.6732$1.33
POL0.01%$0.9933021.3198$1.31
POL0.01%$1.141.1292$1.29
POL<0.01%$0.0003583,472.5019$1.24
POL<0.01%$0.02087658.6834$1.23
POL<0.01%$2.490.4862$1.21
POL<0.01%$0.04500625.8572$1.16
POL<0.01%$0.000001931,379.7789$1.12
POL<0.01%$0.001183936.7254$1.11
POL<0.01%$0.3937292.7513$1.08
POL<0.01%$0.0002015,184.0931$1.04
POL<0.01%$11.0063$1.01
POL<0.01%$0.01401670.6043$0.9895
POL<0.01%$0.02515439.3156$0.9889
POL<0.01%$0.008201120.3857$0.9872
POL<0.01%$0.9991930.9677$0.9668
POL<0.01%<$0.0000012,953,020.1278$0.9417
POL<0.01%$0.00003625,723.0813$0.9293
POL<0.01%$0.004646199.5433$0.9271
POL<0.01%$0.2044734.491$0.9182
POL<0.01%$42.040.0209$0.8788
POL<0.01%$0.7227961.1905$0.8605
POL<0.01%$0.0003652,296.6489$0.8378
POL<0.01%$0.6296651.3135$0.827
POL<0.01%$0.9562030.8503$0.813
POL<0.01%$0.0002383,406.0885$0.8117
POL<0.01%$0.07214511.0146$0.7946
POL<0.01%$0.0004661,629.8675$0.7597
POL<0.01%$0.0007281,005.7517$0.7321
POL<0.01%$0.1011726.9653$0.7046
POL<0.01%$0.00002527,535.1155$0.6932
POL<0.01%$0.00458150.8242$0.6908
POL<0.01%$0.2827432.4434$0.6908
POL<0.01%$0.001117582.4008$0.6503
POL<0.01%$0.01996532.5395$0.6496
POL<0.01%$6.30.0981$0.6177
POL<0.01%$0.003292181.6196$0.5979
POL<0.01%$3.030.1795$0.5438
POL<0.01%$0.004221125.8493$0.5312
POL<0.01%$8,059.320.00006455$0.5202
POL<0.01%$0.2247582.2962$0.516
POL<0.01%$0.0004681,084.2413$0.5077
POL<0.01%$0.00000597,854.6643$0.493
POL<0.01%$1.140.428$0.4879
POL<0.01%$0.001076450.9409$0.4853
POL<0.01%$0.944080.4946$0.4669
POL<0.01%$0.000629739.4292$0.465
POL<0.01%$0.0000686,740.1145$0.4581
POL<0.01%$0.00801654.9988$0.4408
POL<0.01%$0.5426790.8084$0.4387
POL<0.01%$0.03204713.349$0.4277
POL<0.01%$0.0580516.9903$0.4057
POL<0.01%$0.00924640.5719$0.3751
POL<0.01%<$0.0000016,844,896.8396$0.3545
POL<0.01%$0.2067651.5946$0.3297
POL<0.01%$0.890310.3484$0.3101
POL<0.01%$1.430.2121$0.3033
POL<0.01%$0.0438136.9171$0.303
POL<0.01%$0.002597113.9336$0.2958
POL<0.01%$0.00702640.7204$0.286
POL<0.01%$1.050.2644$0.2771
POL<0.01%$0.001012272.4296$0.2758
POL<0.01%$0.00156170.1218$0.2653
POL<0.01%$1.10.2346$0.258
POL<0.01%$0.1151522.0732$0.2387
POL<0.01%$0.000324723.0455$0.2345
POL<0.01%$124.730.00185596$0.2314
POL<0.01%$0.3088950.7296$0.2253
POL<0.01%$1.140.1692$0.1924
POL<0.01%$0.9921810.1913$0.1898
POL<0.01%$0.000876212.7057$0.1862
POL<0.01%$0.0198779.3368$0.1855
POL<0.01%$0.1862420.9939$0.1851
POL<0.01%$0.0036150.2264$0.1813
POL<0.01%$0.2971110.6099$0.1812
POL<0.01%$0.00944118.9069$0.1784
POL<0.01%$0.1508091.1637$0.1754
POL<0.01%$0.107411.6269$0.1747
POL<0.01%$0.00649126.7725$0.1737
POL<0.01%$0.1112671.5552$0.173
POL<0.01%$0.01406711.3884$0.1601
POL<0.01%$1.720.0877$0.1507
POL<0.01%$0.0589522.482$0.1463
POL<0.01%$0.0001071,290.6748$0.1386
POL<0.01%$0.000496278.7526$0.1383
POL<0.01%$0.0252915.2221$0.132
POL<0.01%$0.1030761.2701$0.1309
POL<0.01%$6.720.0192$0.1293
POL<0.01%$0.0000482,576.5627$0.1229
POL<0.01%$0.4665650.2409$0.1124
POL<0.01%$0.00259441.8106$0.1084
POL<0.01%$1.220.0889$0.1084
POL<0.01%$0.000135796.6126$0.1072
POL
Polygon (POL)
<0.01%$0.5950430.00396265$0.002358
[ 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.