@owlprotocol/contracts-account-abstraction
Version:
ERC4337 Account Abstraction support for deploying relevant smart contracts and interacting with UserOps.
37 lines (36 loc) • 1.9 kB
JavaScript
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var bundler_exports = {};
__export(bundler_exports, {
backendBundlerActions: () => backendBundlerActions
});
module.exports = __toCommonJS(bundler_exports);
var import_actions = require("viem/actions");
var import_estimateUserOperationGas = require("../../actions/bundler/estimateUserOperationGas.js");
var import_getSupportedEntryPoints = require("../../actions/bundler/getSupportedEntryPoints.js");
var import_sendUserOperation = require("../../actions/bundler/sendUserOperation.js");
var import_actions2 = require("../../actions/index.js");
function backendBundlerActions(client) {
return {
estimateUserOperationGas: (parameters) => (0, import_estimateUserOperationGas.estimateUserOperationGas)(client, parameters),
getChainId: () => (0, import_actions.getChainId)(client),
getSupportedEntryPoints: () => (0, import_getSupportedEntryPoints.getSupportedEntryPoints)(client),
getUserOperationReceipt: (parameters) => (0, import_actions2.getUserOperationReceipt)(client, parameters),
sendUserOperation: (parameters) => (0, import_sendUserOperation.sendUserOperation)(client, parameters)
};
}