From 490acacb7ea0f256e33b225dfb3580b20c65512f Mon Sep 17 00:00:00 2001 From: Github Actions Date: Thu, 3 Mar 2022 13:37:06 +0000 Subject: [PATCH] release 1.14.0 --- CHANGELOG.md | 6 +++--- package-lock.json | 2 +- package.json | 2 +- src/fireblocks-sdk.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed5ad0af..4bca1037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,11 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC. -#### [v1.13.0](https://github.com/fireblocks/fireblocks-sdk-js/compare/v1.9.0...v1.13.0) +#### [v1.14.0](https://github.com/fireblocks/fireblocks-sdk-js/compare/v1.9.0...v1.14.0) -> 17 February 2022 +> 3 March 2022 -- added get exchange by asset [`#75`](https://github.com/fireblocks/fireblocks-sdk-js/pull/75) +- Add assetId to gas-station configuration [`#76`](https://github.com/fireblocks/fireblocks-sdk-js/pull/76) #### [v1.9.0](https://github.com/fireblocks/fireblocks-sdk-js/compare/v1.8.2...v1.9.0) diff --git a/package-lock.json b/package-lock.json index 48906f15..34ac51f5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "fireblocks-sdk", - "version": "1.13.0", + "version": "1.14.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0c7a19bd..d3e83851 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fireblocks-sdk", - "version": "1.13.0", + "version": "1.14.0", "main": "dist/fireblocks-sdk.js", "types": "dist/fireblocks-sdk.d.ts", "scripts": { diff --git a/src/fireblocks-sdk.ts b/src/fireblocks-sdk.ts index 639f1b91..02fc35a8 100644 --- a/src/fireblocks-sdk.ts +++ b/src/fireblocks-sdk.ts @@ -756,7 +756,7 @@ export class FireblocksSDK { */ public async getGasStationInfo(assetId?: string): Promise { let url = `/v1/gas_station`; - + if (assetId) { url += `/${assetId}`; }