@etherspot/remote-signer
Version:
Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler
17 lines (14 loc) • 446 B
text/typescript
import { P as PaymasterAPI } from '../../PaymasterAPI-sOoROCL-.mjs';
import '../../ERC4337Utils-D4GRkIAr.mjs';
import 'viem';
import '../types/bignumber.mjs';
import '../types/common-types.mjs';
import 'node_modules/viem/_types/errors/utils';
interface ClientConfig {
entryPointAddress: string;
registryAddress: string;
bundlerUrl: string;
walletAddres?: string;
paymasterAPI?: PaymasterAPI;
}
export type { ClientConfig };