Bitcoin Key pair interface

interface NostrConnectorKeyPair {
    address: string;
    privateKey: string;
    publicKey: string;
    type: "nostr" | "legacy" | "segwit" | "taproot";
}

Properties

address: string
privateKey: string
publicKey: string
type: "nostr" | "legacy" | "segwit" | "taproot"