More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,841 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap Balance | 64984264 | 1 hr ago | IN | 0 POL | 0.02565252 | ||||
Swap Balance | 64983963 | 1 hr ago | IN | 0 POL | 0.02441947 | ||||
Swap Balance | 64979322 | 4 hrs ago | IN | 0 POL | 0.15256689 | ||||
Swap Balance | 64977153 | 5 hrs ago | IN | 0 POL | 0.02946028 | ||||
Swap Balance | 64974708 | 7 hrs ago | IN | 0 POL | 0.03617488 | ||||
Swap Balance | 64972533 | 8 hrs ago | IN | 0 POL | 0.5074659 | ||||
Swap Balance | 64971170 | 9 hrs ago | IN | 0 POL | 0.02337105 | ||||
Swap Balance | 64970609 | 9 hrs ago | IN | 0 POL | 0.02322495 | ||||
Swap Balance | 64970063 | 9 hrs ago | IN | 0 POL | 0.0337629 | ||||
Swap Balance | 64969787 | 10 hrs ago | IN | 0 POL | 0.03351735 | ||||
Swap Balance | 64964503 | 13 hrs ago | IN | 0 POL | 0.0233909 | ||||
Swap Balance | 64963353 | 13 hrs ago | IN | 0 POL | 0.02335972 | ||||
Swap Balance | 64960035 | 15 hrs ago | IN | 0 POL | 0.03254334 | ||||
Swap Balance | 64958401 | 16 hrs ago | IN | 0 POL | 0.03016523 | ||||
Swap Balance | 64952664 | 20 hrs ago | IN | 0 POL | 0.25455656 | ||||
Swap Balance | 64948744 | 22 hrs ago | IN | 0 POL | 0.02373278 | ||||
Swap Balance | 64948189 | 23 hrs ago | IN | 0 POL | 0.06133402 | ||||
Swap Balance | 64941789 | 26 hrs ago | IN | 0 POL | 0.02323414 | ||||
Swap Balance | 64939601 | 28 hrs ago | IN | 0 POL | 0.02355582 | ||||
Swap Balance | 64937072 | 29 hrs ago | IN | 0 POL | 0.03287167 | ||||
Swap Balance | 64932625 | 32 hrs ago | IN | 0 POL | 0.31948155 | ||||
Swap Balance | 64932081 | 32 hrs ago | IN | 0 POL | 0.0278475 | ||||
Swap Balance | 64931795 | 32 hrs ago | IN | 0 POL | 0.02322 | ||||
Swap Balance | 64930680 | 33 hrs ago | IN | 0 POL | 0.0314514 | ||||
Swap Balance | 64930413 | 33 hrs ago | IN | 0 POL | 0.10284975 |
Loading...
Loading
Contract Name:
FeeCollector
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// 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 {} }
// 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); } }
// 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); } }
// 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"); } }
// 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; }
// 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. }
// 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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IEIP712 { function DOMAIN_SEPARATOR() external view returns (bytes32); }
{ "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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Contract Creation Code
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
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 27.26% | $0.225299 | 15,323.6848 | $3,452.41 | |
POL | 26.97% | $0.158275 | 21,578.8188 | $3,415.4 | |
POL | 6.53% | $0.001216 | 680,178.095 | $826.8 | |
POL | 5.09% | $0.288161 | 2,238.8829 | $645.16 | |
POL | 3.96% | $0.999059 | 501.8413 | $501.37 | |
POL | 3.83% | $3,622.69 | 0.134 | $485.56 | |
POL | 2.18% | $95,056 | 0.00290776 | $276.4 | |
POL | 1.58% | $95,409.9 | 0.00209185 | $199.58 | |
POL | 1.22% | $0.009979 | 15,530.8294 | $154.98 | |
POL | 1.13% | $1.79 | 79.9619 | $143.13 | |
POL | 1.04% | $0.368992 | 358.5656 | $132.31 | |
POL | 0.87% | $0.000228 | 485,529.9593 | $110.68 | |
POL | 0.79% | $0.998325 | 100.2171 | $100.05 | |
POL | 0.62% | $0.05466 | 1,440.6316 | $78.75 | |
POL | 0.60% | $0.998325 | 75.6035 | $75.48 | |
POL | 0.59% | $1.06 | 71.1828 | $75.17 | |
POL | 0.53% | $0.004857 | 13,910.8769 | $67.57 | |
POL | 0.48% | $210.07 | 0.2891 | $60.73 | |
POL | 0.47% | $0.00208 | 28,369.1339 | $59.01 | |
POL | 0.46% | $0.599702 | 97.5185 | $58.48 | |
POL | 0.39% | $0.054556 | 915.0173 | $49.92 | |
POL | 0.34% | $1.39 | 30.6428 | $42.59 | |
POL | 0.33% | $1.19 | 35.5245 | $42.27 | |
POL | 0.26% | $0.757461 | 42.6503 | $32.31 | |
POL | 0.25% | $19.55 | 1.6288 | $31.84 | |
POL | 0.24% | $0.003878 | 7,901.4199 | $30.64 | |
POL | 0.23% | $0.249803 | 115.9478 | $28.96 | |
POL | 0.21% | $225.77 | 0.1163 | $26.26 | |
POL | 0.20% | $0.011333 | 2,254.6526 | $25.55 | |
POL | 0.19% | $0.000031 | 802,470.7776 | $24.69 | |
POL | 0.19% | $3.96 | 6.152 | $24.36 | |
POL | 0.19% | $1.51 | 15.6951 | $23.7 | |
POL | 0.18% | $1.72 | 13.1685 | $22.65 | |
POL | 0.18% | $1.07 | 20.78 | $22.28 | |
POL | 0.17% | $0.736445 | 28.7731 | $21.19 | |
POL | 0.17% | $0.09028 | 234.575 | $21.18 | |
POL | 0.16% | $1.02 | 20.2241 | $20.67 | |
POL | 0.15% | $0.637286 | 30.5705 | $19.48 | |
POL | 0.15% | $0.006471 | 2,947.2113 | $19.07 | |
POL | 0.15% | $1 | 18.9378 | $18.94 | |
POL | 0.15% | $1.12 | 16.8718 | $18.9 | |
POL | 0.15% | $0.000658 | 28,476.1044 | $18.72 | |
POL | 0.15% | $1.42 | 13.1172 | $18.63 | |
POL | 0.15% | $0.448606 | 41.1641 | $18.47 | |
POL | 0.14% | $0.010513 | 1,723.8745 | $18.12 | |
POL | 0.13% | $0.051367 | 327.5548 | $16.83 | |
POL | 0.13% | $0.002746 | 5,968.3637 | $16.39 | |
POL | 0.13% | $0.052045 | 313.0754 | $16.29 | |
POL | 0.13% | $0.017535 | 911.9129 | $15.99 | |
POL | 0.13% | $0.000011 | 1,484,144.4329 | $15.97 | |
POL | 0.12% | $0.231339 | 68.2036 | $15.78 | |
POL | 0.12% | $0.006645 | 2,352.7468 | $15.63 | |
POL | 0.12% | $0.000027 | 574,490.1721 | $15.57 | |
POL | 0.12% | $0.008014 | 1,936.2794 | $15.52 | |
POL | 0.12% | $0.010331 | 1,497.6375 | $15.47 | |
POL | 0.12% | $1.03 | 15.0514 | $15.44 | |
POL | 0.12% | $0.005016 | 3,045.1217 | $15.27 | |
POL | 0.12% | $0.00003 | 516,100.3471 | $15.26 | |
POL | 0.12% | $0.213288 | 69.6699 | $14.86 | |
POL | 0.12% | $0.232455 | 63.1105 | $14.67 | |
POL | 0.11% | $0.002172 | 6,701.6592 | $14.55 | |
POL | 0.11% | $0.052676 | 274.5161 | $14.46 | |
POL | 0.11% | $4,044.29 | 0.00354254 | $14.33 | |
POL | 0.11% | $0.009504 | 1,495.8152 | $14.22 | |
POL | 0.11% | $0.004563 | 3,093.9307 | $14.12 | |
POL | 0.11% | $0.226511 | 61.3875 | $13.9 | |
POL | 0.11% | $0.013917 | 991.6575 | $13.8 | |
POL | 0.11% | $0.179626 | 76.1084 | $13.67 | |
POL | 0.11% | $0.235861 | 57.6604 | $13.6 | |
POL | 0.11% | $0.090314 | 149.355 | $13.49 | |
POL | 0.11% | $0.0063 | 2,132.0483 | $13.43 | |
POL | 0.11% | $0.026216 | 511.0583 | $13.4 | |
POL | 0.11% | $0.212995 | 62.7926 | $13.37 | |
POL | 0.11% | $0.008295 | 1,603.7696 | $13.3 | |
POL | 0.10% | $0.179978 | 72.5586 | $13.06 | |
POL | 0.10% | $0.000614 | 20,321.0745 | $12.48 | |
POL | 0.10% | $0.006751 | 1,832.0097 | $12.37 | |
POL | 0.10% | $0.001053 | 11,738.7614 | $12.36 | |
POL | 0.10% | $0.000017 | 734,566.8514 | $12.14 | |
POL | 0.10% | $0.011156 | 1,086.1552 | $12.12 | |
POL | 0.09% | $0.001515 | 7,905.5464 | $11.98 | |
POL | 0.09% | $0.973482 | 12.2453 | $11.92 | |
POL | 0.09% | $6.61 | 1.7688 | $11.69 | |
POL | 0.09% | $4,325.86 | 0.00266556 | $11.53 | |
POL | 0.09% | $0.025757 | 446.6177 | $11.5 | |
POL | 0.09% | $0.007394 | 1,496.1484 | $11.06 | |
POL | 0.08% | $0.167855 | 63.5726 | $10.67 | |
POL | 0.08% | $2,627.43 | 0.00405587 | $10.66 | |
POL | 0.08% | $0.006713 | 1,572.47 | $10.56 | |
POL | 0.08% | $3.5 | 2.8662 | $10.03 | |
POL | 0.08% | $2.37 | 4.1857 | $9.92 | |
POL | 0.08% | $0.114226 | 85.8156 | $9.8 | |
POL | 0.08% | $0.001074 | 9,082.43 | $9.76 | |
POL | 0.08% | $26.61 | 0.3649 | $9.71 | |
POL | 0.07% | $0.768157 | 12.3284 | $9.47 | |
POL | 0.07% | $0.214343 | 44.181 | $9.47 | |
POL | 0.07% | $94,823 | 0.00009878 | $9.37 | |
POL | 0.07% | $0.200305 | 46.5123 | $9.32 | |
POL | 0.07% | $0.99801 | 9.0911 | $9.07 | |
POL | 0.07% | $1.91 | 4.7057 | $8.98 | |
POL | 0.07% | $0.10281 | 85.8078 | $8.82 | |
POL | 0.07% | $0.001716 | 5,052.5527 | $8.67 | |
POL | 0.07% | $1.18 | 7.0986 | $8.38 | |
POL | 0.07% | $0.019167 | 434.0678 | $8.32 | |
POL | 0.07% | <$0.000001 | 600,962,250.2418 | $8.23 | |
POL | 0.06% | $0.287158 | 28.3981 | $8.15 | |
POL | 0.06% | $0.994333 | 8.077 | $8.03 | |
POL | 0.06% | $0.014863 | 528.5879 | $7.86 | |
POL | 0.06% | $0.140721 | 54.0426 | $7.6 | |
POL | 0.06% | $0.283132 | 26.8602 | $7.6 | |
POL | 0.06% | $22.44 | 0.3241 | $7.27 | |
POL | 0.06% | $0.623557 | 11.5869 | $7.23 | |
POL | 0.06% | $0.000043 | 164,496.3318 | $7.03 | |
POL | 0.05% | $0.048495 | 141.5345 | $6.86 | |
POL | 0.05% | $77.31 | 0.0868 | $6.71 | |
POL | 0.05% | $0.674412 | 9.8288 | $6.63 | |
POL | 0.05% | $0.000216 | 30,379.2469 | $6.57 | |
POL | 0.05% | $47.7 | 0.1316 | $6.28 | |
POL | 0.05% | $2.92 | 2.0543 | $6 | |
POL | 0.05% | $1.82 | 3.2497 | $5.91 | |
POL | 0.05% | $0.037477 | 157.5096 | $5.9 | |
POL | 0.05% | $0.004929 | 1,187.571 | $5.85 | |
POL | 0.04% | $0.057255 | 99.0536 | $5.67 | |
POL | 0.04% | <$0.000001 | 25,356,982.7343 | $5.55 | |
POL | 0.04% | $0.026438 | 209.8151 | $5.55 | |
POL | 0.04% | $0.009821 | 537.6422 | $5.28 | |
POL | 0.04% | $0.003066 | 1,709.4115 | $5.24 | |
POL | 0.04% | $0.054271 | 92.0616 | $5 | |
POL | 0.04% | $2.47 | 2.0023 | $4.95 | |
POL | 0.04% | $0.001336 | 3,527.3546 | $4.71 | |
POL | 0.04% | $0.001895 | 2,358.7308 | $4.47 | |
POL | 0.04% | $1.3 | 3.4288 | $4.46 | |
POL | 0.03% | $0.041773 | 105.6861 | $4.41 | |
POL | 0.03% | $1.05 | 4.1529 | $4.38 | |
POL | 0.03% | $0.024326 | 176.9141 | $4.3 | |
POL | 0.03% | $0.013007 | 330.5743 | $4.3 | |
POL | 0.03% | $0.001022 | 4,046.6389 | $4.14 | |
POL | 0.03% | $0.130831 | 30.7726 | $4.03 | |
POL | 0.03% | $0.050021 | 80.4445 | $4.02 | |
POL | 0.03% | $0.032869 | 121.0815 | $3.98 | |
POL | 0.03% | $0.02202 | 175.7155 | $3.87 | |
POL | 0.03% | $0.001029 | 3,719.1242 | $3.83 | |
POL | 0.03% | $8.38 | 0.4566 | $3.83 | |
POL | 0.03% | $0.002297 | 1,614.7071 | $3.71 | |
POL | 0.03% | $1.14 | 3.1585 | $3.6 | |
POL | 0.03% | $1.18 | 3 | $3.54 | |
POL | 0.03% | $0.990814 | 3.5381 | $3.51 | |
POL | 0.03% | $0.68548 | 4.8246 | $3.31 | |
POL | 0.03% | $0.688185 | 4.7191 | $3.25 | |
POL | 0.02% | $0.055126 | 54.9388 | $3.03 | |
POL | 0.02% | $0.000196 | 13,957.5924 | $2.73 | |
POL | 0.02% | $0.000993 | 2,742.3477 | $2.72 | |
POL | 0.02% | $0.001383 | 1,943.4913 | $2.69 | |
POL | 0.02% | $0.248872 | 10.7287 | $2.67 | |
POL | 0.02% | $3.71 | 0.6756 | $2.51 | |
POL | 0.02% | $0.126547 | 19.7921 | $2.5 | |
POL | 0.02% | $0.001329 | 1,869.0186 | $2.48 | |
POL | 0.02% | $0.032916 | 75.1687 | $2.47 | |
POL | 0.02% | $0.007207 | 340.9154 | $2.46 | |
POL | 0.02% | $255.53 | 0.00943208 | $2.41 | |
POL | 0.02% | $0.035132 | 65.3328 | $2.3 | |
POL | 0.02% | $0.687037 | 3.22 | $2.21 | |
POL | 0.02% | $0.002107 | 1,017.2241 | $2.14 | |
POL | 0.02% | $0.001337 | 1,502.4281 | $2.01 | |
POL | 0.02% | $0.004947 | 399.3551 | $1.98 | |
POL | 0.01% | $0.008565 | 221.257 | $1.9 | |
POL | 0.01% | $0.012629 | 148.748 | $1.88 | |
POL | 0.01% | $0.001321 | 1,338.3429 | $1.77 | |
POL | 0.01% | $0.451435 | 3.8776 | $1.75 | |
POL | 0.01% | $0.012773 | 135.6993 | $1.73 | |
POL | 0.01% | $0.365825 | 4.6918 | $1.72 | |
POL | 0.01% | $0.019772 | 86.067 | $1.7 | |
POL | 0.01% | $0.95233 | 1.7309 | $1.65 | |
POL | 0.01% | $12.88 | 0.1219 | $1.57 | |
POL | 0.01% | $10 | 0.1565 | $1.57 | |
POL | 0.01% | $0.000019 | 80,714.0809 | $1.55 | |
POL | 0.01% | $0.011993 | 127.035 | $1.52 | |
POL | 0.01% | $0.140734 | 10.8074 | $1.52 | |
POL | 0.01% | $0.124368 | 12.2139 | $1.52 | |
POL | 0.01% | $3.62 | 0.4033 | $1.46 | |
POL | 0.01% | $0.040352 | 35.5857 | $1.44 | |
POL | 0.01% | $0.006518 | 216.402 | $1.41 | |
POL | 0.01% | $0.000062 | 21,290.6732 | $1.33 | |
POL | 0.01% | $0.993302 | 1.3198 | $1.31 | |
POL | 0.01% | $1.14 | 1.1292 | $1.29 | |
POL | <0.01% | $0.000358 | 3,472.5019 | $1.24 | |
POL | <0.01% | $0.020876 | 58.6834 | $1.23 | |
POL | <0.01% | $2.49 | 0.4862 | $1.21 | |
POL | <0.01% | $0.045006 | 25.8572 | $1.16 | |
POL | <0.01% | $0.000001 | 931,379.7789 | $1.12 | |
POL | <0.01% | $0.001183 | 936.7254 | $1.11 | |
POL | <0.01% | $0.393729 | 2.7513 | $1.08 | |
POL | <0.01% | $0.000201 | 5,184.0931 | $1.04 | |
POL | <0.01% | $1 | 1.0063 | $1.01 | |
POL | <0.01% | $0.014016 | 70.6043 | $0.9895 | |
POL | <0.01% | $0.025154 | 39.3156 | $0.9889 | |
POL | <0.01% | $0.008201 | 120.3857 | $0.9872 | |
POL | <0.01% | $0.999193 | 0.9677 | $0.9668 | |
POL | <0.01% | <$0.000001 | 2,953,020.1278 | $0.9417 | |
POL | <0.01% | $0.000036 | 25,723.0813 | $0.9293 | |
POL | <0.01% | $0.004646 | 199.5433 | $0.9271 | |
POL | <0.01% | $0.204473 | 4.491 | $0.9182 | |
POL | <0.01% | $42.04 | 0.0209 | $0.8788 | |
POL | <0.01% | $0.722796 | 1.1905 | $0.8605 | |
POL | <0.01% | $0.000365 | 2,296.6489 | $0.8378 | |
POL | <0.01% | $0.629665 | 1.3135 | $0.827 | |
POL | <0.01% | $0.956203 | 0.8503 | $0.813 | |
POL | <0.01% | $0.000238 | 3,406.0885 | $0.8117 | |
POL | <0.01% | $0.072145 | 11.0146 | $0.7946 | |
POL | <0.01% | $0.000466 | 1,629.8675 | $0.7597 | |
POL | <0.01% | $0.000728 | 1,005.7517 | $0.7321 | |
POL | <0.01% | $0.101172 | 6.9653 | $0.7046 | |
POL | <0.01% | $0.000025 | 27,535.1155 | $0.6932 | |
POL | <0.01% | $0.00458 | 150.8242 | $0.6908 | |
POL | <0.01% | $0.282743 | 2.4434 | $0.6908 | |
POL | <0.01% | $0.001117 | 582.4008 | $0.6503 | |
POL | <0.01% | $0.019965 | 32.5395 | $0.6496 | |
POL | <0.01% | $6.3 | 0.0981 | $0.6177 | |
POL | <0.01% | $0.003292 | 181.6196 | $0.5979 | |
POL | <0.01% | $3.03 | 0.1795 | $0.5438 | |
POL | <0.01% | $0.004221 | 125.8493 | $0.5312 | |
POL | <0.01% | $8,059.32 | 0.00006455 | $0.5202 | |
POL | <0.01% | $0.224758 | 2.2962 | $0.516 | |
POL | <0.01% | $0.000468 | 1,084.2413 | $0.5077 | |
POL | <0.01% | $0.000005 | 97,854.6643 | $0.493 | |
POL | <0.01% | $1.14 | 0.428 | $0.4879 | |
POL | <0.01% | $0.001076 | 450.9409 | $0.4853 | |
POL | <0.01% | $0.94408 | 0.4946 | $0.4669 | |
POL | <0.01% | $0.000629 | 739.4292 | $0.465 | |
POL | <0.01% | $0.000068 | 6,740.1145 | $0.4581 | |
POL | <0.01% | $0.008016 | 54.9988 | $0.4408 | |
POL | <0.01% | $0.542679 | 0.8084 | $0.4387 | |
POL | <0.01% | $0.032047 | 13.349 | $0.4277 | |
POL | <0.01% | $0.058051 | 6.9903 | $0.4057 | |
POL | <0.01% | $0.009246 | 40.5719 | $0.3751 | |
POL | <0.01% | <$0.000001 | 6,844,896.8396 | $0.3545 | |
POL | <0.01% | $0.206765 | 1.5946 | $0.3297 | |
POL | <0.01% | $0.89031 | 0.3484 | $0.3101 | |
POL | <0.01% | $1.43 | 0.2121 | $0.3033 | |
POL | <0.01% | $0.043813 | 6.9171 | $0.303 | |
POL | <0.01% | $0.002597 | 113.9336 | $0.2958 | |
POL | <0.01% | $0.007026 | 40.7204 | $0.286 | |
POL | <0.01% | $1.05 | 0.2644 | $0.2771 | |
POL | <0.01% | $0.001012 | 272.4296 | $0.2758 | |
POL | <0.01% | $0.00156 | 170.1218 | $0.2653 | |
POL | <0.01% | $1.1 | 0.2346 | $0.258 | |
POL | <0.01% | $0.115152 | 2.0732 | $0.2387 | |
POL | <0.01% | $0.000324 | 723.0455 | $0.2345 | |
POL | <0.01% | $124.73 | 0.00185596 | $0.2314 | |
POL | <0.01% | $0.308895 | 0.7296 | $0.2253 | |
POL | <0.01% | $1.14 | 0.1692 | $0.1924 | |
POL | <0.01% | $0.992181 | 0.1913 | $0.1898 | |
POL | <0.01% | $0.000876 | 212.7057 | $0.1862 | |
POL | <0.01% | $0.019877 | 9.3368 | $0.1855 | |
POL | <0.01% | $0.186242 | 0.9939 | $0.1851 | |
POL | <0.01% | $0.00361 | 50.2264 | $0.1813 | |
POL | <0.01% | $0.297111 | 0.6099 | $0.1812 | |
POL | <0.01% | $0.009441 | 18.9069 | $0.1784 | |
POL | <0.01% | $0.150809 | 1.1637 | $0.1754 | |
POL | <0.01% | $0.10741 | 1.6269 | $0.1747 | |
POL | <0.01% | $0.006491 | 26.7725 | $0.1737 | |
POL | <0.01% | $0.111267 | 1.5552 | $0.173 | |
POL | <0.01% | $0.014067 | 11.3884 | $0.1601 | |
POL | <0.01% | $1.72 | 0.0877 | $0.1507 | |
POL | <0.01% | $0.058952 | 2.482 | $0.1463 | |
POL | <0.01% | $0.000107 | 1,290.6748 | $0.1386 | |
POL | <0.01% | $0.000496 | 278.7526 | $0.1383 | |
POL | <0.01% | $0.025291 | 5.2221 | $0.132 | |
POL | <0.01% | $0.103076 | 1.2701 | $0.1309 | |
POL | <0.01% | $6.72 | 0.0192 | $0.1293 | |
POL | <0.01% | $0.000048 | 2,576.5627 | $0.1229 | |
POL | <0.01% | $0.466565 | 0.2409 | $0.1124 | |
POL | <0.01% | $0.002594 | 41.8106 | $0.1084 | |
POL | <0.01% | $1.22 | 0.0889 | $0.1084 | |
POL | <0.01% | $0.000135 | 796.6126 | $0.1072 | |
POL | Polygon (POL) | <0.01% | $0.595043 | 0.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.