Get the receipt of a user operation.
import { getUserOpReceiptRaw } from "thirdweb/wallets/smart"; const receipt = await getUserOpReceiptRaw({ client, chain, userOpHash,});
function getUserOpReceiptRaw( args: BundlerOptions & { userOpHash: `0x${string}` },): Promise<UserOperationReceipt | undefined>;
The options for getting the receipt of a user operation.
let args: BundlerOptions & { userOpHash: `0x${string}` };
let returnType: Promise<UserOperationReceipt | undefined>;
The raw receipt of the user operation.