Merge pull request #23 from waku-org/export-encoder

This commit is contained in:
fryorcraken.eth 2022-09-27 23:33:27 +10:00 committed by GitHub
commit 964df013ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,4 @@
import { RLNDecoder, RLNEncoder } from "./encoder.js";
import type { Proof, RLNInstance } from "./rln.js";
import { MembershipKey } from "./rln.js";
@ -10,4 +11,4 @@ export async function create(): Promise<RLNInstance> {
return await rlnModule.create();
}
export { RLNInstance, MembershipKey, Proof };
export { RLNInstance, MembershipKey, Proof, RLNEncoder, RLNDecoder };