@exchanges/binance
Version:
Exchange provider for Binance API
16 lines (15 loc) • 435 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface AccountListPayload {
algo: string;
userName: string;
}
export interface AccountListResponse {
type: string;
userName: string;
list: {
time: Date;
hashrate: number;
reject: number;
}[];
}
export declare function accountList(client: BinanceSignedClient, payload: AccountListPayload): Promise<AccountListResponse[]>;