@etherspot/remote-signer
Version:
Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler
12 lines (9 loc) • 376 B
TypeScript
import { PublicClient } from 'viem';
declare enum MODULE_TYPE {
VALIDATOR = "0x01",
EXECUTOR = "0x02",
FALLBACK = "0x03",
HOOK = "0x04"
}
declare const isModuleInstalled: (publicClient: PublicClient, etherspotWalletAddress: string, moduleTypeId: MODULE_TYPE, module: string, initData?: string) => Promise<boolean>;
export { MODULE_TYPE, isModuleInstalled };