add network to account

This commit is contained in:
Ren Amamiya
2023-08-04 15:38:38 +07:00
parent 4c7826bbb3
commit 373a0f0608
13 changed files with 103 additions and 89 deletions

View File

@@ -20,9 +20,10 @@ export interface Account extends NDKUserProfile {
id: number;
npub: string;
pubkey: string;
privkey: string;
follows: string[] | string;
network: string[] | string;
is_active: number;
privkey?: string; // deprecated
}
export interface Profile extends NDKUserProfile {