mirror of
https://github.com/logos-messaging/js-rln.git
synced 2026-01-02 13:43:06 +00:00
rename to createRLN
This commit is contained in:
parent
2bdc3c2530
commit
82a986437a
@ -1,6 +1,6 @@
|
||||
import type { RLNInstance } from "./rln.js";
|
||||
|
||||
export async function create(): Promise<RLNInstance> {
|
||||
export async function createRLN(): Promise<RLNInstance> {
|
||||
// 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.
|
||||
|
||||
@ -4,7 +4,7 @@ import {
|
||||
RLN_STORAGE_ABI,
|
||||
SEPOLIA_CONTRACT,
|
||||
} from "./constants.js";
|
||||
import { create } from "./create.js";
|
||||
import { createRLN } from "./create.js";
|
||||
import { Keystore } from "./keystore/index.js";
|
||||
import {
|
||||
IdentityCredential,
|
||||
@ -16,7 +16,7 @@ import { RLNContract } from "./rln_contract.js";
|
||||
import { MerkleRootTracker } from "./root_tracker.js";
|
||||
|
||||
export {
|
||||
create,
|
||||
createRLN,
|
||||
Keystore,
|
||||
RLNInstance,
|
||||
IdentityCredential,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user