// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (proxy/beacon/BeaconProxy.sol)
pragma solidity ^0.8.22;
import {IBeacon} from "./IBeacon.sol";
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";
/**
* @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.
*
* The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an
* immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by
* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] so that it can be accessed externally.
*
* CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust
* the beacon to not upgrade the implementation maliciously.
*
* IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in
* an inconsistent state where the beacon storage slot does not match the beacon address.
*/
contract BeaconProxy is Proxy {
// An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.
address private immutable _beacon;
/**
* @dev Initializes the proxy with `beacon`.
*
* If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This
* will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity
* constructor.
*
* Requirements:
*
* - `beacon` must be a contract with the interface {IBeacon}.
* - If `data` is empty, `msg.value` must be zero.
*/
constructor(address beacon, bytes memory data) payable {
ERC1967Utils.upgradeBeaconToAndCall(beacon, data);
_beacon = beacon;
}
/**
* @dev Returns the current implementation address of the associated beacon.
*/
function _implementation() internal view virtual override returns (address) {
return IBeacon(_getBeacon()).implementation();
}
/**
* @dev Returns the beacon.
*/
function _getBeacon() internal view virtual returns (address) {
return _beacon;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "beacon",
"type": "address",
"internalType": "address"
},
{
"name": "data",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidBeacon",
"type": "error",
"inputs": [
{
"name": "beacon",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "FailedCall",
"type": "error",
"inputs": []
},
{
"name": "BeaconUpgraded",
"type": "event",
"inputs": [
{
"name": "beacon",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "fallback",
"stateMutability": "payable"
}
][
{
"type": "constructor",
"inputs": [
{
"name": "poolManager",
"type": "address",
"internalType": "address"
},
{
"name": "positionManager",
"type": "address",
"internalType": "address"
},
{
"name": "weth",
"type": "address",
"internalType": "address"
},
{
"name": "vault_",
"type": "address",
"internalType": "address"
},
{
"name": "permit2",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "AccessControlBadConfirmation",
"type": "error",
"inputs": []
},
{
"name": "AccessControlUnauthorizedAccount",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
},
{
"name": "neededRole",
"type": "bytes32",
"internalType": "bytes32"
}
]
},
{
"name": "BagsBondingCurve_AlreadyInitialized",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_AlreadyMigrated",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_EconomicsPriceDiscontinuity",
"type": "error",
"inputs": [
{
"name": "lpSide",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "curveSide",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_EconomicsSoldMismatch",
"type": "error",
"inputs": [
{
"name": "soldAtThreshold",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "expected",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_InsufficientQuoteForLP",
"type": "error",
"inputs": [
{
"name": "have",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "need",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_InsufficientTokenForLP",
"type": "error",
"inputs": [
{
"name": "have",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "need",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_InvalidAmounts",
"type": "error",
"inputs": [
{
"name": "amount0",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_InvalidPartnerFeeBps",
"type": "error",
"inputs": [
{
"name": "partnerFeeBps",
"type": "uint16",
"internalType": "uint16"
}
]
},
{
"name": "BagsBondingCurve_InvalidRecipient",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_NativeTransferFailed",
"type": "error",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_NoQuoteSent",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_NotAdmin",
"type": "error",
"inputs": [
{
"name": "caller",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "BagsBondingCurve_NotInitialized",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_RefundTransferFailed",
"type": "error",
"inputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_SlippageExceeded",
"type": "error",
"inputs": [
{
"name": "minExpected",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "actualOut",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_ThresholdNotReached",
"type": "error",
"inputs": [
{
"name": "have",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "need",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_VaultFeeTransferFailed",
"type": "error",
"inputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsBondingCurve_ZeroAddressFeeShare",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroAddressHook",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroAddressPlatformAdmin",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroAddressPoolManager",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroAddressPositionManager",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroAddressToken",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroAddressVault",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroAddressWETH",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroInputAmount",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroThreshold",
"type": "error",
"inputs": []
},
{
"name": "BagsBondingCurve_ZeroVirtualTokenReserve",
"type": "error",
"inputs": []
},
{
"name": "EnforcedPause",
"type": "error",
"inputs": []
},
{
"name": "ExpectedPause",
"type": "error",
"inputs": []
},
{
"name": "InvalidInitialization",
"type": "error",
"inputs": []
},
{
"name": "NotInitializing",
"type": "error",
"inputs": []
},
{
"name": "OwnableInvalidOwner",
"type": "error",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "OwnableUnauthorizedAccount",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ReentrancyGuardReentrantCall",
"type": "error",
"inputs": []
},
{
"name": "SafeCastOverflowedUintDowncast",
"type": "error",
"inputs": [
{
"name": "bits",
"type": "uint8",
"internalType": "uint8"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "SafeERC20FailedOperation",
"type": "error",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "FeesSplit",
"type": "event",
"inputs": [
{
"name": "payer",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "vault",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "feeShare",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "vaultFeeQuote",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "creatorFeeWETH",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "partnerFeeWETH",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Initialized",
"type": "event",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"name": "Initialized",
"type": "event",
"inputs": [
{
"name": "caller",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "realTokenReserves",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Migrated",
"type": "event",
"inputs": [
{
"name": "creator",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "platformAdmin",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "lpQuote",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "lpTokens",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "poolId",
"type": "bytes32",
"indexed": false,
"internalType": "PoolId"
},
{
"name": "sqrtPriceX96",
"type": "uint160",
"indexed": false,
"internalType": "uint160"
}
],
"anonymous": false
},
{
"name": "OwnershipTransferStarted",
"type": "event",
"inputs": [
{
"name": "previousOwner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "newOwner",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "OwnershipTransferred",
"type": "event",
"inputs": [
{
"name": "previousOwner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "newOwner",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Paused",
"type": "event",
"inputs": [
{
"name": "account",
"type": "address",
"indexed": false,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "RoleAdminChanged",
"type": "event",
"inputs": [
{
"name": "role",
"type": "bytes32",
"indexed": true,
"internalType": "bytes32"
},
{
"name": "previousAdminRole",
"type": "bytes32",
"indexed": true,
"internalType": "bytes32"
},
{
"name": "newAdminRole",
"type": "bytes32",
"indexed": true,
"internalType": "bytes32"
}
],
"anonymous": false
},
{
"name": "RoleGranted",
"type": "event",
"inputs": [
{
"name": "role",
"type": "bytes32",
"indexed": true,
"internalType": "bytes32"
},
{
"name": "account",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "sender",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "RoleRevoked",
"type": "event",
"inputs": [
{
"name": "role",
"type": "bytes32",
"indexed": true,
"internalType": "bytes32"
},
{
"name": "account",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "sender",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "TokensBought",
"type": "event",
"inputs": [
{
"name": "buyer",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "recipient",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "grossQuoteIn",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "netQuoteIn",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "tokensOut",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "feeQuote",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "vaultFeeQuote",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "creatorFeeWETH",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "refundQuote",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "price",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "virtualTokenReserves",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "virtualQuoteReserves",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "TokensSold",
"type": "event",
"inputs": [
{
"name": "seller",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "recipient",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "tokensIn",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "grossQuoteOut",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "netQuoteToRecipient",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "feeQuote",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "vaultFeeQuote",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "creatorFeeWETH",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "price",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "virtualTokenReserves",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "virtualQuoteReserves",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Unpaused",
"type": "event",
"inputs": [
{
"name": "account",
"type": "address",
"indexed": false,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "ADMIN_ROLE",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "DEAD",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "DEFAULT_ADMIN_ROLE",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "FEE_SHARE",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "HOOK",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IHooks"
}
],
"stateMutability": "view"
},
{
"name": "INITIAL_VIRTUAL_TOKEN_RESERVES",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "LP_TOKEN_AMOUNT",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "PERMIT2",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IAllowanceTransfer"
}
],
"stateMutability": "view"
},
{
"name": "POOL_MANAGER",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IPoolManager"
}
],
"stateMutability": "view"
},
{
"name": "POSITION_MANAGER",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IPositionManager"
}
],
"stateMutability": "view"
},
{
"name": "TOKEN",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "TX_FEE_BPS",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "VAULT",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "WETH",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "acceptOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "bondingProgress",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "percent",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "buy",
"type": "function",
"inputs": [
{
"name": "minTokensOut",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "payable"
},
{
"name": "buyFor",
"type": "function",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
},
{
"name": "minTokensOut",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "payable"
},
{
"name": "creator",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "currentPrice",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "price",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "getRoleAdmin",
"type": "function",
"inputs": [
{
"name": "role",
"type": "bytes32",
"internalType": "bytes32"
}
],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "getVirtualReserves",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "vToken",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "vQuote",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "grantRole",
"type": "function",
"inputs": [
{
"name": "role",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "hasRole",
"type": "function",
"inputs": [
{
"name": "role",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "initialVirtualQuoteReserves",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
},
{
"name": "hook",
"type": "address",
"internalType": "address"
},
{
"name": "initialOwner",
"type": "address",
"internalType": "address"
},
{
"name": "creator_",
"type": "address",
"internalType": "address"
},
{
"name": "feeShare_",
"type": "address",
"internalType": "address"
},
{
"name": "platformAdmin_",
"type": "address",
"internalType": "address"
},
{
"name": "partner_",
"type": "address",
"internalType": "address"
},
{
"name": "partnerFeeBps_",
"type": "uint16",
"internalType": "uint16"
},
{
"name": "thresholdQuote_",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "initializeAfterMint",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "initialized",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "lpQuoteAmount",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "migrate",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "migrated",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "partner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "partnerFeeBps",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "view"
},
{
"name": "pause",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "paused",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "pendingOwner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "platformAdmin",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "quoteBuy",
"type": "function",
"inputs": [
{
"name": "quoteIn",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "tokensOut",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "feeQuote",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "netQuoteIn",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "grossUsed",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "refundQuote",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "quoteSell",
"type": "function",
"inputs": [
{
"name": "tokensIn",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "quoteToSeller",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "feeQuote",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "grossQuoteOut",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "realQuoteReserves",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "realTokenReserves",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "renounceOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "renounceRole",
"type": "function",
"inputs": [
{
"name": "role",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "callerConfirmation",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "revokeRole",
"type": "function",
"inputs": [
{
"name": "role",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "sell",
"type": "function",
"inputs": [
{
"name": "tokensIn",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "minQuoteOut",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "sellFor",
"type": "function",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
},
{
"name": "tokensIn",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "minQuoteOut",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "supportsInterface",
"type": "function",
"inputs": [
{
"name": "interfaceId",
"type": "bytes4",
"internalType": "bytes4"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "thresholdQuote",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transferOwnership",
"type": "function",
"inputs": [
{
"name": "newOwner",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "unpause",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x60806040819052635c60da1b60e01b81526020906004817f0000000000000000000000008dcecaf516c828a493c2c449c1e25f92cf80207e6001600160a01b03165afa801560a2575f901560d1575060203d602011609c575b601f19601f820116608001906080821067ffffffffffffffff83111760885760849160405260800160ad565b60d1565b634e487b7160e01b5f52604160045260245ffd5b503d6058565b6040513d5f823e3d90fd5b602090607f19011260cd576080516001600160a01b038116810360cd5790565b5f80fd5b5f8091368280378136915af43d5f803e1560e9573d5ff35b3d5ffdfea26469706673582212205f87a11aef2d05829cba3b08c4a4247afd1a62e1e380ab0a0bc1efe024f1195164736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| Meanie (MEANIE) | MEANIE | 980,463,369.167322 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x09d775…caba2e | 13 hrs agoMon, 17 Aug 2026 08:04:47 UTC | 0x813ea2…b80d | [0] 0x000000000000…0fd3c822 [1] 0x000000000000…0fd3c822 data: 0x000000000000000000…327f2494 |
| 0x09d775…caba2e | 13 hrs agoMon, 17 Aug 2026 08:04:47 UTC | 0xce1b9f…8076 | [0] 0x000000000000…0fd3c822 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…57848bb2 |
| 0x60bf3d…f47a97 | 15 hrs agoMon, 17 Aug 2026 06:14:15 UTC | 0x813ea2…b80d | [0] 0x000000000000…262c40dc [1] 0x000000000000…262c40dc data: 0x000000000000000000…f1996c22 |
| 0x60bf3d…f47a97 | 15 hrs agoMon, 17 Aug 2026 06:14:15 UTC | 0xce1b9f…8076 | [0] 0x000000000000…262c40dc [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…b89eb33c |
| 0x1f1fc4…75b60f | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0x813ea2…b80d | [0] 0x000000000000…43691269 [1] 0x000000000000…43691269 data: 0x000000000000000000…69917a0d |
| 0x1f1fc4…75b60f | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0xce1b9f…8076 | [0] 0x000000000000…43691269 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…45967c72 |
| 0x7d462f…941746 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0x813ea2…b80d | [0] 0x000000000000…1fcf6f60 [1] 0x000000000000…1fcf6f60 data: 0x000000000000000000…24b3ecdd |
| 0x7d462f…941746 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0xce1b9f…8076 | [0] 0x000000000000…1fcf6f60 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…1faf992f |
| 0x019381…1f2736 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0x6d9c6f…36b9 | [0] 0x000000000000…262c40dc [1] 0x000000000000…262c40dc data: 0x000000000000000000…a71347c9 |
| 0x019381…1f2736 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0xce1b9f…8076 | [0] 0x000000000000…262c40dc [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…417eee00 |
| 0x9eb3e9…fe98e2 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0x6d9c6f…36b9 | [0] 0x000000000000…0fd3c822 [1] 0x000000000000…0fd3c822 data: 0x000000000000000000…5cb6d7c9 |
| 0x9eb3e9…fe98e2 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0xce1b9f…8076 | [0] 0x000000000000…0fd3c822 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…6bdd9c00 |
| 0x0fb70d…810b78 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0x6d9c6f…36b9 | [0] 0x000000000000…0fd3c822 [1] 0x000000000000…0fd3c822 data: 0x000000000000000000…315ff7c9 |
| 0x0fb70d…810b78 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0xce1b9f…8076 | [0] 0x000000000000…0fd3c822 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…2ce60400 |
| 0x7df76a…31a928 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0x813ea2…b80d | [0] 0x000000000000…b8c068af [1] 0x000000000000…b8c068af data: 0x000000000000000000…7129d7c9 |
| 0x7df76a…31a928 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0xce1b9f…8076 | [0] 0x000000000000…b8c068af [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…09b8f296 |
| 0x21ed71…b6c612 | 5 days agoWed, 12 Aug 2026 03:04:49 UTC | 0x813ea2…b80d | [0] 0x000000000000…43d79b37 [1] 0x000000000000…43d79b37 data: 0x000000000000000000…a224e328 |
| 0x21ed71…b6c612 | 5 days agoWed, 12 Aug 2026 03:04:49 UTC | 0xce1b9f…8076 | [0] 0x000000000000…43d79b37 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…1453f0c6 |
| 0xf0bfdc…77e5e2 | 5 days agoWed, 12 Aug 2026 03:04:26 UTC | 0x813ea2…b80d | [0] 0x000000000000…7ffcb921 [1] 0x000000000000…7ffcb921 data: 0x000000000000000000…654d19bf |
| 0xf0bfdc…77e5e2 | 5 days agoWed, 12 Aug 2026 03:04:26 UTC | 0xce1b9f…8076 | [0] 0x000000000000…7ffcb921 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…150fee72 |
| 0x164496…00072b | 5 days agoWed, 12 Aug 2026 02:58:45 UTC | 0x6d9c6f…36b9 | [0] 0x000000000000…93015501 [1] 0x000000000000…93015501 data: 0x000000000000000000…4e31acda |
| 0x164496…00072b | 5 days agoWed, 12 Aug 2026 02:58:45 UTC | 0xce1b9f…8076 | [0] 0x000000000000…93015501 [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…139ca800 |
| 0x9609e0…c2966b | 5 days agoWed, 12 Aug 2026 02:56:04 UTC | 0x813ea2…b80d | [0] 0x000000000000…262c40dc [1] 0x000000000000…262c40dc data: 0x000000000000000000…46506cda |
| 0x9609e0…c2966b | 5 days agoWed, 12 Aug 2026 02:56:04 UTC | 0xce1b9f…8076 | [0] 0x000000000000…262c40dc [1] 0x000000000000…540b83aa [2] 0x000000000000…d8208b36 data: 0x000000000000000000…e488dffb |
| 0xe90f96…0aa7e8 | 5 days agoWed, 12 Aug 2026 02:51:48 UTC | 0x813ea2…b80d | [0] 0x000000000000…262c40dc [1] 0x000000000000…262c40dc data: 0x000000000000000000…5c2e6549 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x09d775fe…caba2e | Transfer | 38,679,039 | 13 hrs agoMon, 17 Aug 2026 08:04:47 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000125 WETH | WETH (WETH) | |
| 0x09d775fe…caba2e | Transfer | 38,679,039 | 13 hrs agoMon, 17 Aug 2026 08:04:47 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000125 WETH | WETH (WETH) | |
| 0x09d775fe…caba2e | Transfer | 38,679,039 | 13 hrs agoMon, 17 Aug 2026 08:04:47 UTC | 0x8c48…c822 | IN | 0xd558…a9fd | 7,777,592.026227 MEANIE | Meanie (MEANIE) | |
| 0x60bf3d27…f47a97 | Transfer | 38,612,972 | 15 hrs agoMon, 17 Aug 2026 06:14:15 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000010 WETH | WETH (WETH) | |
| 0x60bf3d27…f47a97 | Transfer | 38,612,972 | 15 hrs agoMon, 17 Aug 2026 06:14:15 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000010 WETH | WETH (WETH) | |
| 0x60bf3d27…f47a97 | Transfer | 38,612,972 | 15 hrs agoMon, 17 Aug 2026 06:14:15 UTC | 0x6505…40dc | IN | 0xd558…a9fd | 660,751.900240 MEANIE | Meanie (MEANIE) | |
| 0x1f1fc40f…75b60f | Transfer | 36,625,209 | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000049 WETH | WETH (WETH) | |
| 0x1f1fc40f…75b60f | Transfer | 36,625,209 | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000049 WETH | WETH (WETH) | |
| 0x1f1fc40f…75b60f | Transfer | 36,625,209 | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0x013a…1269 | IN | 0xd558…a9fd | 3,000,838.164531 MEANIE | Meanie (MEANIE) | |
| 0x7d462fe6…941746 | Transfer | 35,378,440 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000075 WETH | WETH (WETH) | |
| 0x7d462fe6…941746 | Transfer | 35,378,440 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000075 WETH | WETH (WETH) | |
| 0x7d462fe6…941746 | Transfer | 35,378,440 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0x4a86…6f60 | IN | 0xd558…a9fd | 4,597,717.197602 MEANIE | Meanie (MEANIE) | |
| 0x0193818d…1f2736 | Transfer | 34,390,099 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000012 WETH | WETH (WETH) | |
| 0x0193818d…1f2736 | Transfer | 34,390,099 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000012 WETH | WETH (WETH) | |
| 0x0193818d…1f2736 | Transfer | 34,390,099 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0xd558…a9fd | OUT | 0x6505…40dc | 734,168.778045 MEANIE | Meanie (MEANIE) | |
| 0x9eb3e9c6…fe98e2 | Transfer | 34,327,942 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000068 WETH | WETH (WETH) | |
| 0x9eb3e9c6…fe98e2 | Transfer | 34,327,942 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000068 WETH | WETH (WETH) | |
| 0x9eb3e9c6…fe98e2 | Transfer | 34,327,942 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0xd558…a9fd | OUT | 0x8c48…c822 | 4,098,264.968990 MEANIE | Meanie (MEANIE) | |
| 0x0fb70d0c…810b78 | Transfer | 34,319,934 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000061 WETH | WETH (WETH) | |
| 0x0fb70d0c…810b78 | Transfer | 34,319,934 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000061 WETH | WETH (WETH) | |
| 0x0fb70d0c…810b78 | Transfer | 34,319,934 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0xd558…a9fd | OUT | 0x8c48…c822 | 3,679,327.057236 MEANIE | Meanie (MEANIE) | |
| 0x7df76a3c…31a928 | Transfer | 34,193,353 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000540 WETH | WETH (WETH) | |
| 0x7df76a3c…31a928 | Transfer | 34,193,353 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0x0000…0000 | IN | 0xd558…a9fd | 0.000540 WETH | WETH (WETH) | |
| 0x7df76a3c…31a928 | Transfer | 34,193,353 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0x202e…68af | IN | 0xd558…a9fd | 32,204,368.225413 MEANIE | Meanie (MEANIE) | |
| 0x21ed711b…b6c612 | Transfer | 34,189,141 | 5 days agoWed, 12 Aug 2026 03:04:49 UTC | 0xd558…a9fd | OUT | 0x1b1d…8b36 | 0.000531 WETH | WETH (WETH) |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x09d775…caba2e | sell | 38,679,039 | 13 hrs agoMon, 17 Aug 2026 08:04:47 UTC | 0x8c48…c822 | IN | BagsBondingCurve | $0.000 ETH | 0.00000392 | |
| 0x1f1fc4…75b60f | sell | 36,625,209 | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0x013a…1269 | IN | BagsBondingCurve | $0.000 ETH | 0.00000787 | |
| 0x9eb3e9…fe98e2 | buy | 34,327,942 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0x8c48…c822 | IN | BagsBondingCurve | $10.480.0055 ETH | 0.00000845 | |
| 0x0fb70d…810b78 | buy | 34,319,934 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0x8c48…c822 | IN | BagsBondingCurve | $9.330.0049 ETH | 0.00000937 | |
| 0x7df76a…31a928 | sellFor | 34,193,353 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0x202e…68af | IN | BagsBondingCurve | $0.000 ETH | 0.00000815 | |
| 0x21ed71…b6c612 | sellFor | 34,189,141 | 5 days agoWed, 12 Aug 2026 03:04:49 UTC | 0xc8ed…9b37 | IN | BagsBondingCurve | $0.000 ETH | 0.00000849 | |
| 0xf0bfdc…77e5e2 | sell | 34,188,919 | 5 days agoWed, 12 Aug 2026 03:04:26 UTC | 0x5df1…b921 | IN | BagsBondingCurve | $0.000 ETH | 0.00000802 | |
| 0x164496…00072b | buy | 34,185,483 | 5 days agoWed, 12 Aug 2026 02:58:45 UTC | 0x281d…5501 | IN | BagsBondingCurve | $1.900.001 ETH | 0.00000874 | |
| 0x8710a2…1d3122 | buy | 34,179,841 | 5 days agoWed, 12 Aug 2026 02:49:27 UTC | 0x5df1…b921 | IN | BagsBondingCurve | $95.240.05 ETH | 0.00000799 | |
| 0xc1b99a…621f22 | buy | 34,179,751 | 5 days agoWed, 12 Aug 2026 02:49:18 UTC | 0x5df1…b921 | IN | BagsBondingCurve | $19.050.01 ETH | 0.00000857 | |
| 0xf2970b…21c8b6 | sellFor | 34,163,101 | 5 days agoWed, 12 Aug 2026 02:21:40 UTC | 0x202e…68af | IN | BagsBondingCurve | $0.000 ETH | 0.00042197 | |
| 0x892ffc…8a2b2f | sellFor | 34,162,485 | 5 days agoWed, 12 Aug 2026 02:20:38 UTC | 0xc8ed…9b37 | IN | BagsBondingCurve | $0.000 ETH | 0.00060704 | |
| 0x95bf6d…028da9 | sellFor | 34,162,346 | 5 days agoWed, 12 Aug 2026 02:20:24 UTC | 0xc8ed…9b37 | IN | BagsBondingCurve | $0.000 ETH | 0.00065122 | |
| 0xb84874…805423 | sellFor | 34,161,918 | 5 days agoWed, 12 Aug 2026 02:19:41 UTC | 0xc8ed…9b37 | IN | BagsBondingCurve | $0.000 ETH | 0.00060563 | |
| 0xe653cd…7fd05a | buyFor | 34,158,802 | 5 days agoWed, 12 Aug 2026 02:14:26 UTC | 0x202e…68af | IN | BagsBondingCurve | $190.470.1 ETH | 0.00000854 | |
| 0x609b5e…c0a841 | buyFor | 34,158,276 | 5 days agoWed, 12 Aug 2026 02:13:33 UTC | 0xc8ed…9b37 | IN | BagsBondingCurve | $142.850.075 ETH | 0.00000998 | |
| 0x1ffbf0…d98151 | buy | 34,154,332 | 5 days agoWed, 12 Aug 2026 02:07:03 UTC | 0x2ba2…6d9c | IN | BagsBondingCurve | $1.900.001 ETH | 0.00002198 | |
| 0xf90d54…d34cd0 | buy | 34,151,592 | 5 days agoWed, 12 Aug 2026 02:02:32 UTC | 0xa9c4…74db | IN | BagsBondingCurve | $10.480.0055 ETH | 0.00003021 | |
| 0x354637…5b6b30 | buy | 34,148,782 | 5 days agoWed, 12 Aug 2026 01:57:54 UTC | 0x1e5f…3ece | IN | BagsBondingCurve | $1.900.001 ETH | 0.00000973 | |
| 0x5f4986…edf117 | buy | 34,148,615 | 5 days agoWed, 12 Aug 2026 01:57:37 UTC | 0x013a…1269 | IN | BagsBondingCurve | $1.140.0006 ETH | 0.00000963 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 36,625,209 | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0x1f1fc4…75b60f | CALL | sell | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00004 ETH |
| 36,625,209 | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0x1f1fc4…75b60f | CALL | sell | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00002 ETH |
| 36,625,209 | 2 days agoFri, 14 Aug 2026 22:50:12 UTC | 0x1f1fc4…75b60f | CALL | sell | 0xd558…a9fd | OUT | 0x013a…1269 | 0.00384 ETH |
| 35,378,440 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0x7d462f…941746 | CALL | axiomTrade | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00007 ETH |
| 35,378,440 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0x7d462f…941746 | CALL | axiomTrade | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00004 ETH |
| 35,378,440 | 4 days agoThu, 13 Aug 2026 12:08:22 UTC | 0x7d462f…941746 | CALL | axiomTrade | 0xd558…a9fd | OUT | 0x4a86…6f60 | 0.00593 ETH |
| 34,390,099 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0x019381…1f2736 | CALL | swap | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00001 ETH |
| 34,390,099 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0x019381…1f2736 | CALL | swap | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00000 ETH |
| 34,390,099 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0x019381…1f2736 | DELEGATECALL | swap | 0xd558…a9fd | OUT | 0x4198…3275 | 0.00099 ETH |
| 34,390,099 | 5 days agoWed, 12 Aug 2026 08:39:09 UTC | 0x019381…1f2736 | CALL | swap | 0x6505…40dc | IN | 0xd558…a9fd | 0.00099 ETH |
| 34,327,942 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0x9eb3e9…fe98e2 | CALL | buy | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00006 ETH |
| 34,327,942 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0x9eb3e9…fe98e2 | CALL | buy | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00004 ETH |
| 34,327,942 | 5 days agoWed, 12 Aug 2026 06:55:33 UTC | 0x9eb3e9…fe98e2 | DELEGATECALL | buy | 0xd558…a9fd | OUT | 0x4198…3275 | 0.0055 ETH |
| 34,319,934 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0x0fb70d…810b78 | CALL | buy | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00006 ETH |
| 34,319,934 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0x0fb70d…810b78 | CALL | buy | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00003 ETH |
| 34,319,934 | 5 days agoWed, 12 Aug 2026 06:42:12 UTC | 0x0fb70d…810b78 | DELEGATECALL | buy | 0xd558…a9fd | OUT | 0x4198…3275 | 0.0049 ETH |
| 34,193,353 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0x7df76a…31a928 | CALL | sellFor | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00054 ETH |
| 34,193,353 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0x7df76a…31a928 | CALL | sellFor | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00032 ETH |
| 34,193,353 | 5 days agoWed, 12 Aug 2026 03:11:48 UTC | 0x7df76a…31a928 | CALL | sellFor | 0xd558…a9fd | OUT | 0x202e…68af | 0.04238 ETH |
| 34,189,141 | 5 days agoWed, 12 Aug 2026 03:04:49 UTC | 0x21ed71…b6c612 | CALL | sellFor | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00053 ETH |
| 34,189,141 | 5 days agoWed, 12 Aug 2026 03:04:49 UTC | 0x21ed71…b6c612 | CALL | sellFor | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00031 ETH |
| 34,189,141 | 5 days agoWed, 12 Aug 2026 03:04:49 UTC | 0x21ed71…b6c612 | CALL | sellFor | 0xd558…a9fd | OUT | 0xc8ed…9b37 | 0.04170 ETH |
| 34,188,919 | 5 days agoWed, 12 Aug 2026 03:04:26 UTC | 0xf0bfdc…77e5e2 | CALL | sell | 0xd558…a9fd | OUT | 0x0bd7…ad73 | 0.00067 ETH |
| 34,188,919 | 5 days agoWed, 12 Aug 2026 03:04:26 UTC | 0xf0bfdc…77e5e2 | CALL | sell | 0xd558…a9fd | OUT | 0x4861…83aa | 0.00040 ETH |
| 34,188,919 | 5 days agoWed, 12 Aug 2026 03:04:26 UTC | 0xf0bfdc…77e5e2 | CALL | sell | 0xd558…a9fd | OUT | 0x5df1…b921 | 0.05316 ETH |