UNPKG

@zerodev/sdk

Version:

A utility library for working with ERC-4337

9 lines (7 loc) 174 B
import type { Address, Hex } from "viem" export type CallArgs = { to: Address data?: Hex value?: bigint } export type DelegateCallArgs = Omit<CallArgs, "value">