// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.6.0) (proxy/ERC1967/ERC1967Proxy.sol)
pragma solidity ^0.8.22;
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "./ERC1967Utils.sol";
/**
* @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
* implementation address that can be changed. This address is stored in storage in the location specified by
* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the
* implementation behind the proxy.
*/
contract ERC1967Proxy is Proxy {
/**
* @dev The proxy is left uninitialized.
*/
error ERC1967ProxyUninitialized();
/**
* @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.
*
* Provided `_data` is passed in a delegate call to `implementation`. This will typically be an encoded function
* call, and allows initializing the storage of the proxy like a Solidity constructor. By default construction
* will fail if `_data` is empty. This behavior can be overridden using a custom {_unsafeAllowUninitialized} that
* returns true. In that case, empty `_data` is ignored and no delegate call to the implementation is performed
* during construction.
*
* Requirements:
*
* - If `data` is empty, `msg.value` must be zero.
*/
constructor(address implementation, bytes memory _data) payable {
if (!_unsafeAllowUninitialized() && _data.length == 0) {
revert ERC1967ProxyUninitialized();
}
ERC1967Utils.upgradeToAndCall(implementation, _data);
}
/**
* @dev Returns the current implementation address.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
*/
function _implementation() internal view virtual override returns (address) {
return ERC1967Utils.getImplementation();
}
/**
* @dev Returns whether the proxy can be left uninitialized.
*
* NOTE: Override this function to allow the proxy to be left uninitialized.
* Consider uninitialized proxies might be susceptible to man-in-the-middle threats
* where the proxy is replaced with a malicious one.
*/
function _unsafeAllowUninitialized() internal pure virtual returns (bool) {
return false;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
},
{
"name": "_data",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "ERC1967ProxyUninitialized",
"type": "error",
"inputs": []
},
{
"name": "FailedCall",
"type": "error",
"inputs": []
},
{
"name": "Upgraded",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "fallback",
"stateMutability": "payable"
}
][
{
"type": "constructor",
"inputs": [
{
"name": "positionManager_",
"type": "address",
"internalType": "address"
},
{
"name": "factory_",
"type": "address",
"internalType": "address"
},
{
"name": "swapRouter_",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "BadPlatformRecipient",
"type": "error",
"inputs": []
},
{
"name": "BadRecipient",
"type": "error",
"inputs": []
},
{
"name": "BadWeth",
"type": "error",
"inputs": []
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "FailedCall",
"type": "error",
"inputs": []
},
{
"name": "InvalidInitialization",
"type": "error",
"inputs": []
},
{
"name": "NotAdmin",
"type": "error",
"inputs": []
},
{
"name": "NotFactory",
"type": "error",
"inputs": []
},
{
"name": "NotInitializing",
"type": "error",
"inputs": []
},
{
"name": "NothingToWithdraw",
"type": "error",
"inputs": []
},
{
"name": "PositionAlreadyRecorded",
"type": "error",
"inputs": []
},
{
"name": "Reentrancy",
"type": "error",
"inputs": []
},
{
"name": "UUPSUnauthorizedCallContext",
"type": "error",
"inputs": []
},
{
"name": "UUPSUnsupportedProxiableUUID",
"type": "error",
"inputs": [
{
"name": "slot",
"type": "bytes32",
"internalType": "bytes32"
}
]
},
{
"name": "UnknownPosition",
"type": "error",
"inputs": []
},
{
"name": "ZeroAddress",
"type": "error",
"inputs": []
},
{
"name": "AdminCollected",
"type": "event",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "recipient",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount0",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "AdminLiquidityDecreased",
"type": "event",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "recipient",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "liquidity",
"type": "uint128",
"indexed": false,
"internalType": "uint128"
},
{
"name": "amount0",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "AdminSweptERC20",
"type": "event",
"inputs": [
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "AdminSweptETH",
"type": "event",
"inputs": [
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "EthAccrued",
"type": "event",
"inputs": [
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "newBalance",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "EthPaid",
"type": "event",
"inputs": [
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "EthWithdrawn",
"type": "event",
"inputs": [
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeeAccrued",
"type": "event",
"inputs": [
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "newBalance",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeePaid",
"type": "event",
"inputs": [
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeeWithdrawn",
"type": "event",
"inputs": [
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeesCollected",
"type": "event",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "creator",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "weth",
"type": "address",
"indexed": false,
"internalType": "address"
},
{
"name": "launchToken",
"type": "address",
"indexed": false,
"internalType": "address"
},
{
"name": "amountWeth",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amountToken",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Initialized",
"type": "event",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"name": "PositionRecorded",
"type": "event",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "creator",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "TokenSideSwapFailed",
"type": "event",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amountIn",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "reason",
"type": "bytes",
"indexed": false,
"internalType": "bytes"
}
],
"anonymous": false
},
{
"name": "TokenSideSwapped",
"type": "event",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "tokenIn",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amountIn",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "wethOut",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Upgraded",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "SWAP_FEE_TIER",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint24",
"internalType": "uint24"
}
],
"stateMutability": "view"
},
{
"name": "UPGRADE_INTERFACE_VERSION",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "WETH_CREATOR_SHARE_BPS",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "view"
},
{
"name": "admin",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "adminCollectTo",
"type": "function",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "amount0",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "adminDecreaseLiquidity",
"type": "function",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "liquidity",
"type": "uint128",
"internalType": "uint128"
},
{
"name": "amount0Min",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "amount1Min",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "amount0",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "adminSweepERC20",
"type": "function",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "to",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "adminSweepETH",
"type": "function",
"inputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "to",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "collect",
"type": "function",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "amountWeth",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "amountToken",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "creatorOf",
"type": "function",
"inputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "factory",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "onERC721Received",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "",
"type": "bytes4",
"internalType": "bytes4"
}
],
"stateMutability": "pure"
},
{
"name": "pendingEthOf",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "pendingOf",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "platformRecipient",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "positionManager",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract INpmFull"
}
],
"stateMutability": "view"
},
{
"name": "proxiableUUID",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "recordPosition",
"type": "function",
"inputs": [
{
"name": "tokenId",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "creator",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "swapRouter",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract ISwapRouter02"
}
],
"stateMutability": "view"
},
{
"name": "upgradeToAndCall",
"type": "function",
"inputs": [
{
"name": "newImplementation",
"type": "address",
"internalType": "address"
},
{
"name": "data",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "payable"
},
{
"name": "weth9",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "w",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "withdraw",
"type": "function",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "withdrawEth",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "withdrawEthFor",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "withdrawFor",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
},
{
"name": "token",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x6080604052610279803803806100148161016e565b9283398101604082820312610156578151916001600160a01b03831690818403610156576020810151906001600160401b038211610156570182601f82011215610156578051906001600160401b03821161015a5761007c601f8301601f191660200161016e565b938285526020838301011161015657815f9260208093018387015e8401015281511561014757823b15610135577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b5f80a280511561011e5761010e91610193565b505b604051605990816102208239f35b505034156101105763b398979f60e01b5f5260045ffd5b634c9c8ce360e01b5f5260045260245ffd5b6330a289cf60e21b5f5260045ffd5b5f80fd5b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b0381118382101761015a57604052565b905f8091602081519101845af4808061020c575b156101c75750506040513d81523d5f602083013e60203d82010160405290565b156101ec57639996b31560e01b5f9081526001600160a01b0391909116600452602490fd5b3d156101fd576040513d5f823e3d90fd5b63d6bda27560e01b5f5260045ffd5b503d1515806101a75750813b15156101a756fe60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc545f9081906001600160a01b0316368280378136915af43d5f803e156048573d5ff35b3d5ffdfea164736f6c634300081a000a0000000000000000000000005bb34546fc2b9689a87ea2a564ff36f9a9997940000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000048129fc1c00000000000000000000000000000000000000000000000000000000
0x60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc545f9081906001600160a01b0316368280378136915af43d5f803e156048573d5ff35b3d5ffdfea164736f6c634300081a000a
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| Uniswap V3 Positions NFT-V1 (UNI-V3-POS) | UNI-V3-POS | 2 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x1bc852…b6afd3 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0xc4e5d7…9efb | [0] 0x000000000000…b8c45eca data: 0x000000000000000000…acb85a19 |
| 0x1bc852…b6afd3 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0xc4e5d7…9efb | [0] 0x000000000000…148bddd4 data: 0x000000000000000000…acb85a19 |
| 0x1bc852…b6afd3 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x572a9e…9571 | [0] 0x000000000000…000a5bdf [1] 0x000000000000…ab45d629 data: 0x000000000000000000…b3702e12 |
| 0x1bc852…b6afd3 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x4a81af…d105 | [0] 0x000000000000…000a5bdf [1] 0x000000000000…148bddd4 data: 0x000000000000000000…e80a06f8 |
| 0xd9af8e…7ebcd7 | 4 days agoThu, 13 Aug 2026 12:43:37 UTC | 0x42d244…f49d | [0] 0x000000000000…000a5bdf [1] 0x000000000000…148bddd4 |
| 0xd4532c…6ca4df | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0xc4e5d7…9efb | [0] 0x000000000000…b8c45eca data: 0x000000000000000000…437af38a |
| 0xd4532c…6ca4df | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0xc4e5d7…9efb | [0] 0x000000000000…148bddd4 data: 0x000000000000000000…437af38a |
| 0xd4532c…6ca4df | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0x572a9e…9571 | [0] 0x000000000000…000a31f7 [1] 0x000000000000…ef005743 data: 0x000000000000000000…2a24068b |
| 0xd4532c…6ca4df | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0x4a81af…d105 | [0] 0x000000000000…000a31f7 [1] 0x000000000000…148bddd4 data: 0x000000000000000000…96e55235 |
| 0x7b41ba…958692 | 5 days agoWed, 12 Aug 2026 13:58:10 UTC | 0x42d244…f49d | [0] 0x000000000000…000a31f7 [1] 0x000000000000…148bddd4 |
| 0x344c0a…6a34b0 | 5 days agoWed, 12 Aug 2026 10:05:14 UTC | 0xc7f505…81d2 | data: 0x000000000000000000…00000001 |
| 0x344c0a…6a34b0 | 5 days agoWed, 12 Aug 2026 10:05:14 UTC | 0xbc7cd7…2d3b | [0] 0x000000000000…a9997940 |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xd9af8e20…7ebcd7 | Transfer | 35,399,522 | 4 days agoThu, 13 Aug 2026 12:43:37 UTC | 0x0000…0000 | IN | 0x7927…ed7f | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #678879 | |
| 0x7b41bae8…958692 | Transfer | 34,582,281 | 5 days agoWed, 12 Aug 2026 13:58:10 UTC | 0x0000…0000 | IN | 0x7927…ed7f | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #668151 |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x1bc852…b6afd3 | collect | 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0xca18…77d9 | IN | PopiFastLpFeeVaultUpgradeable | $0.000 ETH | 0.00001577 | |
| 0xd4532c…6ca4df | collect | 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0xca18…77d9 | IN | PopiFastLpFeeVaultUpgradeable | $0.000 ETH | 0.00001799 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x1bc8521d…b6afd3 | Transfer | 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x7927…ed7f | OUT | 0x0000…0000 | 0.016278 WETH | WETH (WETH) | |
| 0x1bc8521d…b6afd3 | Transfer | 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x7927…ed7f | OUT | 0xa1cf…dea4 | 3,364,596.508983 SOYESE | soyese (SOYESE) | |
| 0x1bc8521d…b6afd3 | Transfer | 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0xa1cf…dea4 | IN | 0x7927…ed7f | 0.006625 WETH | WETH (WETH) | |
| 0x1bc8521d…b6afd3 | Transfer | 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0xa1cf…dea4 | IN | 0x7927…ed7f | 3,364,596.508983 SOYESE | soyese (SOYESE) | |
| 0x1bc8521d…b6afd3 | Transfer | 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0xa1cf…dea4 | IN | 0x7927…ed7f | 0.009653 WETH | WETH (WETH) | |
| 0xd4532c69…6ca4df | Transfer | 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0x7927…ed7f | OUT | 0x0000…0000 | 0.084652 WETH | WETH (WETH) | |
| 0xd4532c69…6ca4df | Transfer | 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0x7927…ed7f | OUT | 0x48a1…8e76 | 12,509,295.375205 SIMPO | simpo (SIMPO) | |
| 0xd4532c69…6ca4df | Transfer | 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0x48a1…8e76 | IN | 0x7927…ed7f | 0.024988 WETH | WETH (WETH) | |
| 0xd4532c69…6ca4df | Transfer | 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0x48a1…8e76 | IN | 0x7927…ed7f | 12,509,295.375205 SIMPO | simpo (SIMPO) | |
| 0xd4532c69…6ca4df | Transfer | 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0x48a1…8e76 | IN | 0x7927…ed7f | 0.059663 WETH | WETH (WETH) |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x1bc852…b6afd3 | CALL | collect | 0x7927…ed7f | OUT | 0xc032…5eca | 0.00813 ETH |
| 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x1bc852…b6afd3 | CALL | collect | 0x7927…ed7f | OUT | 0x02dd…ddd4 | 0.00813 ETH |
| 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x1bc852…b6afd3 | DELEGATECALL | collect | 0x7927…ed7f | OUT | 0x5bb3…7940 | 0.01627 ETH |
| 35,411,164 | 4 days agoThu, 13 Aug 2026 13:03:04 UTC | 0x1bc852…b6afd3 | CALL | collect | 0x0bd7…ad73 | IN | 0x7927…ed7f | 0.01627 ETH |
| 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0xd4532c…6ca4df | CALL | collect | 0x7927…ed7f | OUT | 0xc032…5eca | 0.04232 ETH |
| 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0xd4532c…6ca4df | CALL | collect | 0x7927…ed7f | OUT | 0x02dd…ddd4 | 0.04232 ETH |
| 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0xd4532c…6ca4df | DELEGATECALL | collect | 0x7927…ed7f | OUT | 0x5bb3…7940 | 0.08465 ETH |
| 34,622,975 | 5 days agoWed, 12 Aug 2026 15:06:07 UTC | 0xd4532c…6ca4df | CALL | collect | 0x0bd7…ad73 | IN | 0x7927…ed7f | 0.08465 ETH |