interface WalletStatus {
    id: string;
    status: {
        walletInitialized: boolean;
        xOnlyPublicKey: undefined | Uint8Array<ArrayBufferLike>;
    };
    success: true;
    type: "WALLET_STATUS";
}

Hierarchy (View Summary)

Properties

Properties

id: string
status: {
    walletInitialized: boolean;
    xOnlyPublicKey: undefined | Uint8Array<ArrayBufferLike>;
}
success: true
type: "WALLET_STATUS"