chore(): updated names

This commit is contained in:
Jerko J
2024-06-04 15:58:33 +02:00
parent fe1d7187a3
commit 2a88403616

View File

@@ -173,7 +173,7 @@ export class RestClientV2 extends BaseRestClient {
*
*/
getBGBConvertCoins(): Promise<APIResponse<any>> {
getConvertBGBCoins(): Promise<APIResponse<any>> {
return this.getPrivate(`/api/v2/convert/bgb-convert-coin-list`);
}
@@ -181,7 +181,7 @@ export class RestClientV2 extends BaseRestClient {
return this.postPrivate(`/api/v2/convert/bgb-convert`, params);
}
getBGBConvertHistory(params: object): Promise<APIResponse<any>> {
getConvertBGBHistory(params: object): Promise<APIResponse<any>> {
return this.getPrivate(`/api/v2/convert/bgb-convert-records`, params);
}