From 0bea24607dcd7da89f34d87d52af0ddec4cfc748 Mon Sep 17 00:00:00 2001 From: mhchia Date: Mon, 26 Jun 2023 11:52:24 +0800 Subject: [PATCH 1/2] feat: export circuit wrappers --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index a6699dfb..9cecf424 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,4 +6,4 @@ export { IMessageIDCounter } from './message-id-counter' export * from './types' -export { RLNFullProof, RLNSNARKProof, RLNWitness, RLNPublicSignals } from './circuit-wrapper' +export { RLNFullProof, RLNSNARKProof, RLNWitness, RLNPublicSignals, RLNProver, RLNVerifier, WithdrawProver } from './circuit-wrapper' From 8885def6f736da3cf5c26867eba5539e01f08b42 Mon Sep 17 00:00:00 2001 From: mhchia Date: Mon, 26 Jun 2023 11:56:27 +0800 Subject: [PATCH 2/2] version bump in minor for next release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2e0e8740..d81b2b55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rlnjs", - "version": "3.1.1", + "version": "3.1.2", "description": "Client library for generating and using RLN ZK proofs.", "license": "MIT", "repository": "https://github.com/Rate-Limiting-Nullifier/rlnjs",