okx-api
Version:
Complete Node.js SDK for OKX's REST APIs and WebSockets, with TypeScript & end-to-end tests
14 lines (13 loc) • 426 B
TypeScript
export interface APICredentials {
apiKey: string;
apiSecret: string;
apiPass: string;
}
/**
* The API Market represents the OKX Domain that you have signed up for. At this time, there are 3 supported domain groups:
*
* - GLOBAL, otherwise known as "www.okx.com".
* - EEA, otherwise known as "my.okx.com".
* - US, otherwise known as "app.okx.com".
*/
export type APIMarket = 'prod' | 'GLOBAL' | 'EEA' | 'US';