v3.3.1: fix(#199) wrong endpoint for contract.getOpenInterestLimitInfo

This commit is contained in:
tiagosiebler
2022-11-16 12:03:36 +00:00
parent 4046608203
commit c3f7ecb30e
3 changed files with 5 additions and 2 deletions

View File

@@ -293,7 +293,7 @@ export class ContractClient extends BaseRestClient {
/** Get the information of open interest limit. */
getOpenInterestLimitInfo(symbol: string): Promise<APIResponseV3<any>> {
return this.getPrivate('/contract/v3/private/position/closed-pnl', {
return this.getPrivate('/contract/v3/private/position/limit-info', {
symbol,
});
}