Bundle a user operation.
import { bundleUserOp } from "thirdweb/wallets/smart"; const userOpHash = await bundleUserOp({ userOp, options,});
function bundleUserOp(args: { options: BundlerOptions; userOp: UserOperation;}): Promise<Hex>;
The options for bundling a user operation.
let args: { options: BundlerOptions; userOp: UserOperation };
let returnType: Promise<Hex>;
The bundle hash of the user operation.