diff --git a/package.json b/package.json index a1a3d9f..cb7d49b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bnc-notify", - "version": "1.9.3", + "version": "1.9.4", "description": "Show web3 users realtime transaction notifications", "keywords": [ "ethereum", @@ -50,7 +50,7 @@ }, "dependencies": { "bignumber.js": "^9.0.0", - "bnc-sdk": "4.0.0", + "bnc-sdk": "4.1.0", "lodash.debounce": "^4.0.8", "regenerator-runtime": "^0.13.3", "uuid": "^3.3.3" diff --git a/src/interfaces.ts b/src/interfaces.ts index 59dcf1e..f894c6b 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -71,6 +71,10 @@ export interface TransactionData { system?: string inputs?: BitcoinInputOutput[] outputs?: BitcoinInputOutput[] + baseFeePerGasGwei?: number + maxPriorityFeePerGasGwei?: number + maxFeePerGasGwei?: number + gasPriceGwei?: number } export type NotificationType = 'pending' | 'success' | 'error' | 'hint'