UNPKG

@etherspot/prime-sdk

Version:

Etherspot Prime (Account Abstraction) SDK

12 lines (11 loc) 244 B
import { BigNumberish } from "ethers"; export interface BatchUserOpsRequest { to: string[]; data?: string[]; value?: BigNumberish[]; } export interface UserOpsRequest { to: string; data?: string; value?: BigNumberish; }