UNPKG

@etherspot/remote-signer

Version:

Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler

11 lines (8 loc) 229 B
import { Hex } from 'viem'; type Bytes = ArrayLike<number>; interface TypedDataField { name: string; type: string; } type BytesLike = Uint8Array | Hex | Bytes | String; export type { Bytes, BytesLike, TypedDataField };