CoinbaseOptions: {
    apiKeyName: string;
    basePath?: string;
    debugging?: boolean;
    maxNetworkRetries?: number;
    privateKey: string;
    source?: string;
    sourceVersion?: string;
    useServerSigner?: boolean;
}

CoinbaseOptions type definition.

Type declaration

  • apiKeyName: string

    The API key name.

  • Optional basePath?: string

    The base path for the API.

  • Optional debugging?: boolean

    If true, logs API requests and responses to the console.

  • Optional maxNetworkRetries?: number

    The maximum number of network retries for the API GET requests.

  • privateKey: string

    The private key associated with the API key.

  • Optional source?: string

    The source for the API request, used for analytics. Defaults to sdk.

  • Optional sourceVersion?: string

    The version of the source for the API request, used for analytics.

  • Optional useServerSigner?: boolean

    Whether to use a Server-Signer or not.