From 2a88403616d20054fc7e16b11d958573ca908c2a Mon Sep 17 00:00:00 2001 From: Jerko J <83344666+JJ-Cro@users.noreply.github.com> Date: Tue, 4 Jun 2024 15:58:33 +0200 Subject: [PATCH] chore(): updated names --- src/rest-client-v2.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rest-client-v2.ts b/src/rest-client-v2.ts index f0cfd9d..59ed470 100644 --- a/src/rest-client-v2.ts +++ b/src/rest-client-v2.ts @@ -173,7 +173,7 @@ export class RestClientV2 extends BaseRestClient { * */ - getBGBConvertCoins(): Promise> { + getConvertBGBCoins(): Promise> { 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> { + getConvertBGBHistory(params: object): Promise> { return this.getPrivate(`/api/v2/convert/bgb-convert-records`, params); }