add USDC perp client with tests
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
export * from './account-asset';
|
||||
export * from './usdt-perp';
|
||||
export * from './usdc-perp';
|
||||
|
||||
19
src/types/request/usdc-perp.ts
Normal file
19
src/types/request/usdc-perp.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
export interface USDCKlineRequest {
|
||||
symbol: string;
|
||||
period: string;
|
||||
startTime: number;
|
||||
limit?: string;
|
||||
}
|
||||
|
||||
export interface USDCOpenInterestRequest {
|
||||
symbol: string;
|
||||
period: string;
|
||||
limit?: number;
|
||||
}
|
||||
|
||||
export interface USDCLast500TradesRequest {
|
||||
category: string;
|
||||
symbol?: string;
|
||||
baseCoin?: string;
|
||||
limit?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user