UNPKG

@waku/rln

Version:

RLN (Rate Limiting Nullifier) implementation for Waku

5 lines (4 loc) 361 B
import type { IKeystore as IEipKeystore } from "@chainsafe/bls-keystore"; import type { Keccak256Hash, Password } from "./types.js"; export declare const decryptEipKeystore: (password: Password, eipKeystore: IEipKeystore) => Promise<Uint8Array>; export declare const keccak256Checksum: (password: Password, eipKeystore: IEipKeystore) => Promise<Keccak256Hash>;