@silencelaboratories/walletprovider-sdk
    Preparing search index...

    Interface KeygenResponse

    Response from the SDK for keygen. Receive plaintext response from network.

    interface KeygenResponse {
        keyId: string;
        publicKey: string;
        signAlg: string;
    }
    Index

    Properties

    keyId: string

    Unique ID of produced key used in subsequent API calls.

    publicKey: string

    Public key encoded with SEC1 format.

    If point is uncompressed it's in a form of 0x04 || X || Y

    If point is compressed it's in a form Y || X,

    where Y is set to 0x02 if Y-coord is even, or 0x03 if Y-coord is odd

    signAlg: string

    Signature algorithm that uses this key for signing