UNPKG

@waku/rln

Version:

RLN (Rate Limiting Nullifier) implementation for Waku

8 lines 354 B
export async function createRLN() { // A dependency graph that contains any wasm must all be imported // asynchronously. This file does the single async import, so // that no one else needs to worry about it again. const rlnModule = await import("./rln.js"); return rlnModule.RLNInstance.create(); } //# sourceMappingURL=create.js.map