mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-09 09:13:06 +00:00
28 lines
509 B
JavaScript
28 lines
509 B
JavaScript
import { initUI } from "./ui";
|
|
import { initRLN } from "./rln";
|
|
|
|
async function run() {
|
|
const { registerEvents, onStatusChange } = initUI();
|
|
const {
|
|
connectWallet,
|
|
registerCredential,
|
|
readKeystoreOptions,
|
|
readCredential,
|
|
saveLocalKeystore,
|
|
importLocalKeystore,
|
|
} = await initRLN({
|
|
onStatusChange,
|
|
});
|
|
|
|
registerEvents({
|
|
connectWallet,
|
|
registerCredential,
|
|
readKeystoreOptions,
|
|
readCredential,
|
|
saveLocalKeystore,
|
|
importLocalKeystore,
|
|
});
|
|
}
|
|
|
|
run();
|