UNPKG

@othent/kms-unbundled

Version:

Arweave Oauth Othent wallets enabled Google Key Management Service.

11 lines (9 loc) 246 B
import { logOut } from "../auth/logOut"; /** * Disconnect the users wallet. This will require the user to log back in after called. * @returns Nothing. */ export async function disconnect(): Promise<null> { await logOut(); return null; }