added bandada

This commit is contained in:
2023-07-31 11:59:41 -04:00
parent b489558e99
commit 7aacbbe7d5
2 changed files with 7 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "discreetly-interfaces",
"version": "0.1.21",
"version": "0.1.22",
"description": "Common interfaces and utilities for discreetly",
"author": "AtHeartEngineer",
"homepage": "https://github.com/Discreetly",

View File

@@ -9,9 +9,15 @@ export enum RoomType {
SECURE = 'secure'
}
export interface BandadaGroupI {
groupID: string;
url: string;
}
export interface MembershipI {
identityCommitments?: IdentityCommitmentT[];
rlnContract?: RLNContractI;
bandadaGroup?: BandadaGroupI;
}
export interface RLNContractI {