Interface Secp256k1PrivateKey

interface Secp256k1PrivateKey {
    publicKey: Secp256k1PublicKey;
    raw: Uint8Array;
    type: "secp256k1";
    equals(key?): boolean;
    sign(data): Uint8Array | Promise<Uint8Array>;
}

Properties

Methods

Properties

The public key that corresponds to this private key

The raw public key bytes

type: "secp256k1"

The type of this key

Methods