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); }