chia-agent 16.1.3 → 16.1.4
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 +5 -0
- package/api/rpc/full_node/index.d.ts +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [16.1.4]
|
|
4
|
+
### Fixed
|
|
5
|
+
- Fixed `TGetCoinRecordsByPuzzleHashesRequest` type definition
|
|
6
|
+
- Made `start_height`, `end_height`, and `include_spent_coins` optional parameters
|
|
7
|
+
|
|
3
8
|
## [16.1.3]
|
|
4
9
|
### Fixed
|
|
5
10
|
- RPC failures now reject with a typed `RpcError` instead of a raw response object
|
|
@@ -211,9 +211,9 @@ export declare const get_coin_records_by_puzzle_hashes_command = "get_coin_recor
|
|
|
211
211
|
export type get_coin_records_by_puzzle_hashes_command = typeof get_coin_records_by_puzzle_hashes_command;
|
|
212
212
|
export type TGetCoinRecordsByPuzzleHashesRequest = {
|
|
213
213
|
puzzle_hashes: str[];
|
|
214
|
-
start_height
|
|
215
|
-
end_height
|
|
216
|
-
include_spent_coins
|
|
214
|
+
start_height?: uint32;
|
|
215
|
+
end_height?: uint32;
|
|
216
|
+
include_spent_coins?: bool;
|
|
217
217
|
};
|
|
218
218
|
export type TGetCoinRecordsByPuzzleHashesResponse = {
|
|
219
219
|
coin_records: CoinRecordBackwardCompatible[];
|