@etherspot/remote-signer
Version:
Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler
17 lines (14 loc) • 350 B
TypeScript
import { BigNumberish } from '../types/bignumber.js';
import '../types/common-types.js';
import 'viem';
interface BatchUserOpsRequest {
to: string[];
data?: string[];
value?: BigNumberish[];
}
interface UserOpsRequest {
to: string;
data?: string;
value?: BigNumberish;
}
export type { BatchUserOpsRequest, UserOpsRequest };