(pubkey?: string)
| 484 | } |
| 485 | |
| 486 | export async function getUserProfile(pubkey?: string): Promise<Profile> { |
| 487 | const profile = await invokeTauri<RawProfile>("get_user_profile", { pubkey }); |
| 488 | return fromRawProfile(profile); |
| 489 | } |
| 490 | |
| 491 | export async function getUsersBatch( |
| 492 | pubkeys: string[], |
no test coverage detected