@atomiqlabs/base 7.2.0 → 7.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,8 +21,10 @@ export type BtcVin = {
21
21
  export type BtcTx = {
22
22
  blockhash: string;
23
23
  confirmations: number;
24
+ vsize: number;
24
25
  txid: string;
25
26
  hex: string;
27
+ raw: string;
26
28
  outs: BtcVout[];
27
29
  ins: BtcVin[];
28
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomiqlabs/base",
3
- "version": "7.2.0",
3
+ "version": "7.2.2",
4
4
  "description": "Base classes and interfaces for atomiq protocol",
5
5
  "main": "./dist/index.js",
6
6
  "types:": "./dist/index.d.ts",
@@ -24,8 +24,10 @@ export type BtcVin = {
24
24
  export type BtcTx = {
25
25
  blockhash: string,
26
26
  confirmations: number,
27
+ vsize: number,
27
28
  txid: string,
28
- hex: string
29
+ hex: string,
30
+ raw: string,
29
31
 
30
32
  outs: BtcVout[],
31
33
  ins: BtcVin[]