opnet 1.8.3 → 1.8.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.8.3] - 2026-03-09
4
+
5
+ ### Features
6
+
7
+ - fix: prefer normal UTXOs first; add selector ([#142](https://github.com/btc-vision/opnet/pull/142)) by @BlobMaster41
8
+ - feat: submit transaction package ([#143](https://github.com/btc-vision/opnet/pull/143)) by @BlobMaster41
9
+ - fix: support package broadcasts; rename package fields ([#144](https://github.com/btc-vision/opnet/pull/144)) by @BlobMaster41
10
+
11
+ ### Bug Fixes
12
+
13
+ - fix: prefer normal UTXOs first; add selector ([#142](https://github.com/btc-vision/opnet/pull/142)) by @BlobMaster41
14
+ - fix: support package broadcasts; rename package fields ([#144](https://github.com/btc-vision/opnet/pull/144)) by @BlobMaster41
15
+
16
+ ### Documentation
17
+
18
+ - feat: submit transaction package ([#143](https://github.com/btc-vision/opnet/pull/143)) by @BlobMaster41
19
+
20
+
21
+
22
+
3
23
  ## [v1.8.2] - 2026-03-07
4
24
 
5
25
  - No changes
@@ -1 +1 @@
1
- export declare const version = "1.8.3";
1
+ export declare const version = "1.8.5";
@@ -107,6 +107,9 @@ export declare class CallResult<T extends ContractDecodedObjectResult = {}, U ex
107
107
  setEvents(events: U): void;
108
108
  setCalldata(calldata: Uint8Array): void;
109
109
  toOfflineBuffer(refundAddress: string, amount: bigint): Promise<Uint8Array>;
110
+ private max;
111
+ private ensureUTXOsAvailable;
112
+ private computeRequiredAmount;
110
113
  private acquire;
111
114
  private bigintMax;
112
115
  private getValuesFromAccessList;