@caravan/psbt 2.0.0 → 2.0.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.
package/dist/index.d.ts CHANGED
@@ -511,6 +511,7 @@ interface LegacyInput {
511
511
  transactionHex: string;
512
512
  amountSats: number | string;
513
513
  multisig: LegacyMultisig;
514
+ sequence?: number;
514
515
  }
515
516
  interface LegacyOutput {
516
517
  address: string;
package/dist/index.js CHANGED
@@ -123663,6 +123663,7 @@ inputs to protect against large fee attack`);
123663
123663
  index: input.index,
123664
123664
  transactionHex: fundingTxHex,
123665
123665
  txid: (0, import_bufferutils.reverseBuffer)(input.hash).toString("hex"),
123666
+ sequence: input.sequence,
123666
123667
  multisig
123667
123668
  };
123668
123669
  });
package/dist/index.mjs CHANGED
@@ -123642,6 +123642,7 @@ inputs to protect against large fee attack`);
123642
123642
  index: input.index,
123643
123643
  transactionHex: fundingTxHex,
123644
123644
  txid: reverseBuffer(input.hash).toString("hex"),
123645
+ sequence: input.sequence,
123645
123646
  multisig
123646
123647
  };
123647
123648
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caravan/psbt",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "typescript library for working with PSBTs",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -64,6 +64,6 @@
64
64
  "typescript": "^5.3.3"
65
65
  },
66
66
  "peerDependencies": {
67
- "@caravan/bitcoin": "0.4.0"
67
+ "@caravan/bitcoin": "0.4.1"
68
68
  }
69
69
  }