UNPKG

@chainwayxyz/phase2cli

Version:

All-in-one interactive command-line for interfacing with zkSNARK Phase 2 Trusted Setup ceremonies

7 lines (6 loc) 489 B
import { GroupResponse } from "@bandada/api-sdk"; import { Identity } from "@semaphore-protocol/identity"; export declare const getGroup: (groupId: string) => Promise<GroupResponse | null>; export declare const getMembersOfGroup: (groupId: string) => Promise<string[] | null>; export declare const addMemberToGroup: (groupId: string, dashboardUrl: string, identity: Identity) => Promise<void>; export declare const isGroupMember: (groupId: string, identity: Identity) => Promise<boolean>;