@etherspot/remote-signer
Version:
Etherspot Permissioned Signer SDK - signs the UserOp with SessionKey and sends it to the Bundler
9 lines (7 loc) • 318 B
text/typescript
interface BootstrapConfig {
module: string;
data: string;
}
declare function _makeBootstrapConfig(module: string, data: string): BootstrapConfig;
declare function makeBootstrapConfig(module: string, data: string): BootstrapConfig[];
export { type BootstrapConfig, _makeBootstrapConfig, makeBootstrapConfig };