mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-03 22:33:07 +00:00
* chore: setup rln as a new package * chore: migrate src * fix: wasm loading, tests, config * chore: fix Karma CI * fix: bundler * chore: copy dist resources * chore(rln): enable all tests * chore: increase karma timeouts
31 lines
762 B
TypeScript
31 lines
762 B
TypeScript
import { RLNDecoder, RLNEncoder } from "./codec.js";
|
|
import {
|
|
RLN_REGISTRY_ABI,
|
|
RLN_STORAGE_ABI,
|
|
SEPOLIA_CONTRACT
|
|
} from "./contract/index.js";
|
|
import { RLNContract } from "./contract/index.js";
|
|
import { createRLN } from "./create.js";
|
|
import { IdentityCredential } from "./identity.js";
|
|
import { Keystore } from "./keystore/index.js";
|
|
import { Proof } from "./proof.js";
|
|
import { RLNInstance } from "./rln.js";
|
|
import { MerkleRootTracker } from "./root_tracker.js";
|
|
import { extractMetaMaskSigner } from "./utils/index.js";
|
|
|
|
export {
|
|
createRLN,
|
|
Keystore,
|
|
RLNInstance,
|
|
IdentityCredential,
|
|
Proof,
|
|
RLNEncoder,
|
|
RLNDecoder,
|
|
MerkleRootTracker,
|
|
RLNContract,
|
|
RLN_STORAGE_ABI,
|
|
RLN_REGISTRY_ABI,
|
|
SEPOLIA_CONTRACT,
|
|
extractMetaMaskSigner
|
|
};
|