getUserOpReceiptRaw

Get the receipt of a user operation.

Example

import { getUserOpReceiptRaw } from "thirdweb/wallets/smart";
const receipt = await getUserOpReceiptRaw({
client,
chain,
userOpHash,
});
function getUserOpReceiptRaw(
args: BundlerOptions & { userOpHash: `0x${string}` },
): Promise<UserOperationReceipt | undefined>;

Parameters

The options for getting the receipt of a user operation.

Type

let args: BundlerOptions & { userOpHash: `0x${string}` };

Returns

let returnType: Promise<UserOperationReceipt | undefined>;

The raw receipt of the user operation.