@zerodev/sdk
Version:
A utility library for working with ERC-4337
28 lines (23 loc) • 695 B
text/typescript
export type {
KernelValidator,
ZeroDevPaymasterRpcSchema,
Action,
KernelPluginManager,
ValidatorInitData,
CallType,
KernelEncodeCallDataArgs,
PluginValidityData,
ZeroDevAccountClientRpcSchema,
ZeroDevUserOperationGasPriceWithBigIntAsHex,
KERNEL_V2_VERSION_TYPE,
KERNEL_V3_VERSION_TYPE,
KERNEL_VERSION_TYPE,
GetKernelVersion,
GetEntryPointAbi,
EntryPointType,
PluginMigrationData
} from "./kernel.js"
export { ValidatorMode } from "./kernel.js"
export type { Signer } from "./utils.js"
export type WithRequired<T, K extends keyof T> = Required<Pick<T, K>>
export type PartialPick<T, K extends keyof T> = Partial<Pick<T, K>>