chia-agent 13.0.0 → 13.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [13.0.1]
4
+ ### Changed
5
+ - [Daemon WebSocket API](./src/api/ws/daemon)
6
+ - [`start_plotting`](./src/api/ws/daemon/README.md#start_plottingdaemon-params)
7
+ - `no_direct_downloads` has been removed from `TBladeBitCudaParams`
8
+
3
9
  ## [13.0.0]
4
10
  ### Breaking change
5
11
  - The format of [`PoolState`](./src/api/chia/farmer/farmer.ts)) has been changed.
@@ -1127,7 +1133,8 @@ daemon.sendMessage(destination, get_block_record_by_height_command, data);
1127
1133
  Initial release.
1128
1134
 
1129
1135
  <!-- [Unreleased]: https://github.com/Chia-Mine/chia-agent/compare/v0.0.1...v0.0.2 -->
1130
- [12.2.0]: https://github.com/Chia-Mine/chia-agent/compare/v12.1.0...v13.0.0
1136
+ [13.0.1]: https://github.com/Chia-Mine/chia-agent/compare/v13.0.0...v13.0.1
1137
+ [13.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v12.1.0...v13.0.0
1131
1138
  [12.1.0]: https://github.com/Chia-Mine/chia-agent/compare/v12.0.1...v12.1.0
1132
1139
  [12.0.1]: https://github.com/Chia-Mine/chia-agent/compare/v12.0.0...v12.0.1
1133
1140
  [12.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v11.1.1...v12.0.0
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  [![npm version](https://badge.fury.io/js/chia-agent.svg)](https://badge.fury.io/js/chia-agent) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3
3
 
4
4
  chia rpc/websocket client library for NodeJS.
5
- Supports all RPC/Websocket API available at `chia 2.0.0`.
5
+ Supports all RPC/Websocket API available at `chia 2.0.1`.
6
6
  \(If you need previous version, search for the corresponding release [here](https://github.com/Chia-Mine/chia-agent/releases)\)
7
7
 
8
8
  you can develop your own nodejs script with `chia-agent` to:
@@ -22,8 +22,8 @@ yarn add chia-agent
22
22
 
23
23
  ## Compatibility
24
24
  This code is compatible with:
25
- - [`dc46f46b9a30628b208d38fd7dd0ca085e820781`](https://github.com/Chia-Network/chia-blockchain/tree/dc46f46b9a30628b208d38fd7dd0ca085e820781) of [chia-blockchain 2.0.0](https://github.com/Chia-Network/chia-blockchain)
26
- - [Diff to the main branch of chia-blockchain](https://github.com/Chia-Network/chia-blockchain/compare/dc46f46b9a30628b208d38fd7dd0ca085e820781...main)
25
+ - [`e66f3a9876e9a1c4f3da30dd889d80a8627b6782`](https://github.com/Chia-Network/chia-blockchain/tree/e66f3a9876e9a1c4f3da30dd889d80a8627b6782) of [chia-blockchain 2.0.1](https://github.com/Chia-Network/chia-blockchain)
26
+ - [Diff to the main branch of chia-blockchain](https://github.com/Chia-Network/chia-blockchain/compare/e66f3a9876e9a1c4f3da30dd889d80a8627b6782...main)
27
27
  - [`6c1c7ecd2ed7307760d1673dc2b1057f22e08fd5`](https://github.com/Chia-Network/pool-reference/tree/6c1c7ecd2ed7307760d1673dc2b1057f22e08fd5) of [pool-reference](https://github.com/Chia-Network/pool-reference)
28
28
  - [Diff to the main branch of pool-reference](https://github.com/Chia-Network/pool-reference/compare/6c1c7ecd2ed7307760d1673dc2b1057f22e08fd5...main)
29
29
 
@@ -92,7 +92,6 @@ export declare type TBladeBitCudaParams = {
92
92
  no_cpu_affinity?: bool;
93
93
  compress?: int;
94
94
  device?: int;
95
- no_direct_downloads?: bool;
96
95
  t?: str;
97
96
  t2?: str;
98
97
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chia-agent",
3
- "version": "13.0.0",
3
+ "version": "13.0.1",
4
4
  "author": "ChiaMineJP <admin@chiamine.jp>",
5
5
  "description": "chia rpc/websocket client library",
6
6
  "license": "MIT",