UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

16 lines (15 loc) 530 B
import { ApiKeyCallOptions } from './apiKeyCall'; export interface ApiSecretCallOptions extends ApiKeyCallOptions { apiSecret: string; getTime: () => number | Promise<number>; /** * Не оставляет отпечаток времени */ noTimestamp?: boolean; /** * Не добавляет цифровую подпись */ noSignature?: boolean; recvWindow?: number; } export declare function apiSecretCall<Response = any>(options: ApiSecretCallOptions): Promise<Response>;