@btc-vision/bitcoin 6.4.5 → 6.4.7

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.
@@ -70,6 +70,11 @@ export class Transaction {
70
70
  static readonly SIGHASH_INPUT_MASK = 0x80;
71
71
  static readonly ADVANCED_TRANSACTION_MARKER = 0x00;
72
72
  static readonly ADVANCED_TRANSACTION_FLAG = 0x01;
73
+
74
+ static readonly TRUC_VERSION = 3;
75
+ static readonly TRUC_MAX_VSIZE = 10000;
76
+ static readonly TRUC_CHILD_MAX_VSIZE = 1000;
77
+
73
78
  version: number = 1;
74
79
  locktime: number = 0;
75
80
  ins: Input[] = [];