chia-agent 9.0.0 → 9.0.1
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 +10 -0
- package/api/ws/wallet/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [9.0.1]
|
|
4
|
+
### Fixed
|
|
5
|
+
- Fixed an issue where wallet `state_changed` events(notified via WebSocket API) below were missing.
|
|
6
|
+
- did_coin_added
|
|
7
|
+
- nft_coin_added
|
|
8
|
+
- nft_coin_removed
|
|
9
|
+
- nft_coin_updated
|
|
10
|
+
- nft_coin_did_set
|
|
11
|
+
|
|
3
12
|
## [9.0.0]
|
|
4
13
|
### Breaking Change
|
|
5
14
|
`series_total` and `series_number` in `NFTInfo` class have been renamed to `edition_total` and `edition_number`
|
|
@@ -571,6 +580,7 @@ daemon.sendMessage(destination, get_block_record_by_height_command, data);
|
|
|
571
580
|
Initial release.
|
|
572
581
|
|
|
573
582
|
<!-- [Unreleased]: https://github.com/Chia-Mine/chia-agent/compare/v0.0.1...v0.0.2 -->
|
|
583
|
+
[9.0.1]: https://github.com/Chia-Mine/chia-agent/compare/v9.0.0...v9.0.1
|
|
574
584
|
[9.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v8.0.0...v9.0.0
|
|
575
585
|
[8.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v7.0.0...v8.0.0
|
|
576
586
|
[7.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v6.0.0...v7.0.0
|
package/api/ws/wallet/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare type state_changed_command_of_wallet = typeof state_changed_comma
|
|
|
15
15
|
export declare type TStateChangedBroadCastOfWallet = {
|
|
16
16
|
state: "add_connection" | "new_block" | "wallet_created" | "added_stray_cat";
|
|
17
17
|
} | {
|
|
18
|
-
state: "coin_removed" | "coin_added" | "pending_transaction";
|
|
18
|
+
state: "coin_removed" | "coin_added" | "pending_transaction" | "did_coin_added" | "nft_coin_added" | "nft_coin_removed" | "nft_coin_updated" | "nft_coin_did_set";
|
|
19
19
|
wallet_id: uint32;
|
|
20
20
|
} | {
|
|
21
21
|
state: "tx_update";
|