Skip to content

Commit 0f63ab2

Browse files
committed
Add spotPrivateGetUid method to mexc interface
1 parent 4a4f569 commit 0f63ab2

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

js/src/abstract/mexc.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ interface Exchange {
2020
spotPrivateGetAccount(params?: {}): Promise<implicitReturnType>;
2121
spotPrivateGetMyTrades(params?: {}): Promise<implicitReturnType>;
2222
spotPrivateGetTradeFee(params?: {}): Promise<implicitReturnType>;
23+
spotPrivateGetUid(params?: {}): Promise<implicitReturnType>;
2324
spotPrivateGetSubAccountList(params?: {}): Promise<implicitReturnType>;
2425
spotPrivateGetSubAccountApiKey(params?: {}): Promise<implicitReturnType>;
2526
spotPrivateGetCapitalConfigGetall(params?: {}): Promise<implicitReturnType>;

js/src/mexc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ export default class mexc extends Exchange {
196196
'account': 10,
197197
'myTrades': 10,
198198
'tradeFee': 10,
199+
'uid': 1,
199200
'sub-account/list': 1,
200201
'sub-account/apiKey': 1,
201202
'capital/config/getall': 10,

ts/src/abstract/mexc.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ interface Exchange {
2828
spotPrivateGetAccount (params?: {}): Promise<implicitReturnType>;
2929
spotPrivateGetMyTrades (params?: {}): Promise<implicitReturnType>;
3030
spotPrivateGetTradeFee (params?: {}): Promise<implicitReturnType>;
31+
spotPrivateGetUid (params?: {}): Promise<implicitReturnType>;
3132
spotPrivateGetSubAccountList (params?: {}): Promise<implicitReturnType>;
3233
spotPrivateGetSubAccountApiKey (params?: {}): Promise<implicitReturnType>;
3334
spotPrivateGetCapitalConfigGetall (params?: {}): Promise<implicitReturnType>;

ts/src/mexc.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ export default class mexc extends Exchange {
195195
'account': 10,
196196
'myTrades': 10,
197197
'tradeFee': 10,
198+
'uid': 1,
198199
'sub-account/list': 1,
199200
'sub-account/apiKey': 1,
200201
'capital/config/getall': 10,

0 commit comments

Comments
 (0)