Skip to content

MidnightWallet

MidnightWallet = ConnectedWallet | ReadonlyWallet

Defined in: src/Wallet.ts:426

Union type for any wallet (connected or read-only).

Use wallet.type to discriminate:

if (wallet.type === 'connected') {
const balance = await wallet.getBalance();
}

Since

0.7.0