Skip to content

Commit

Permalink
Merge pull request #106 from p-maguire/SP-933
Browse files Browse the repository at this point in the history
SP-933: Update satoshisPerByte to float and bump version
  • Loading branch information
bobbrodie authored May 7, 2024
2 parents e699d16 + 89cfaa9 commit b7d5add
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bitpay-sdk",
"version": "5.0.1",
"version": "5.0.2",
"description": "Complete version of the NodeJS library for the new cryptographically secure BitPay API",
"main": "dist/index",
"typings": "dist/index",
Expand Down
2 changes: 1 addition & 1 deletion src/Env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const Prod = 'PROD';
export const TestUrl = 'https://test.bitpay.com/';
export const ProdUrl = 'https://bitpay.com/';
export const BitpayApiVersion = '2.0.0';
export const BitpayPluginInfo = 'BitPay_NodeJs_Client_v5.0.1';
export const BitpayPluginInfo = 'BitPay_NodeJs_Client_v5.0.2';
export const BitpayApiFrame = 'std';
export const BitpayApiFrameVersion = '1.0.0';

Expand Down
2 changes: 1 addition & 1 deletion src/Model/Invoice/MinerFeesItem.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export interface MinerFeesItem {
satoshisPerByte: bigint;
satoshisPerByte: number;
totalFee: bigint;
fiatAmount: number;
}

0 comments on commit b7d5add

Please sign in to comment.