Binance Connector JS
    Preparing search index...

    Type Alias SignerConfig

    Defines the configuration options for the RequestSigner class, which can include either an API secret for HMAC signing or a private key for asymmetric signing.

    • apiSecret: A string used for HMAC-SHA256 signing of requests.
    • privateKey: A string or Buffer containing the RSA or ED25519 private key for asymmetric signing.
    • privateKeyPassphrase: An optional string passphrase for encrypted private keys.
    type SignerConfig = {
        apiSecret?: string;
        privateKey?: string | Buffer;
        privateKeyPassphrase?: string;
    }
    Index

    Properties

    apiSecret?: string
    privateKey?: string | Buffer
    privateKeyPassphrase?: string