Interface MeeFilledUserOpDetails

Extended user operation details including timing and gas parameters MeeFilledUserOpDetails

interface MeeFilledUserOpDetails {
    chainId: string;
    lowerBoundTimestamp: string;
    maxFeePerGas: string;
    maxGasLimit: string;
    meeUserOpHash: `0x${string}`;
    upperBoundTimestamp: string;
    userOp: MeeFilledUserOp;
    userOpHash: `0x${string}`;
}

Properties

chainId: string

Chain ID where the operation will be executed

lowerBoundTimestamp: string

Lower bound timestamp for operation validity

maxFeePerGas: string

Maximum fee per gas unit

maxGasLimit: string

Maximum gas limit for the operation

meeUserOpHash: `0x${string}`

MEE-specific hash of the user operation

upperBoundTimestamp: string

Upper bound timestamp for operation validity

Complete user operation data

userOpHash: `0x${string}`

Hash of the user operation