@abstraxn/paymaster
Version:
Abstraxn Paymaster to interact with Paymaster Services that interacts with ( veriying and token ) paymasters
7 lines (6 loc) • 318 B
TypeScript
import { UserOperation } from "@abstraxn/core-types";
import { PaymasterAndDataResponse } from "../utils/Types";
export interface IPaymaster {
getPaymasterAndData(_userOp: Partial<UserOperation>): Promise<PaymasterAndDataResponse>;
getDummyPaymasterAndData(_userOp: Partial<UserOperation>): Promise<string>;
}