@etherspot/remote-signer
Version:
Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler
10 lines (7 loc) • 438 B
TypeScript
import { U as UserOperation } from '../../ERC4337Utils-DFwtlIAE.js';
import 'viem';
import '../types/bignumber.js';
import '../types/common-types.js';
import 'node_modules/viem/_types/errors/utils';
declare const signUserOpWithSessionKey: (accountAddress: string, chainId: number, apiKey: string, sessionKey: string, userOp: UserOperation, permissionsBackendUrl?: string) => Promise<UserOperation>;
export { signUserOpWithSessionKey };