near-safe
Version:
An SDK for controlling Ethereum Smart Accounts via ERC4337 from a Near Account.
12 lines (11 loc) • 403 B
JavaScript
export * from "./guards";
/**
* Enum representing the type of operation in a meta-transaction.
*/
export var OperationType;
(function (OperationType) {
/** Standard call operation (0). */
OperationType[OperationType["Call"] = 0] = "Call";
/** Delegate call operation (1). */
OperationType[OperationType["DelegateCall"] = 1] = "DelegateCall";
})(OperationType || (OperationType = {}));