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