UNPKG

@biconomy/sdk

Version:

SDK for Biconomy integration with support for account abstraction, smart accounts, ERC-4337.

18 lines 510 B
/** * Executes a signed quote. * @param client - The Mee client to use * @param params - The parameters for executing the signed quote * @returns The hash of the executed transaction * @example * const hash = await executeSignedQuote(client, { * signedQuote: { * ... * } * }) */ export const executeSignedQuote = async (client, params) => client.request({ path: "v1/exec", body: params.signedQuote }); export default executeSignedQuote; //# sourceMappingURL=executeSignedQuote.js.map