chia-agent 16.1.1 → 16.1.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/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.2]
|
|
4
|
+
### Fixed
|
|
5
|
+
- Fixed `TGetCoinRecordsByPuzzleHashRequest` type definition
|
|
6
|
+
- Made `start_height`, `end_height`, and `include_spent_coins` optional parameters
|
|
7
|
+
|
|
3
8
|
## [16.1.1]
|
|
4
9
|
### Fixed
|
|
5
10
|
- Fixed incorrect response type for [`get_auto_farming`](./src/api/rpc/full_node/README.md#get_auto_farmingagent)
|
|
@@ -198,9 +198,9 @@ export declare const get_coin_records_by_puzzle_hash_command = "get_coin_records
|
|
|
198
198
|
export type get_coin_records_by_puzzle_hash_command = typeof get_coin_records_by_puzzle_hash_command;
|
|
199
199
|
export type TGetCoinRecordsByPuzzleHashRequest = {
|
|
200
200
|
puzzle_hash: str;
|
|
201
|
-
start_height
|
|
202
|
-
end_height
|
|
203
|
-
include_spent_coins
|
|
201
|
+
start_height?: uint32;
|
|
202
|
+
end_height?: uint32;
|
|
203
|
+
include_spent_coins?: bool;
|
|
204
204
|
};
|
|
205
205
|
export type TGetCoinRecordsByPuzzleHashResponse = {
|
|
206
206
|
coin_records: CoinRecordBackwardCompatible[];
|