chia-agent 13.2.0-beta.0 → 13.2.0-beta.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
@@ -4,6 +4,8 @@
4
4
  ### Added
5
5
  - [FullNode RPC API](./src/api/rpc/full_node)
6
6
  - [`get_block_spends_with_conditions`](./src/api/rpc/full_node/README.md#get_block_spends_with_conditionsagent-params)
7
+ ### Fixed
8
+ - Typo in SpendBundle: `cons_spends` renamed to `coin_spends`
7
9
 
8
10
  ## [13.1.0]
9
11
  ### Added
@@ -1,6 +1,6 @@
1
1
  import { G2Element } from "./_python_types_";
2
2
  import { CoinSpend } from "./coin_spend";
3
3
  export declare type SpendBundle = {
4
- cons_spends: CoinSpend[];
4
+ coin_spends: CoinSpend[];
5
5
  aggregated_signature: G2Element;
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chia-agent",
3
- "version": "13.2.0-beta.0",
3
+ "version": "13.2.0-beta.1",
4
4
  "author": "ChiaMineJP <admin@chiamine.jp>",
5
5
  "description": "chia rpc/websocket client library",
6
6
  "license": "MIT",