chia-agent 19.1.0 → 20.0.0

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,62 @@
1
1
  # Changelog
2
2
 
3
+ ## [20.0.0]
4
+ ### Breaking change
5
+ - Fixed unsound `int` typing on numeric fields that can exceed `Number.MAX_SAFE_INTEGER` (`2^53 - 1`)
6
+ - The RPC JSON parser (`@chiamine/json-bigint`, `alwaysParseAsBig: false`) returns a `BigInt` for any
7
+ integer above `2^53 - 1` (≈ 9,007 XCH expressed in mojos). Fields that are `uint64` upstream had been
8
+ typed `int` (= `number`), which hid that a `BigInt` can be returned and could mistype values at runtime.
9
+ - Retyped these fields from `int` to `uint64` (= `number | bigint`), matching upstream and the parser's
10
+ actual behavior. To read one as a `bigint`, just wrap it with the built-in `BigInt(x)` — it accepts
11
+ both `number` and `bigint`, so no `typeof` branching is needed (`alwaysParseAsBig` stays `false`, so
12
+ small fields like heights/ids/counts remain plain `number`).
13
+ - Response fields affected:
14
+ - `get_farmed_amount`: `farmed_amount`, `pool_reward_amount`, `farmer_reward_amount`, `fee_amount`
15
+ - `get_offer_summary`: `fees`; `TradeRecord`: `fees`, `pending` (`Record<str, uint64>`)
16
+ - `get_blockchain_state`: `mempool_fees`, `mempool_max_total_cost`, `block_max_cost`, `node_time_utc`, `last_block_cost`
17
+ - Full Node WS mempool broadcast: `mempool_cost`, `mempool_max_total_cost`, `block_max_cost`, `transaction_generator_size_bytes`
18
+ - Data Layer: `total_bytes`
19
+ - Harvester `Plot`: `file_size`, `time_modified`; plot-sync: `total_plot_size`, `total_effective_plot_size`
20
+ - Connection info: `bytes_read`, `bytes_written`
21
+ - Request fields affected (now accept `number | bigint`):
22
+ - `send_transaction` `amount`, `create_new_wallet` (DID) `amount`, `fee`, and `create_offer_for_ids` `offer` values (`Record<str, str | uint64>`)
23
+ - Corrected `TradeRecord` `summary.offered` / `summary.requested` from `Record<str, int>` to `Record<str, str>`
24
+ - These offer amounts are serialized as **strings** on the wire (since chia-blockchain 2.6.0, like
25
+ `get_offer_summary`); they had been mistyped as numbers. (Not a `BigInt` issue — a string-vs-number fix.)
26
+
27
+ ## [19.2.0]
28
+ Support for [`chia-blockchain@2.7.1`](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.7.1)
29
+
30
+ ### Added
31
+ - New Wallet RPC API [`get_puzzle_and_solution`](./src/api/rpc/wallet/README.md#get_puzzle_and_solutionagent-params)
32
+ - exported as `get_puzzle_and_solution_of_wallet` from `chia-agent/api/rpc`
33
+ (the Full Node RPC API of the same name keeps the plain export)
34
+ - `get_height_info`
35
+ - New optional request parameter `use_peak_height`
36
+ - Response now includes `latest_timestamp`, `is_transaction_block` and `prev_transaction_block_height`
37
+ - `CoinSelectionConfig`: new optional `included_coin_ids` and `primary_coin` request fields,
38
+ accepted by all transaction endpoints as well as `select_coins` and `get_spendable_coins`
39
+ - New optional `allow_unsynced` request field on all transaction endpoints,
40
+ `select_coins`, `get_spendable_coins` and `get_coin_records_by_names`
41
+ - All transaction endpoint responses now include `sync_status`
42
+ (`0=SYNCED, 1=SLIGHTLY_BEHIND, 2=LONG_SYNC, 3=DISCONNECTED`)
43
+
44
+ ### Changed
45
+ - Synchronized with `chia_rs@0.42.1` (no type definition changes were required)
46
+ - Several integer fields were widened from `uint16` to `uint32` upstream
47
+ (`get_transaction_count.count`, `get_offers_count` counters, `nft_set_did_bulk` / `nft_transfer_bulk` `tx_num`,
48
+ `nft_mint_bulk` `mint_number_start` / `mint_total`, `get_all_offers` `start` / `end`)
49
+ - `get_height_info` now sends its request body (previously the optional request object was ignored)
50
+ - Removed `chia/consensus/cost_calculator` to match chia-blockchain 2.7.1, which deleted
51
+ `chia/consensus/cost_calculator.py`
52
+ - The `NPCResult` type it held moved to `chia/types/mempool_item` (its only consumer); import it
53
+ from there instead of `chia-agent/api/chia/consensus/cost_calculator`
54
+ - Corrected the mempool `npc_result` field name from `error` to `Error` to match the wire
55
+ - Relocated `CoinRecord` / `CoinRecordBackwardCompatible` from `chia/types/coin_record` to
56
+ `chia_rs/chia-protocol/coin_record`, reflecting that `CoinRecord` moved into `chia_rs` upstream
57
+ (chia-blockchain deleted `chia/types/coin_record.py` in 2.6.0). The type shape is unchanged; only
58
+ the import path changed (`chia-agent/api/chia_rs/chia-protocol/coin_record`)
59
+
3
60
  ## [19.1.0]
4
61
  Support for [`chia-blockchain@2.7.0`](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.7.0)
5
62
 
@@ -2082,6 +2139,8 @@ daemon.sendMessage(destination, get_block_record_by_height_command, data);
2082
2139
  Initial release.
2083
2140
 
2084
2141
  <!-- [Unreleased]: https://github.com/Chia-Mine/chia-agent/compare/v0.0.1...v0.0.2 -->
2142
+ [20.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v19.2.0...v20.0.0
2143
+ [19.2.0]: https://github.com/Chia-Mine/chia-agent/compare/v19.1.0...v19.2.0
2085
2144
  [19.1.0]: https://github.com/Chia-Mine/chia-agent/compare/v19.0.0...v19.1.0
2086
2145
  [19.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v18.0.0...v19.0.0
2087
2146
  [18.0.0]: https://github.com/Chia-Mine/chia-agent/compare/v17.0.0...v18.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 `2.7.0` of [`chia-blockchain`](https://github.com/Chia-Network/chia-blockchain/).
5
+ Supports all RPC/Websocket API available at `2.7.1` of [`chia-blockchain`](https://github.com/Chia-Network/chia-blockchain/).
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,10 +22,10 @@ yarn add chia-agent
22
22
 
23
23
  ## Compatibility
24
24
  This code is compatible with:
25
- - [`ab8090a653768d835f07cca106ea7602538a761b`](https://github.com/Chia-Network/chia-blockchain/tree/ab8090a653768d835f07cca106ea7602538a761b) of [chia-blockchain 2.7.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/ab8090a653768d835f07cca106ea7602538a761b...main)
27
- - [`1143ff126a63de7732c1ecb672dfe0aa734c078f`](https://github.com/Chia-Network/chia_rs/tree/1143ff126a63de7732c1ecb672dfe0aa734c078f) of [chia_rs 0.41.1](https://github.com/Chia-Network/chia_rs)
28
- - [Diff to the main branch of chia_rs](https://github.com/Chia-Network/chia_rs/compare/1143ff126a63de7732c1ecb672dfe0aa734c078f...main)
25
+ - [`560a4ab7a96b619bafd4efd5aa2f2e5c8cffea67`](https://github.com/Chia-Network/chia-blockchain/tree/560a4ab7a96b619bafd4efd5aa2f2e5c8cffea67) of [chia-blockchain 2.7.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/560a4ab7a96b619bafd4efd5aa2f2e5c8cffea67...main)
27
+ - [`746c6888b685fec4827aacb942803022842ffe71`](https://github.com/Chia-Network/chia_rs/tree/746c6888b685fec4827aacb942803022842ffe71) of [chia_rs 0.42.1](https://github.com/Chia-Network/chia_rs)
28
+ - [Diff to the main branch of chia_rs](https://github.com/Chia-Network/chia_rs/compare/746c6888b685fec4827aacb942803022842ffe71...main)
29
29
  - [`ef49150171cc243b09c0e5d5cb27f2249ffa3793`](https://github.com/Chia-Network/pool-reference/tree/ef49150171cc243b09c0e5d5cb27f2249ffa3793) of [pool-reference](https://github.com/Chia-Network/pool-reference)
30
30
  - [Diff to the main branch of pool-reference](https://github.com/Chia-Network/pool-reference/compare/ef49150171cc243b09c0e5d5cb27f2249ffa3793...main)
31
31
 
@@ -1,6 +1,6 @@
1
1
  import { bytes, Optional, str } from "../types/_python_types_";
2
2
  import { G1Element } from "../../chia_rs/chia-bls/lib";
3
- import { int } from "../../chia_rs/wheel/python/sized_ints";
3
+ import { int, uint64 } from "../../chia_rs/wheel/python/sized_ints";
4
4
  import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
5
5
  export type Plot = {
6
6
  filename: str;
@@ -9,7 +9,7 @@ export type Plot = {
9
9
  pool_public_key: Optional<G1Element>;
10
10
  pool_contract_puzzle_hash: Optional<bytes32>;
11
11
  plot_public_key: G1Element;
12
- file_size: int;
13
- time_modified: int;
12
+ file_size: uint64;
13
+ time_modified: uint64;
14
14
  compression_level: int;
15
15
  };
@@ -1,6 +1,6 @@
1
1
  import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
2
2
  import { bool, float, None, Optional, str } from "../types/_python_types_";
3
- import { int, uint32 } from "../../chia_rs/wheel/python/sized_ints";
3
+ import { int, uint32, uint64 } from "../../chia_rs/wheel/python/sized_ints";
4
4
  import { Plot } from "../protocols/harvester_protocol";
5
5
  import { HarvestingMode } from "../plotting/util";
6
6
  export type MayBeSummary<S, O> = S extends true ? int : O;
@@ -14,8 +14,8 @@ export type Receiver<SUMMARY extends boolean = false> = {
14
14
  failed_to_open_filenames: MayBeSummary<SUMMARY, str[]>;
15
15
  no_key_filenames: MayBeSummary<SUMMARY, str[]>;
16
16
  duplicates: MayBeSummary<SUMMARY, str[]>;
17
- total_plot_size: int;
18
- total_effective_plot_size: int;
17
+ total_plot_size: uint64;
18
+ total_effective_plot_size: uint64;
19
19
  syncing: {
20
20
  initial: bool;
21
21
  plot_files_processed: uint32;
@@ -1,7 +1,7 @@
1
1
  import { bool, Optional, str } from "../types/_python_types_";
2
2
  import { PrivateKey } from "../../chia_rs/chia-bls/secret_key";
3
3
  import { G1Element } from "../../chia_rs/chia-bls/lib";
4
- import { uint16, uint32, uint64 } from "../../chia_rs/wheel/python/sized_ints";
4
+ import { int, uint16, uint32, uint64 } from "../../chia_rs/wheel/python/sized_ints";
5
5
  import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
6
6
  import { Notification } from "../wallet/notification_store";
7
7
  import { SignedTransaction, SigningInstructions, SigningResponse, Spend, UnsignedTransaction } from "../wallet/signer_protocol";
@@ -73,12 +73,15 @@ export type ExecuteSigningInstructionsResponseCHIP0029 = {
73
73
  export type TransactionEndpointRequest = {
74
74
  fee: uint64;
75
75
  push?: bool;
76
+ allow_unsynced?: bool;
76
77
  };
77
78
  export type TransactionEndpointResponse = {
79
+ sync_status: int;
78
80
  unsigned_transactions: UnsignedTransaction[];
79
81
  transactions: TransactionRecord[];
80
82
  };
81
83
  export type TransactionEndpointResponseCHIP0029 = {
84
+ sync_status: int;
82
85
  unsigned_transactions: str[];
83
86
  transactions: TransactionRecord[];
84
87
  };
@@ -235,9 +238,14 @@ export type GetSyncStatusResponse = {
235
238
  syncing: bool;
236
239
  genesis_initialized: bool;
237
240
  };
238
- export type GetHeightInfo = Marshall;
241
+ export type GetHeightInfo = {
242
+ use_peak_height?: bool;
243
+ } & Marshall;
239
244
  export type GetHeightInfoResponse = {
240
245
  height: uint32;
246
+ latest_timestamp: uint64;
247
+ is_transaction_block: Optional<bool>;
248
+ prev_transaction_block_height: Optional<uint32>;
241
249
  };
242
250
  export type PushTX = {
243
251
  spend_bundle: WalletSpendBundle | str;
@@ -1,4 +1,5 @@
1
1
  import { bool, False, str, True } from "../types/_python_types_";
2
+ import { int } from "../../chia_rs/wheel/python/sized_ints";
2
3
  import { TXConfigLoader, TXEndpointForCompat } from "../wallet/util/tx_config";
3
4
  import { ConditionValidTimes } from "../wallet/conditions";
4
5
  import { UnsignedTransaction } from "../wallet/signer_protocol";
@@ -10,6 +11,7 @@ export type TXEndpointRequestBase = {
10
11
  merge_spends?: bool;
11
12
  sign?: bool;
12
13
  translation?: TranslationLayerKey;
14
+ allow_unsynced?: bool;
13
15
  } & TXConfigLoader & TXEndpointForCompat & Partial<ConditionValidTimes>;
14
16
  export type TXEndpointRequest = TXEndpointRequestBase & ({
15
17
  "CHIP-0029": True;
@@ -19,6 +21,8 @@ export type TXEndpointRequest = TXEndpointRequestBase & ({
19
21
  export type CHIP0029UnsignedTransaction<T extends TXEndpointRequest> = T extends {
20
22
  "CHIP-0029": True;
21
23
  } ? str[] : UnsignedTransaction[];
24
+ export type SyncStatus = 0 | 1 | 2 | 3;
22
25
  export type TxeResp<Req extends TXEndpointRequest, Res> = {
23
26
  unsigned_transactions: CHIP0029UnsignedTransaction<Req>;
27
+ sync_status: SyncStatus | int;
24
28
  } & Res;
@@ -1,11 +1,14 @@
1
1
  import { Coin } from "./blockchain_format/coin";
2
2
  import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
3
- import { NPCResult } from "../consensus/cost_calculator";
4
3
  import { bool, Optional } from "./_python_types_";
5
- import { uint32, uint64 } from "../../chia_rs/wheel/python/sized_ints";
4
+ import { uint16, uint32, uint64 } from "../../chia_rs/wheel/python/sized_ints";
6
5
  import { CoinSpend } from "../../chia_rs/chia-protocol/coin_spend";
7
6
  import { SpendBundle } from "../../chia_rs/chia-protocol/spend_bundle";
8
7
  import { SpendBundleConditions } from "../../chia_rs/chia-consensus/owned_conditions";
8
+ export type NPCResult = {
9
+ Error: Optional<uint16>;
10
+ conds: Optional<SpendBundleConditions>;
11
+ };
9
12
  export type UnspentLineageInfo = {
10
13
  coin_id: bytes32;
11
14
  parent_id: bytes32;
@@ -1,5 +1,5 @@
1
1
  import { bool, bytes, Optional, str } from "../types/_python_types_";
2
- import { int, uint32, uint64, uint8 } from "../../chia_rs/wheel/python/sized_ints";
2
+ import { uint32, uint64, uint8 } from "../../chia_rs/wheel/python/sized_ints";
3
3
  import { Coin } from "../types/blockchain_format/coin";
4
4
  import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
5
5
  import { TDriverDict } from "./puzzle_drivers";
@@ -23,10 +23,10 @@ export type TradeRecord = TradeRecordOld & {
23
23
  export type TradeRecordConvenience = {
24
24
  status: str;
25
25
  summary: {
26
- offered: Record<str, int>;
27
- requested: Record<str, int>;
26
+ offered: Record<str, str>;
27
+ requested: Record<str, str>;
28
28
  infos: TDriverDict;
29
- fees: int;
29
+ fees: uint64;
30
30
  };
31
- pending: Record<str, int>;
31
+ pending: Record<str, uint64>;
32
32
  } & Omit<TradeRecord, "offer">;
@@ -6,6 +6,8 @@ export type CoinSelectionConfigLoader = {
6
6
  max_coin_amount?: Optional<uint64>;
7
7
  excluded_coin_amounts?: Optional<uint64[]>;
8
8
  excluded_coin_ids?: Optional<bytes32[]>;
9
+ included_coin_ids?: Optional<bytes32[]>;
10
+ primary_coin?: Optional<bytes32>;
9
11
  };
10
12
  export type TXEndpointForCompat = {
11
13
  exclude_coin_ids?: Optional<bytes32[]>;
@@ -1,6 +1,6 @@
1
- import { Coin } from "./blockchain_format/coin";
2
- import { bool } from "./_python_types_";
3
- import { uint32, uint64 } from "../../chia_rs/wheel/python/sized_ints";
1
+ import { Coin } from "./coin";
2
+ import { bool } from "../../chia/types/_python_types_";
3
+ import { uint32, uint64 } from "../wheel/python/sized_ints";
4
4
  export type CoinRecord = {
5
5
  coin: Coin;
6
6
  confirmed_block_index: uint32;
@@ -123,7 +123,7 @@ export type TGetKeysResponse = {
123
123
  } | {
124
124
  keys: str[];
125
125
  total_pages: int;
126
- total_bytes: int;
126
+ total_bytes: uint64;
127
127
  root_hash: Optional<bytes32>;
128
128
  };
129
129
  export type WsGetKeysMessage = GetMessageType<chia_data_layer_service, get_keys_command, TGetKeysResponse>;
@@ -149,7 +149,7 @@ export type TGetKeysValuesResponse = {
149
149
  value: str;
150
150
  }>;
151
151
  total_pages: int;
152
- total_bytes: int;
152
+ total_bytes: uint64;
153
153
  root_hash: Optional<bytes32>;
154
154
  };
155
155
  export type WsGetKeysValuesMessage = GetMessageType<chia_data_layer_service, get_keys_values_command, TGetKeysValuesResponse>;
@@ -323,7 +323,7 @@ export type TGetKvDiffResponse = {
323
323
  value: str;
324
324
  }>;
325
325
  total_pages: int;
326
- total_bytes: int;
326
+ total_bytes: uint64;
327
327
  };
328
328
  export type WsGetKvDiffMessage = GetMessageType<chia_data_layer_service, get_kv_diff_command, TGetKvDiffResponse>;
329
329
  export declare function get_kv_diff<T extends TRPCAgent | TDaemon>(agent: T, params: TGetKvDiffRequest): Promise<ResType<T, TGetKvDiffResponse, WsGetKvDiffMessage>>;
@@ -3,7 +3,7 @@ import { BlockRecord } from "../../chia_rs/chia-protocol/block_record";
3
3
  import { bool, float, Optional, str } from "../../chia/types/_python_types_";
4
4
  import { int, uint128, uint32, uint64 } from "../../chia_rs/wheel/python/sized_ints";
5
5
  import { UnfinishedHeaderBlock } from "../../chia/types/unfinished_header_block";
6
- import { CoinRecord, CoinRecordBackwardCompatible } from "../../chia/types/coin_record";
6
+ import { CoinRecord, CoinRecordBackwardCompatible } from "../../chia_rs/chia-protocol/coin_record";
7
7
  import { SpendBundle } from "../../chia_rs/chia-protocol/spend_bundle";
8
8
  import { bytes32 } from "../../chia_rs/wheel/python/sized_bytes";
9
9
  import { MempoolItemInJsonDict } from "../../chia/types/mempool_item";
@@ -38,12 +38,12 @@ export type TGetBlockchainStateResponse = {
38
38
  average_block_time: Optional<uint32>;
39
39
  mempool_size: int;
40
40
  mempool_cost: CLVMCost;
41
- mempool_fees: int;
41
+ mempool_fees: uint64;
42
42
  mempool_min_fees: {
43
43
  cost_5000000: float;
44
44
  };
45
- mempool_max_total_cost: int;
46
- block_max_cost: int;
45
+ mempool_max_total_cost: uint64;
46
+ block_max_cost: uint64;
47
47
  node_id: str;
48
48
  };
49
49
  };
@@ -354,14 +354,14 @@ export type TGetFeeEstimateResponse = {
354
354
  target_times: int[];
355
355
  current_fee_rate: uint64;
356
356
  mempool_size: CLVMCost;
357
- mempool_fees: int;
357
+ mempool_fees: uint64;
358
358
  num_spends: int;
359
359
  mempool_max_size: CLVMCost;
360
360
  full_node_synced: bool;
361
361
  peak_height: uint32;
362
362
  last_peak_timestamp: uint64;
363
- node_time_utc: int;
364
- last_block_cost: int;
363
+ node_time_utc: uint64;
364
+ last_block_cost: uint64;
365
365
  fees_last_block: uint64;
366
366
  fee_rate_last_block: float;
367
367
  last_tx_block_height: int;
@@ -5,7 +5,7 @@ export { chia_full_node_service, TGetAdditionsAndRemovalsRequest, TGetAdditionsA
5
5
  import type { RpcHarvesterMessage } from "./harvester/index";
6
6
  export { chia_harvester_service, TAddPlotDirectoryRequest, TAddPlotDirectoryResponse, add_plot_directory, TDeletePlotRequest, TDeletePlotResponse, delete_plot, TGetPlotDirectoriesResponse, get_plot_directories, TGetPlotsResponse, get_plots, TRefreshPlotsResponse, refresh_plots, TRemovePlotDirectoryRequest, TRemovePlotDirectoryResponse, remove_plot_directory, TGetHarvesterConfigResponse, get_harvester_config, TUpdateHarvesterConfigRequest, TUpdateHarvesterConfigResponse, update_harvester_config, } from "./harvester/index";
7
7
  import type { RpcWalletMessage } from "./wallet/index";
8
- export { chia_wallet_service, TAddKeyRequest, TAddKeyResponse, add_key, TAddRateLimitedFundsRequest, TAddRateLimitedFundsResponse, add_rate_limited_funds, TAdditions, TCancelOfferRequest, TCancelOfferResponse, cancel_offer, TCancelOffersRequest, TCancelOffersResponse, cancel_offers, TCatGetAssetIdRequest, TCatGetAssetIdResponse, cat_get_asset_id, TCatGetNameRequest, TCatGetNameResponse, cat_get_name, TGetStrayCatsResponse, get_stray_cats, TCatAssetIdToNameRequest, TCatAssetIdToNameResponse, cat_asset_id_to_name, TCatSetNameRequest, TCatSetNameResponse, cat_set_name, TCatSpendRequest, TCatSpendResponse, cat_spend, TCheckOfferValidityRequest, TCheckOfferValidityResponse, check_offer_validity, TCreateNewWalletRequest, TCreateNewWalletResponse, create_new_wallet, TRegisterRemoteCoinsRequest, TRegisterRemoteCoinsResponse, register_remote_coins, TCreateOfferForIdsRequest, TCreateOfferForIdsResponse, create_offer_for_ids, TCreateSignedTransactionRequest, TCreateSignedTransactionResponse, create_signed_transaction, TDeleteUnconfirmedTransactionsRequest, TDeleteUnconfirmedTransactionsResponse, delete_unconfirmed_transactions, TSelectCoinsRequest, TSelectCoinsResponse, select_coins, TGetCurrentDerivationIndexResponse, get_current_derivation_index, TExtendDerivationIndexRequest, TExtendDerivationIndexResponse, extend_derivation_index, TGetNotificationsRequest, TGetNotificationsResponse, get_notifications, TDeleteNotificationsRequest, TDeleteNotificationsResponse, delete_notifications, TSendNotificationRequest, TSendNotificationResponse, send_notification, TSignMessageByAddressRequest, TSignMessageByAddressResponse, sign_message_by_address, TSignMessageByIdRequest, TSignMessageByIdResponse, sign_message_by_id, TVerifySignatureRequest, TVerifySignatureResponse, verify_signature, TGetTransactionMemoRequest, TGetTransactionMemoResponse, get_transaction_memo, TSplitCoinsRequest, TSplitCoinsResponse, split_coins, TCombineCoinsRequest, TCombineCoinsResponse, combine_coins, TNftCalculateRoyaltiesRequest, TNftCalculateRoyaltiesResponse, nft_calculate_royalties, TNftMintBulkRequest, TNftMintBulkResponse, nft_mint_bulk, TNftSetDidBulkRequest, TNftSetDidBulkResponse, nft_set_did_bulk, TNftTransferBulkRequest, TNftTransferBulkResponse, nft_transfer_bulk, TCreate_New_CAT_WalletRequest, TCreate_New_CAT_WalletResponse, TCreate_New_DID_WalletRequest, TCreate_New_DID_WalletResponse, TDeleteAllKeysResponse, delete_all_keys, TSetWalletResyncOnStartupRequest, TSetWalletResyncOnStartupResponse, set_wallet_resync_on_startup, TDeleteKeyRequest, TDeleteKeyResponse, delete_key, TDidSetWalletNameRequest, TDidSetWalletNameResponse, did_set_wallet_name, TDidGetWalletNameRequest, TDidGetWalletNameResponse, did_get_wallet_name, TDidCreateBackupFileRequest, TDidCreateBackupFileResponse, did_create_backup_file, TDidTransferDidRequest, TDidTransferDidResponse, did_transfer_did, TDidGetDidRequest, TDidGetDidResponse, did_get_did, TDidGetCurrentCoinInfoRequest, TDidGetCurrentCoinInfoResponse, did_get_current_coin_info, TDidGetPubkeyRequest, TDidGetPubkeyResponse, did_get_pubkey, TDidGetMetadataRequest, TDidGetMetadataResponse, did_get_metadata, TDidSpendRequest, TDidSpendResponse, did_spend, TDidUpdateMetadataRequest, TDidUpdateMetadataResponse, did_update_metadata, TNftMintNftRequest, TNftMintNftResponse, nft_mint_nft, TNftCountNftsRequest, TNftCountNftsResponse, nft_count_nfts, TNftGetNftsRequest, TNftGetNftsResponse, nft_get_nfts, TNftSetNftDidRequest, TNftSetNftDidResponse, nft_set_nft_did, TNftGetByDidRequest, TNftGetByDidResponse, nft_get_by_did, TNftGetWalletDidRequest, TNftGetWalletDidResponse, nft_get_wallet_did, TNftGetWalletsWithDidsResponse, nft_get_wallets_with_dids, TNftSetNftStatusRequest, TNftSetNftStatusResponse, nft_set_nft_status, TNftTransferNftRequest, TNftTransferNftResponse, nft_transfer_nft, TNftGetInfoRequest, TNftGetInfoResponse, nft_get_info, TNftAddUriRequest, TNftAddUriResponse, nft_add_uri, TGetTimestampForHeightResponse, get_timestamp_for_height, TSetAutoClaimRequest, TSetAutoClaimResponse, set_auto_claim, TGetAutoClaimResponse, get_auto_claim, TGenerateMnemonicResponse, generate_mnemonic, TGetAllOffersRequest, TGetAllOffersResponse, get_all_offers, TGetCatListResponse, get_cat_list, TGetFarmedAmountResponse, get_farmed_amount, TGetHeightInfoResponse, get_height_info, TGetInitialFreezePeriodResponseOfWallet, get_initial_freeze_period_of_wallet, TGetLoggedInFingerprintResponse, get_logged_in_fingerprint, TGetOfferRequest, TGetOfferResponse, get_offer, TGetOffersCountResponse, get_offers_count, TGetOfferSummaryRequest, TGetOfferSummaryResponse, get_offer_summary, TGetNextAddressRequest, TGetNextAddressResponse, get_next_address, TGetPrivateKeyRequest, TGetPrivateKeyResponse, get_private_key, TGetPublicKeysResponse, get_public_keys, TGetSyncStatusResponse, get_sync_status, TGetTransactionCountRequest, TGetTransactionCountResponse, get_transaction_count, TGetTransactionRequest, TGetTransactionResponse, get_transaction, TGetTransactionsRequest, TGetTransactionsResponse, get_transactions, TGetWalletBalanceRequest, TGetWalletBalanceResponse, get_wallet_balance, TGetWalletBalancesRequest, TGetWalletBalancesResponse, get_wallet_balances, TGetWalletsRequest, TGetWalletsResponse, get_wallets, TLoginRequest, TLoginResponse, log_in, TPushTxRequest as TPushTxRequestOfWallet, TPushTxResponse as TPushTxResponseOfWallet, push_tx as push_tx_wallet, TPushTransactionsRequest, TPushTransactionsResponse, push_transactions, TPwJoinPoolRequest, TPwJoinPoolResponse, pw_join_pool, TPwSelfPoolRequest, TPwSelfPoolResponse, pw_self_pool, TPwAbsorbRewardsRequest, TPwAbsorbRewardsResponse, pw_absorb_rewards, TPwStatusRequest, TPwStatusResponse, pw_status, TRlSetUserInfoRequest, TRlSetUserInfoResponse, rl_set_user_info, TSendClawbackTransactionRequest, TSendClawbackTransactionResponse, send_clawback_transaction, TSendTransactionRequest, TSendTransactionResponse, send_transaction, TSendTransactionMultiRequest, TSendTransactionMultiResponse, send_transaction_multi, TSpendClawbackCoinsRequest, TSpendClawbackCoinsResponse, spend_clawback_coins, TGetCoinRecordsRequest, TGetCoinRecordsResponse, get_coin_records, TTakeOfferRequest, TTakeOfferResponse, take_offer, TCreateNewDlRequest, TCreateNewDlResponse, create_new_dl, TDlTrackNewRequest, TDlTrackNewResponse, dl_track_new, TDlStopTrackingRequest, TDlStopTrackingResponse, dl_stop_tracking, TDlLatestSingletonRequest, TDlLatestSingletonResponse, dl_latest_singleton, TDlSingletonsByRootRequest, TDlSingletonsByRootResponse, dl_singletons_by_root, TDlUpdateRootRequest, TDlUpdateRootResponse, dl_update_root, TDlUpdateMultipleRequest, TDlUpdateMultipleResponse, dl_update_multiple, TDlHistoryRequest, TDlHistoryResponse, dl_history, TDlOwnedSingletonsResponse, dl_owned_singletons, TDlGetMirrorsRequest, TDlGetMirrorsResponse, dl_get_mirrors, TDlNewMirrorRequest, TDlNewMirrorResponse, dl_new_mirror, TDlDeleteMirrorRequest, TDlDeleteMirrorResponse, dl_delete_mirror, TDlVerifyProofRequest, TDlVerifyProofResponse, dl_verify_proof, TVcMintRequest, TVcMintResponse, vc_mint, TVcGetRequest, TVcGetResponse, vc_get, TVcGetListRequest, TVcGetListResponse, vc_get_list, TVcSpendRequest, TVcSpendResponse, vc_spend, TVcAddProofsRequest, TVcAddProofsResponse, vc_add_proofs, TVcGetProofsForRootRequest, TVcGetProofsForRootResponse, vc_get_proofs_for_root, TVcRevokeRequest, TVcRevokeResponse, vc_revoke, TCrcatApprovePendingRequest, TCrcatApprovePendingResponse, crcat_approve_pending, TGatherSigningInfoRequest, TGatherSigningInfoResponse, gather_signing_info, TApplySignaturesRequest, TApplySignaturesResponse, apply_signatures, TSubmitTransactionsRequest, TSubmitTransactionsResponse, submit_transactions, TExecuteSigningInstructionsRequest, TExecuteSigningInstructionsResponse, execute_signing_instructions, } from "./wallet/index";
8
+ export { chia_wallet_service, TAddKeyRequest, TAddKeyResponse, add_key, TAddRateLimitedFundsRequest, TAddRateLimitedFundsResponse, add_rate_limited_funds, TAdditions, TCancelOfferRequest, TCancelOfferResponse, cancel_offer, TCancelOffersRequest, TCancelOffersResponse, cancel_offers, TCatGetAssetIdRequest, TCatGetAssetIdResponse, cat_get_asset_id, TCatGetNameRequest, TCatGetNameResponse, cat_get_name, TGetStrayCatsResponse, get_stray_cats, TCatAssetIdToNameRequest, TCatAssetIdToNameResponse, cat_asset_id_to_name, TCatSetNameRequest, TCatSetNameResponse, cat_set_name, TCatSpendRequest, TCatSpendResponse, cat_spend, TCheckOfferValidityRequest, TCheckOfferValidityResponse, check_offer_validity, TCreateNewWalletRequest, TCreateNewWalletResponse, create_new_wallet, TRegisterRemoteCoinsRequest, TRegisterRemoteCoinsResponse, register_remote_coins, TCreateOfferForIdsRequest, TCreateOfferForIdsResponse, create_offer_for_ids, TCreateSignedTransactionRequest, TCreateSignedTransactionResponse, create_signed_transaction, TDeleteUnconfirmedTransactionsRequest, TDeleteUnconfirmedTransactionsResponse, delete_unconfirmed_transactions, TSelectCoinsRequest, TSelectCoinsResponse, select_coins, TGetCurrentDerivationIndexResponse, get_current_derivation_index, TExtendDerivationIndexRequest, TExtendDerivationIndexResponse, extend_derivation_index, TGetNotificationsRequest, TGetNotificationsResponse, get_notifications, TDeleteNotificationsRequest, TDeleteNotificationsResponse, delete_notifications, TSendNotificationRequest, TSendNotificationResponse, send_notification, TSignMessageByAddressRequest, TSignMessageByAddressResponse, sign_message_by_address, TSignMessageByIdRequest, TSignMessageByIdResponse, sign_message_by_id, TVerifySignatureRequest, TVerifySignatureResponse, verify_signature, TGetTransactionMemoRequest, TGetTransactionMemoResponse, get_transaction_memo, TSplitCoinsRequest, TSplitCoinsResponse, split_coins, TCombineCoinsRequest, TCombineCoinsResponse, combine_coins, TNftCalculateRoyaltiesRequest, TNftCalculateRoyaltiesResponse, nft_calculate_royalties, TNftMintBulkRequest, TNftMintBulkResponse, nft_mint_bulk, TNftSetDidBulkRequest, TNftSetDidBulkResponse, nft_set_did_bulk, TNftTransferBulkRequest, TNftTransferBulkResponse, nft_transfer_bulk, TCreate_New_CAT_WalletRequest, TCreate_New_CAT_WalletResponse, TCreate_New_DID_WalletRequest, TCreate_New_DID_WalletResponse, TDeleteAllKeysResponse, delete_all_keys, TSetWalletResyncOnStartupRequest, TSetWalletResyncOnStartupResponse, set_wallet_resync_on_startup, TDeleteKeyRequest, TDeleteKeyResponse, delete_key, TDidSetWalletNameRequest, TDidSetWalletNameResponse, did_set_wallet_name, TDidGetWalletNameRequest, TDidGetWalletNameResponse, did_get_wallet_name, TDidCreateBackupFileRequest, TDidCreateBackupFileResponse, did_create_backup_file, TDidTransferDidRequest, TDidTransferDidResponse, did_transfer_did, TDidGetDidRequest, TDidGetDidResponse, did_get_did, TDidGetCurrentCoinInfoRequest, TDidGetCurrentCoinInfoResponse, did_get_current_coin_info, TDidGetPubkeyRequest, TDidGetPubkeyResponse, did_get_pubkey, TDidGetMetadataRequest, TDidGetMetadataResponse, did_get_metadata, TDidSpendRequest, TDidSpendResponse, did_spend, TDidUpdateMetadataRequest, TDidUpdateMetadataResponse, did_update_metadata, TNftMintNftRequest, TNftMintNftResponse, nft_mint_nft, TNftCountNftsRequest, TNftCountNftsResponse, nft_count_nfts, TNftGetNftsRequest, TNftGetNftsResponse, nft_get_nfts, TNftSetNftDidRequest, TNftSetNftDidResponse, nft_set_nft_did, TNftGetByDidRequest, TNftGetByDidResponse, nft_get_by_did, TNftGetWalletDidRequest, TNftGetWalletDidResponse, nft_get_wallet_did, TNftGetWalletsWithDidsResponse, nft_get_wallets_with_dids, TNftSetNftStatusRequest, TNftSetNftStatusResponse, nft_set_nft_status, TNftTransferNftRequest, TNftTransferNftResponse, nft_transfer_nft, TNftGetInfoRequest, TNftGetInfoResponse, nft_get_info, TNftAddUriRequest, TNftAddUriResponse, nft_add_uri, TGetTimestampForHeightResponse, get_timestamp_for_height, TSetAutoClaimRequest, TSetAutoClaimResponse, set_auto_claim, TGetAutoClaimResponse, get_auto_claim, TGenerateMnemonicResponse, generate_mnemonic, TGetAllOffersRequest, TGetAllOffersResponse, get_all_offers, TGetCatListResponse, get_cat_list, TGetFarmedAmountResponse, get_farmed_amount, TGetHeightInfoResponse, get_height_info, TGetInitialFreezePeriodResponseOfWallet, get_initial_freeze_period_of_wallet, TGetLoggedInFingerprintResponse, get_logged_in_fingerprint, TGetOfferRequest, TGetOfferResponse, get_offer, TGetOffersCountResponse, get_offers_count, TGetOfferSummaryRequest, TGetOfferSummaryResponse, get_offer_summary, TGetNextAddressRequest, TGetNextAddressResponse, get_next_address, TGetPrivateKeyRequest, TGetPrivateKeyResponse, get_private_key, TGetPublicKeysResponse, get_public_keys, TGetSyncStatusResponse, get_sync_status, TGetTransactionCountRequest, TGetTransactionCountResponse, get_transaction_count, TGetTransactionRequest, TGetTransactionResponse, get_transaction, TGetTransactionsRequest, TGetTransactionsResponse, get_transactions, TGetWalletBalanceRequest, TGetWalletBalanceResponse, get_wallet_balance, TGetWalletBalancesRequest, TGetWalletBalancesResponse, get_wallet_balances, TGetWalletsRequest, TGetWalletsResponse, get_wallets, TLoginRequest, TLoginResponse, log_in, TPushTxRequest as TPushTxRequestOfWallet, TPushTxResponse as TPushTxResponseOfWallet, push_tx as push_tx_wallet, TGetPuzzleAndSolutionRequest as TGetPuzzleAndSolutionRequestOfWallet, TGetPuzzleAndSolutionResponse as TGetPuzzleAndSolutionResponseOfWallet, get_puzzle_and_solution as get_puzzle_and_solution_of_wallet, TPushTransactionsRequest, TPushTransactionsResponse, push_transactions, TPwJoinPoolRequest, TPwJoinPoolResponse, pw_join_pool, TPwSelfPoolRequest, TPwSelfPoolResponse, pw_self_pool, TPwAbsorbRewardsRequest, TPwAbsorbRewardsResponse, pw_absorb_rewards, TPwStatusRequest, TPwStatusResponse, pw_status, TRlSetUserInfoRequest, TRlSetUserInfoResponse, rl_set_user_info, TSendClawbackTransactionRequest, TSendClawbackTransactionResponse, send_clawback_transaction, TSendTransactionRequest, TSendTransactionResponse, send_transaction, TSendTransactionMultiRequest, TSendTransactionMultiResponse, send_transaction_multi, TSpendClawbackCoinsRequest, TSpendClawbackCoinsResponse, spend_clawback_coins, TGetCoinRecordsRequest, TGetCoinRecordsResponse, get_coin_records, TTakeOfferRequest, TTakeOfferResponse, take_offer, TCreateNewDlRequest, TCreateNewDlResponse, create_new_dl, TDlTrackNewRequest, TDlTrackNewResponse, dl_track_new, TDlStopTrackingRequest, TDlStopTrackingResponse, dl_stop_tracking, TDlLatestSingletonRequest, TDlLatestSingletonResponse, dl_latest_singleton, TDlSingletonsByRootRequest, TDlSingletonsByRootResponse, dl_singletons_by_root, TDlUpdateRootRequest, TDlUpdateRootResponse, dl_update_root, TDlUpdateMultipleRequest, TDlUpdateMultipleResponse, dl_update_multiple, TDlHistoryRequest, TDlHistoryResponse, dl_history, TDlOwnedSingletonsResponse, dl_owned_singletons, TDlGetMirrorsRequest, TDlGetMirrorsResponse, dl_get_mirrors, TDlNewMirrorRequest, TDlNewMirrorResponse, dl_new_mirror, TDlDeleteMirrorRequest, TDlDeleteMirrorResponse, dl_delete_mirror, TDlVerifyProofRequest, TDlVerifyProofResponse, dl_verify_proof, TVcMintRequest, TVcMintResponse, vc_mint, TVcGetRequest, TVcGetResponse, vc_get, TVcGetListRequest, TVcGetListResponse, vc_get_list, TVcSpendRequest, TVcSpendResponse, vc_spend, TVcAddProofsRequest, TVcAddProofsResponse, vc_add_proofs, TVcGetProofsForRootRequest, TVcGetProofsForRootResponse, vc_get_proofs_for_root, TVcRevokeRequest, TVcRevokeResponse, vc_revoke, TCrcatApprovePendingRequest, TCrcatApprovePendingResponse, crcat_approve_pending, TGatherSigningInfoRequest, TGatherSigningInfoResponse, gather_signing_info, TApplySignaturesRequest, TApplySignaturesResponse, apply_signatures, TSubmitTransactionsRequest, TSubmitTransactionsResponse, submit_transactions, TExecuteSigningInstructionsRequest, TExecuteSigningInstructionsResponse, execute_signing_instructions, } from "./wallet/index";
9
9
  import type { RpcDataLayerMessage } from "./data_layer/index";
10
10
  export { chia_data_layer_service, TWalletLogInRequest, TWalletLogInResponse, wallet_log_in, TCreateDataStoreRequest, TCreateDataStoreResponse, create_data_store, TGetOwnedStoresResponse, get_owned_stores, TBatchUpdateRequest, TBatchUpdateResponse, batch_update, TMultistoreBatchUpdateRequest, TMultistoreBatchUpdateResponse, multistore_batch_update, TSubmitPendingRootResponse, TSubmitPendingRootRequest, submit_pending_root, TSubmitAllPendingRootsRequest, TSubmitAllPendingRootsResponse, submit_all_pending_roots, TGetValueRequest, TGetValueResponse, get_value, TGetKeysRequest, TGetKeysResponse, get_keys, TGetKeysValuesRequest, TGetKeysValuesResponse, get_keys_values, TGetAncestorsRequest, TGetAncestorsResponse, get_ancestors, TGetRootRequest, TGetRootResponse, get_root, TGetLocalRootRequest, TGetLocalRootResponse, get_local_root, TGetRootsRequest, TGetRootsResponse, get_roots, TDeleteKeyRequest as TDeleteKeyDLRequest, TDeleteKeyResponse as TDeleteKeyDLResponse, delete_key as delete_key_dl, TInsertRequest, TInsertResponse, insert, TSubscribeRequest, TSubscribeResponse, subscribe, TUnsubscribeRequest, TUnsubscribeResponse, unsubscribe, TAddMirrorRequest, TAddMirrorResponse, add_mirror, TDeleteMirrorRequest, TDeleteMirrorResponse, delete_mirror, TGetMirrorsRequest, TGetMirrorsResponse, get_mirrors, TRemoveSubscriptionsRequest, TRemoveSubscriptionsResponse, remove_subscriptions, TSubscriptionsResponse, subscriptions, TGetKvDiffRequest, TGetKvDiffResponse, get_kv_diff, TGetRootHistoryRequest, TGetRootHistoryResponse, get_root_history, TAddMissingFilesRequest, TAddMissingFilesResponse, add_missing_files, TMakeOfferRequest, TMakeOfferResponse, make_offer, TTakeOfferRequest as TTakeOfferRequestDL, TTakeOfferResponse as TTakeOfferResponseDL, take_offer as take_offer_dl, TVerifyOfferRequest, TVerifyOfferResponse, verify_offer, TCancelOfferRequest as TCancelOfferRequestDL, TCancelOfferResponse as TCancelOfferResponseDL, cancel_offer as cancel_offer_dl, TGetSyncStatusRequest as TGetSyncStatusRequestDL, TGetSyncStatusResponse as TGetSyncStatusResponseDL, get_sync_status as get_sync_status_dl, TCheckPluginsResponse, check_plugins, TClearPendingRootsRequest, TClearPendingRootsResponse, clear_pending_roots, TGetProofRequest, TGetProofResponse, get_proof, TVerifyProofRequest, TVerifyProofResponse, verify_proof, } from "./data_layer/index";
11
11
  import type { RpcCrawlerMessage } from "./crawler/index";
package/api/rpc/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.get_all_coins = exports.get_farming_ph = exports.get_auto_farming = exports.set_auto_farming = exports.farm_block = exports.get_all_blocks = exports.get_fee_estimate = exports.get_puzzle_and_solution = exports.push_tx = exports.get_unfinished_block_headers = exports.get_network_space = exports.get_mempool_item_by_tx_id = exports.get_initial_freeze_period_of_full_node = exports.get_coin_records_by_hint = exports.get_coin_records_by_parent_ids = exports.get_coin_records_by_puzzle_hashes = exports.get_coin_records_by_puzzle_hash = exports.get_coin_record_by_name = exports.get_coin_records_by_names = exports.get_recent_signage_point_or_eos = exports.get_block_count_metrics = exports.get_blocks = exports.get_blockchain_state = exports.get_block = exports.get_block_spends_with_conditions = exports.get_block_spends = exports.get_block_records = exports.get_block_record = exports.get_block_record_by_height = exports.create_block_generator = exports.get_mempool_items_by_coin_name = exports.get_all_mempool_tx_ids = exports.get_all_mempool_items = exports.get_aggsig_additional_data = exports.get_additions_and_removals = exports.chia_full_node_service = exports.get_pool_login_link = exports.get_pool_state = exports.set_pool_payout_instructions = exports.get_harvester_plots_duplicates = exports.get_harvester_plots_keys_missing = exports.get_harvester_plots_invalid = exports.get_harvester_plots_valid = exports.get_harvesters_summary = exports.get_harvesters = exports.set_reward_targets = exports.get_signage_points = exports.get_signage_point = exports.get_reward_targets = exports.chia_farmer_service = void 0;
4
4
  exports.did_get_wallet_name = exports.did_set_wallet_name = exports.delete_key = exports.set_wallet_resync_on_startup = exports.delete_all_keys = exports.nft_transfer_bulk = exports.nft_set_did_bulk = exports.nft_mint_bulk = exports.nft_calculate_royalties = exports.combine_coins = exports.split_coins = exports.get_transaction_memo = exports.verify_signature = exports.sign_message_by_id = exports.sign_message_by_address = exports.send_notification = exports.delete_notifications = exports.get_notifications = exports.extend_derivation_index = exports.get_current_derivation_index = exports.select_coins = exports.delete_unconfirmed_transactions = exports.create_signed_transaction = exports.create_offer_for_ids = exports.register_remote_coins = exports.create_new_wallet = exports.check_offer_validity = exports.cat_spend = exports.cat_set_name = exports.cat_asset_id_to_name = exports.get_stray_cats = exports.cat_get_name = exports.cat_get_asset_id = exports.cancel_offers = exports.cancel_offer = exports.add_rate_limited_funds = exports.add_key = exports.chia_wallet_service = exports.update_harvester_config = exports.get_harvester_config = exports.remove_plot_directory = exports.refresh_plots = exports.get_plots = exports.get_plot_directories = exports.delete_plot = exports.add_plot_directory = exports.chia_harvester_service = exports.reorg_blocks = exports.revert_blocks = exports.get_all_puzzle_hashes = void 0;
5
- exports.rl_set_user_info = exports.pw_status = exports.pw_absorb_rewards = exports.pw_self_pool = exports.pw_join_pool = exports.push_transactions = exports.push_tx_wallet = exports.log_in = exports.get_wallets = exports.get_wallet_balances = exports.get_wallet_balance = exports.get_transactions = exports.get_transaction = exports.get_transaction_count = exports.get_sync_status = exports.get_public_keys = exports.get_private_key = exports.get_next_address = exports.get_offer_summary = exports.get_offers_count = exports.get_offer = exports.get_logged_in_fingerprint = exports.get_initial_freeze_period_of_wallet = exports.get_height_info = exports.get_farmed_amount = exports.get_cat_list = exports.get_all_offers = exports.generate_mnemonic = exports.get_auto_claim = exports.set_auto_claim = exports.get_timestamp_for_height = exports.nft_add_uri = exports.nft_get_info = exports.nft_transfer_nft = exports.nft_set_nft_status = exports.nft_get_wallets_with_dids = exports.nft_get_wallet_did = exports.nft_get_by_did = exports.nft_set_nft_did = exports.nft_get_nfts = exports.nft_count_nfts = exports.nft_mint_nft = exports.did_update_metadata = exports.did_spend = exports.did_get_metadata = exports.did_get_pubkey = exports.did_get_current_coin_info = exports.did_get_did = exports.did_transfer_did = exports.did_create_backup_file = void 0;
6
- exports.unsubscribe = exports.subscribe = exports.insert = exports.delete_key_dl = exports.get_roots = exports.get_local_root = exports.get_root = exports.get_ancestors = exports.get_keys_values = exports.get_keys = exports.get_value = exports.submit_all_pending_roots = exports.submit_pending_root = exports.multistore_batch_update = exports.batch_update = exports.get_owned_stores = exports.create_data_store = exports.wallet_log_in = exports.chia_data_layer_service = exports.execute_signing_instructions = exports.submit_transactions = exports.apply_signatures = exports.gather_signing_info = exports.crcat_approve_pending = exports.vc_revoke = exports.vc_get_proofs_for_root = exports.vc_add_proofs = exports.vc_spend = exports.vc_get_list = exports.vc_get = exports.vc_mint = exports.dl_verify_proof = exports.dl_delete_mirror = exports.dl_new_mirror = exports.dl_get_mirrors = exports.dl_owned_singletons = exports.dl_history = exports.dl_update_multiple = exports.dl_update_root = exports.dl_singletons_by_root = exports.dl_latest_singleton = exports.dl_stop_tracking = exports.dl_track_new = exports.create_new_dl = exports.take_offer = exports.get_coin_records = exports.spend_clawback_coins = exports.send_transaction_multi = exports.send_transaction = exports.send_clawback_transaction = void 0;
7
- exports.reset_log_level = exports.set_log_level = exports.get_log_level = exports.healthz = exports.get_version = exports.get_routes = exports.stop_node = exports.close_connection = exports.open_connection = exports.get_connections = exports.get_network_info = exports.chia_common_service = exports.get_state = exports.chia_solver_service = exports.get_peer_counts = exports.get_ips_after_timestamp = exports.chia_crawler_service = exports.verify_proof = exports.get_proof = exports.clear_pending_roots = exports.check_plugins = exports.get_sync_status_dl = exports.cancel_offer_dl = exports.verify_offer = exports.take_offer_dl = exports.make_offer = exports.add_missing_files = exports.get_root_history = exports.get_kv_diff = exports.subscriptions = exports.remove_subscriptions = exports.get_mirrors = exports.delete_mirror = exports.add_mirror = void 0;
5
+ exports.pw_status = exports.pw_absorb_rewards = exports.pw_self_pool = exports.pw_join_pool = exports.push_transactions = exports.get_puzzle_and_solution_of_wallet = exports.push_tx_wallet = exports.log_in = exports.get_wallets = exports.get_wallet_balances = exports.get_wallet_balance = exports.get_transactions = exports.get_transaction = exports.get_transaction_count = exports.get_sync_status = exports.get_public_keys = exports.get_private_key = exports.get_next_address = exports.get_offer_summary = exports.get_offers_count = exports.get_offer = exports.get_logged_in_fingerprint = exports.get_initial_freeze_period_of_wallet = exports.get_height_info = exports.get_farmed_amount = exports.get_cat_list = exports.get_all_offers = exports.generate_mnemonic = exports.get_auto_claim = exports.set_auto_claim = exports.get_timestamp_for_height = exports.nft_add_uri = exports.nft_get_info = exports.nft_transfer_nft = exports.nft_set_nft_status = exports.nft_get_wallets_with_dids = exports.nft_get_wallet_did = exports.nft_get_by_did = exports.nft_set_nft_did = exports.nft_get_nfts = exports.nft_count_nfts = exports.nft_mint_nft = exports.did_update_metadata = exports.did_spend = exports.did_get_metadata = exports.did_get_pubkey = exports.did_get_current_coin_info = exports.did_get_did = exports.did_transfer_did = exports.did_create_backup_file = void 0;
6
+ exports.subscribe = exports.insert = exports.delete_key_dl = exports.get_roots = exports.get_local_root = exports.get_root = exports.get_ancestors = exports.get_keys_values = exports.get_keys = exports.get_value = exports.submit_all_pending_roots = exports.submit_pending_root = exports.multistore_batch_update = exports.batch_update = exports.get_owned_stores = exports.create_data_store = exports.wallet_log_in = exports.chia_data_layer_service = exports.execute_signing_instructions = exports.submit_transactions = exports.apply_signatures = exports.gather_signing_info = exports.crcat_approve_pending = exports.vc_revoke = exports.vc_get_proofs_for_root = exports.vc_add_proofs = exports.vc_spend = exports.vc_get_list = exports.vc_get = exports.vc_mint = exports.dl_verify_proof = exports.dl_delete_mirror = exports.dl_new_mirror = exports.dl_get_mirrors = exports.dl_owned_singletons = exports.dl_history = exports.dl_update_multiple = exports.dl_update_root = exports.dl_singletons_by_root = exports.dl_latest_singleton = exports.dl_stop_tracking = exports.dl_track_new = exports.create_new_dl = exports.take_offer = exports.get_coin_records = exports.spend_clawback_coins = exports.send_transaction_multi = exports.send_transaction = exports.send_clawback_transaction = exports.rl_set_user_info = void 0;
7
+ exports.reset_log_level = exports.set_log_level = exports.get_log_level = exports.healthz = exports.get_version = exports.get_routes = exports.stop_node = exports.close_connection = exports.open_connection = exports.get_connections = exports.get_network_info = exports.chia_common_service = exports.get_state = exports.chia_solver_service = exports.get_peer_counts = exports.get_ips_after_timestamp = exports.chia_crawler_service = exports.verify_proof = exports.get_proof = exports.clear_pending_roots = exports.check_plugins = exports.get_sync_status_dl = exports.cancel_offer_dl = exports.verify_offer = exports.take_offer_dl = exports.make_offer = exports.add_missing_files = exports.get_root_history = exports.get_kv_diff = exports.subscriptions = exports.remove_subscriptions = exports.get_mirrors = exports.delete_mirror = exports.add_mirror = exports.unsubscribe = void 0;
8
8
  var index_1 = require("./farmer/index");
9
9
  Object.defineProperty(exports, "chia_farmer_service", { enumerable: true, get: function () { return index_1.chia_farmer_service; } });
10
10
  Object.defineProperty(exports, "get_reward_targets", { enumerable: true, get: function () { return index_1.get_reward_targets; } });
@@ -153,6 +153,7 @@ Object.defineProperty(exports, "get_wallet_balances", { enumerable: true, get: f
153
153
  Object.defineProperty(exports, "get_wallets", { enumerable: true, get: function () { return index_4.get_wallets; } });
154
154
  Object.defineProperty(exports, "log_in", { enumerable: true, get: function () { return index_4.log_in; } });
155
155
  Object.defineProperty(exports, "push_tx_wallet", { enumerable: true, get: function () { return index_4.push_tx; } });
156
+ Object.defineProperty(exports, "get_puzzle_and_solution_of_wallet", { enumerable: true, get: function () { return index_4.get_puzzle_and_solution; } });
156
157
  Object.defineProperty(exports, "push_transactions", { enumerable: true, get: function () { return index_4.push_transactions; } });
157
158
  Object.defineProperty(exports, "pw_join_pool", { enumerable: true, get: function () { return index_4.pw_join_pool; } });
158
159
  Object.defineProperty(exports, "pw_self_pool", { enumerable: true, get: function () { return index_4.pw_self_pool; } });
@@ -15,7 +15,7 @@ import { SingletonRecord } from "../../chia/data_layer/singleton_record";
15
15
  import { TPushTxResponseOfWallet } from "../index";
16
16
  import { GetMessageType, ResType } from "../../types";
17
17
  import { TDaemon } from "../../../daemon/index";
18
- import { CoinRecord } from "../../chia/types/coin_record";
18
+ import { CoinRecord } from "../../chia_rs/chia-protocol/coin_record";
19
19
  import { SigningMode } from "../../chia/types/signing_mode";
20
20
  import { Balance } from "../../chia/wallet/wallet_node";
21
21
  import { AutoClaimSettings, AutoClaimSettingsCHIP0029 } from "../../chia/wallet/puzzles/clawback/metadata";
@@ -179,7 +179,7 @@ export type TCreateNewDidWalletRequestNew = {
179
179
  fee?: uint64;
180
180
  wallet_type: "did_wallet";
181
181
  did_type: "new";
182
- amount: int;
182
+ amount: uint64;
183
183
  metadata?: Record<str, str>;
184
184
  wallet_name?: str;
185
185
  };
@@ -342,7 +342,7 @@ export type ClawbackPuzzleDecoratorOverride = {
342
342
  };
343
343
  export type TSendTransactionRequest = {
344
344
  wallet_id: uint32;
345
- amount: int;
345
+ amount: uint64;
346
346
  fee?: uint64;
347
347
  address: str;
348
348
  memos?: str[];
@@ -401,7 +401,7 @@ export type TGetTransactionCountRequest = {
401
401
  confirmed?: bool;
402
402
  };
403
403
  export type TGetTransactionCountResponse = {
404
- count: int;
404
+ count: uint32;
405
405
  wallet_id: int;
406
406
  };
407
407
  export type WsGetTransactionCountMessage = GetMessageType<chia_wallet_service, get_transaction_count_command, TGetTransactionCountResponse>;
@@ -409,10 +409,10 @@ export declare function get_transaction_count<T extends TRPCAgent | TDaemon>(age
409
409
  export declare const get_farmed_amount_command = "get_farmed_amount";
410
410
  export type get_farmed_amount_command = typeof get_farmed_amount_command;
411
411
  export type TGetFarmedAmountResponse = {
412
- farmed_amount: int;
413
- pool_reward_amount: int;
414
- farmer_reward_amount: int;
415
- fee_amount: int;
412
+ farmed_amount: uint64;
413
+ pool_reward_amount: uint64;
414
+ farmer_reward_amount: uint64;
415
+ fee_amount: uint64;
416
416
  last_height_farmed: int;
417
417
  last_time_farmed: uint32;
418
418
  blocks_won: uint32;
@@ -473,6 +473,7 @@ export type TSelectCoinsRequest = {
473
473
  wallet_id: uint32;
474
474
  exclude_coins?: Optional<Coin[]>;
475
475
  excluded_coins?: Optional<Coin[]>;
476
+ allow_unsynced?: bool;
476
477
  } & TXConfigLoader;
477
478
  export type TSelectCoinsResponse = {
478
479
  coins: Coin[];
@@ -488,6 +489,9 @@ export type TGetSpendableCoinsRequest = {
488
489
  excluded_coin_amounts?: Optional<uint64[]>;
489
490
  excluded_coins?: Coin[];
490
491
  excluded_coin_ids?: str[];
492
+ included_coin_ids?: str[];
493
+ primary_coin?: str;
494
+ allow_unsynced?: bool;
491
495
  };
492
496
  export type TGetSpendableCoinsResponse = {
493
497
  confirmed_records: CoinRecord[];
@@ -503,6 +507,7 @@ export type TGetCoinRecordsByNamesRequest = {
503
507
  start_height?: uint32;
504
508
  end_height?: uint32;
505
509
  include_spent_coins?: bool;
510
+ allow_unsynced?: bool;
506
511
  };
507
512
  export type TGetCoinRecordsByNamesResponse = {
508
513
  coin_records: CoinRecord[];
@@ -731,7 +736,7 @@ export declare function cat_get_asset_id<T extends TRPCAgent | TDaemon>(agent: T
731
736
  export declare const create_offer_for_ids_command = "create_offer_for_ids";
732
737
  export type create_offer_for_ids_command = typeof create_offer_for_ids_command;
733
738
  export type TCreateOfferForIdsRequest = {
734
- offer: Record<str, str | int>;
739
+ offer: Record<str, str | uint64>;
735
740
  fee?: uint64;
736
741
  validate_only?: bool;
737
742
  driver_dict?: TDriverDict;
@@ -754,7 +759,7 @@ export type TGetOfferSummaryRequest = {
754
759
  export type TOfferSummary = {
755
760
  offered: Record<str, str>;
756
761
  requested: Record<str, str>;
757
- fees: int;
762
+ fees: uint64;
758
763
  infos: TDriverDict;
759
764
  additions: str[];
760
765
  removals: str[];
@@ -817,8 +822,8 @@ export declare function get_offer<T extends TRPCAgent | TDaemon>(agent: T, data:
817
822
  export declare const get_all_offers_command = "get_all_offers";
818
823
  export type get_all_offers_command = typeof get_all_offers_command;
819
824
  export type TGetAllOffersRequest = {
820
- start?: uint16;
821
- end?: uint16;
825
+ start?: uint32;
826
+ end?: uint32;
822
827
  exclude_my_offers?: bool;
823
828
  exclude_taken_offers?: bool;
824
829
  include_completed?: bool;
@@ -835,9 +840,9 @@ export declare function get_all_offers<T extends TRPCAgent | TDaemon>(agent: T,
835
840
  export declare const get_offers_count_command = "get_offers_count";
836
841
  export type get_offers_count_command = typeof get_offers_count_command;
837
842
  export type TGetOffersCountResponse = {
838
- total: int;
839
- my_offers_count: int;
840
- taken_offers_count: int;
843
+ total: uint32;
844
+ my_offers_count: uint32;
845
+ taken_offers_count: uint32;
841
846
  };
842
847
  export type WsGetOffersCountMessage = GetMessageType<chia_wallet_service, get_offers_count_command, TGetOffersCountResponse>;
843
848
  export declare function get_offers_count<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetOffersCountResponse, WsGetOffersCountMessage>>;
@@ -1159,7 +1164,7 @@ export type TNftSetDidBulkResponse = {
1159
1164
  success: True;
1160
1165
  wallet_id: uint32[];
1161
1166
  spend_bundle: WalletSpendBundle;
1162
- tx_num: int;
1167
+ tx_num: uint32;
1163
1168
  transactions: TransactionRecordConvenience[];
1164
1169
  signing_responses?: str[];
1165
1170
  };
@@ -1182,7 +1187,7 @@ export type TNftTransferBulkResponse = {
1182
1187
  success: True;
1183
1188
  wallet_id: uint32[];
1184
1189
  spend_bundle: WalletSpendBundle;
1185
- tx_num: int;
1190
+ tx_num: uint32;
1186
1191
  transactions: TransactionRecordConvenience[];
1187
1192
  signing_responses?: str[];
1188
1193
  };
@@ -1327,8 +1332,8 @@ export type TNftMintBulkRequest = {
1327
1332
  license_hash?: str;
1328
1333
  }>;
1329
1334
  target_list?: str[];
1330
- mint_number_start?: int;
1331
- mint_total?: int;
1335
+ mint_number_start?: uint32;
1336
+ mint_total?: uint32;
1332
1337
  xch_coins?: Coin[];
1333
1338
  xch_change_target?: str;
1334
1339
  new_innerpuzhash?: str;
@@ -1370,7 +1375,7 @@ export declare const send_clawback_transaction_command = "send_clawback_transact
1370
1375
  export type send_clawback_transaction_command = typeof send_clawback_transaction_command;
1371
1376
  export type TSendClawbackTransactionRequest = {
1372
1377
  wallet_id: uint32;
1373
- fee: int;
1378
+ fee: uint64;
1374
1379
  };
1375
1380
  export type TSendClawbackTransactionResponse = {
1376
1381
  transaction: TransactionRecord;
@@ -1682,6 +1687,17 @@ export type TExecuteSigningInstructionsRequest = ExecuteSigningInstructions | Ex
1682
1687
  export type TExecuteSigningInstructionsResponse = ExecuteSigningInstructionsResponse | ExecuteSigningInstructionsResponseCHIP0029;
1683
1688
  export type WsExecuteSigningInstructionsMessage<R> = GetMessageType<chia_wallet_service, execute_signing_instructions_command, R>;
1684
1689
  export declare function execute_signing_instructions<T extends TRPCAgent | TDaemon, D extends TExecuteSigningInstructionsRequest>(agent: T, data: D): Promise<ResType<T, D extends ExecuteSigningInstructionsCHIP0029 ? ExecuteSigningInstructionsResponseCHIP0029 : ExecuteSigningInstructionsResponse, WsExecuteSigningInstructionsMessage<D extends ExecuteSigningInstructionsCHIP0029 ? ExecuteSigningInstructionsResponseCHIP0029 : ExecuteSigningInstructionsResponse>>>;
1690
+ export declare const get_puzzle_and_solution_command = "get_puzzle_and_solution";
1691
+ export type get_puzzle_and_solution_command = typeof get_puzzle_and_solution_command;
1692
+ export type TGetPuzzleAndSolutionRequest = {
1693
+ coin_name: str;
1694
+ };
1695
+ export type TGetPuzzleAndSolutionResponse = {
1696
+ puzzle_reveal: str;
1697
+ solution: str;
1698
+ };
1699
+ export type WsGetPuzzleAndSolutionMessage = GetMessageType<chia_wallet_service, get_puzzle_and_solution_command, TGetPuzzleAndSolutionResponse>;
1700
+ export declare function get_puzzle_and_solution<T extends TRPCAgent | TDaemon>(agent: T, data: TGetPuzzleAndSolutionRequest): Promise<ResType<T, TGetPuzzleAndSolutionResponse, WsGetPuzzleAndSolutionMessage>>;
1685
1701
  export declare const register_remote_coins_command = "register_remote_coins";
1686
1702
  export type register_remote_coins_command = typeof register_remote_coins_command;
1687
1703
  export type TRegisterRemoteCoinsRequest = {
@@ -1691,4 +1707,4 @@ export type TRegisterRemoteCoinsRequest = {
1691
1707
  export type TRegisterRemoteCoinsResponse = Record<string, never>;
1692
1708
  export type WsRegisterRemoteCoinsMessage = GetMessageType<chia_wallet_service, register_remote_coins_command, TRegisterRemoteCoinsResponse>;
1693
1709
  export declare function register_remote_coins<T extends TRPCAgent | TDaemon>(agent: T, data: TRegisterRemoteCoinsRequest): Promise<ResType<T, TRegisterRemoteCoinsResponse, WsRegisterRemoteCoinsMessage>>;
1694
- export type RpcWalletMessage = TRegisterRemoteCoinsResponse | TAddKeyResponse | TAddRateLimitedFundsResponse | TCancelOfferResponse | TCancelOffersResponse | TCatGetAssetIdResponse | TCatGetNameResponse | TGetStrayCatsResponse | TCatAssetIdToNameResponse | TCatSetNameResponse | TCatSpendResponse | TCheckOfferValidityResponse | TCreateNewWalletResponse | TCreateOfferForIdsResponse | TCreateSignedTransactionResponse | TDeleteUnconfirmedTransactionsResponse | TSelectCoinsResponse | TGetSpendableCoinsResponse | TGetCoinRecordsByNamesResponse | TGetCurrentDerivationIndexResponse | TExtendDerivationIndexResponse | TGetNotificationsResponse | TDeleteNotificationsResponse | TSendNotificationResponse | TSignMessageByAddressResponse | TSignMessageByIdResponse | TVerifySignatureResponse | TGetTransactionMemoResponse | TSplitCoinsResponse | TCombineCoinsResponse | TNftCalculateRoyaltiesResponse | TNftMintBulkResponse | TNftSetDidBulkResponse | TNftTransferBulkResponse | TDeleteAllKeysResponse | TSetWalletResyncOnStartupResponse | TDeleteKeyResponse | TCheckDeleteKeyResponse | TDidSetWalletNameResponse | TDidGetWalletNameResponse | TDidCreateBackupFileResponse | TDidTransferDidResponse | TDidMessageSpendResponse | TDidGetInfoResponse | TDidFindLostDidResponse | TDidGetDidResponse | TDidGetCurrentCoinInfoResponse | TDidGetPubkeyResponse | TDidGetMetadataResponse | TDidSpendResponse | TDidUpdateMetadataResponse | TNftMintNftResponse | TNftCountNftsResponse | TNftGetNftsResponse | TNftSetNftDidResponse | TNftGetByDidResponse | TNftGetWalletDidResponse | TNftGetWalletsWithDidsResponse | TNftSetNftStatusResponse | TNftTransferNftResponse | TNftGetInfoResponse | TNftAddUriResponse | TGetTimestampForHeightResponse | TSetAutoClaimResponse | TGetAutoClaimResponse | TGenerateMnemonicResponse | TGetAllOffersResponse | TGetCatListResponse | TGetFarmedAmountResponse | TGetHeightInfoResponse | TGetInitialFreezePeriodResponseOfWallet | TGetLoggedInFingerprintResponse | TGetOfferResponse | TGetOffersCountResponse | TGetOfferSummaryResponse | TGetNextAddressResponse | TGetPrivateKeyResponse | TGetPublicKeysResponse | TGetSyncStatusResponse | TGetTransactionResponse | TGetTransactionCountResponse | TGetTransactionsResponse | TGetWalletBalanceResponse | TGetWalletBalancesResponse | TGetWalletsResponse | TLoginResponse | TPushTxResponseOfWallet | TPushTransactionsResponse | TPwJoinPoolResponse | TPwSelfPoolResponse | TPwAbsorbRewardsResponse | TPwStatusResponse | TRlSetUserInfoResponse | TSendClawbackTransactionResponse | TSendTransactionResponse | TSendTransactionMultiResponse | TSpendClawbackCoinsResponse | TGetCoinRecordsResponse | TTakeOfferResponse | TCreateNewDlResponse | TDlTrackNewResponse | TDlStopTrackingResponse | TDlLatestSingletonResponse | TDlSingletonsByRootResponse | TDlUpdateRootResponse | TDlUpdateMultipleResponse | TDlHistoryResponse | TDlOwnedSingletonsResponse | TDlGetMirrorsResponse | TDlNewMirrorResponse | TDlDeleteMirrorResponse | TDlVerifyProofResponse | TVcMintResponse | TVcGetResponse | TVcGetListResponse | TVcSpendResponse | TVcAddProofsResponse | TVcGetProofsForRootResponse | TVcRevokeResponse | TCrcatApprovePendingResponse | TGatherSigningInfoResponse | TApplySignaturesResponse | TSubmitTransactionsResponse | TExecuteSigningInstructionsResponse;
1710
+ export type RpcWalletMessage = TGetPuzzleAndSolutionResponse | TRegisterRemoteCoinsResponse | TAddKeyResponse | TAddRateLimitedFundsResponse | TCancelOfferResponse | TCancelOffersResponse | TCatGetAssetIdResponse | TCatGetNameResponse | TGetStrayCatsResponse | TCatAssetIdToNameResponse | TCatSetNameResponse | TCatSpendResponse | TCheckOfferValidityResponse | TCreateNewWalletResponse | TCreateOfferForIdsResponse | TCreateSignedTransactionResponse | TDeleteUnconfirmedTransactionsResponse | TSelectCoinsResponse | TGetSpendableCoinsResponse | TGetCoinRecordsByNamesResponse | TGetCurrentDerivationIndexResponse | TExtendDerivationIndexResponse | TGetNotificationsResponse | TDeleteNotificationsResponse | TSendNotificationResponse | TSignMessageByAddressResponse | TSignMessageByIdResponse | TVerifySignatureResponse | TGetTransactionMemoResponse | TSplitCoinsResponse | TCombineCoinsResponse | TNftCalculateRoyaltiesResponse | TNftMintBulkResponse | TNftSetDidBulkResponse | TNftTransferBulkResponse | TDeleteAllKeysResponse | TSetWalletResyncOnStartupResponse | TDeleteKeyResponse | TCheckDeleteKeyResponse | TDidSetWalletNameResponse | TDidGetWalletNameResponse | TDidCreateBackupFileResponse | TDidTransferDidResponse | TDidMessageSpendResponse | TDidGetInfoResponse | TDidFindLostDidResponse | TDidGetDidResponse | TDidGetCurrentCoinInfoResponse | TDidGetPubkeyResponse | TDidGetMetadataResponse | TDidSpendResponse | TDidUpdateMetadataResponse | TNftMintNftResponse | TNftCountNftsResponse | TNftGetNftsResponse | TNftSetNftDidResponse | TNftGetByDidResponse | TNftGetWalletDidResponse | TNftGetWalletsWithDidsResponse | TNftSetNftStatusResponse | TNftTransferNftResponse | TNftGetInfoResponse | TNftAddUriResponse | TGetTimestampForHeightResponse | TSetAutoClaimResponse | TGetAutoClaimResponse | TGenerateMnemonicResponse | TGetAllOffersResponse | TGetCatListResponse | TGetFarmedAmountResponse | TGetHeightInfoResponse | TGetInitialFreezePeriodResponseOfWallet | TGetLoggedInFingerprintResponse | TGetOfferResponse | TGetOffersCountResponse | TGetOfferSummaryResponse | TGetNextAddressResponse | TGetPrivateKeyResponse | TGetPublicKeysResponse | TGetSyncStatusResponse | TGetTransactionResponse | TGetTransactionCountResponse | TGetTransactionsResponse | TGetWalletBalanceResponse | TGetWalletBalancesResponse | TGetWalletsResponse | TLoginResponse | TPushTxResponseOfWallet | TPushTransactionsResponse | TPwJoinPoolResponse | TPwSelfPoolResponse | TPwAbsorbRewardsResponse | TPwStatusResponse | TRlSetUserInfoResponse | TSendClawbackTransactionResponse | TSendTransactionResponse | TSendTransactionMultiResponse | TSpendClawbackCoinsResponse | TGetCoinRecordsResponse | TTakeOfferResponse | TCreateNewDlResponse | TDlTrackNewResponse | TDlStopTrackingResponse | TDlLatestSingletonResponse | TDlSingletonsByRootResponse | TDlUpdateRootResponse | TDlUpdateMultipleResponse | TDlHistoryResponse | TDlOwnedSingletonsResponse | TDlGetMirrorsResponse | TDlNewMirrorResponse | TDlDeleteMirrorResponse | TDlVerifyProofResponse | TVcMintResponse | TVcGetResponse | TVcGetListResponse | TVcSpendResponse | TVcAddProofsResponse | TVcGetProofsForRootResponse | TVcRevokeResponse | TCrcatApprovePendingResponse | TGatherSigningInfoResponse | TApplySignaturesResponse | TSubmitTransactionsResponse | TExecuteSigningInstructionsResponse;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.cat_set_name_command = exports.get_cat_list_command = exports.sign_message_by_id_command = exports.sign_message_by_address_command = exports.combine_coins_command = exports.split_coins_command = exports.get_transaction_memo_command = exports.verify_signature_command = exports.send_notification_command = exports.delete_notifications_command = exports.get_notifications_command = exports.extend_derivation_index_command = exports.get_current_derivation_index_command = exports.get_coin_records_by_names_command = exports.get_spendable_coins_command = exports.select_coins_command = exports.delete_unconfirmed_transactions_command = exports.create_signed_transaction_command = exports.get_farmed_amount_command = exports.get_transaction_count_command = exports.get_coin_records_command = exports.spend_clawback_coins_command = exports.send_transaction_multi_command = exports.send_transaction_command = exports.get_next_address_command = exports.get_transactions_command = exports.get_transaction_command = exports.get_wallet_balances_command = exports.get_wallet_balance_command = exports.create_new_wallet_command = exports.get_wallets_command = exports.get_initial_freeze_period_command_of_wallet = exports.get_auto_claim_command = exports.set_auto_claim_command = exports.get_timestamp_for_height_command = exports.push_transactions_command = exports.push_tx_command = exports.get_height_info_command = exports.get_sync_status_command = exports.set_wallet_resync_on_startup_command = exports.delete_all_keys_command = exports.check_delete_key_command = exports.delete_key_command = exports.add_key_command = exports.generate_mnemonic_command = exports.get_private_key_command = exports.get_public_keys_command = exports.get_logged_in_fingerprint_command = exports.log_in_command = exports.chia_wallet_service = void 0;
4
4
  exports.create_new_dl_command = exports.pw_status_command = exports.pw_absorb_rewards_command = exports.pw_self_pool_command = exports.pw_join_pool_command = exports.add_rate_limited_funds_command = exports.send_clawback_transaction_command = exports.rl_set_user_info_command = exports.nft_mint_bulk_command = exports.nft_calculate_royalties_command = exports.nft_add_uri_command = exports.nft_get_info_command = exports.nft_transfer_nft_command = exports.nft_set_nft_status_command = exports.nft_get_wallets_with_dids_command = exports.nft_get_wallet_did_command = exports.nft_get_by_did_command = exports.nft_transfer_bulk_command = exports.nft_set_did_bulk_command = exports.nft_set_nft_did_command = exports.nft_get_nfts_command = exports.nft_count_nfts_command = exports.nft_mint_nft_command = exports.did_transfer_did_command = exports.did_find_lost_did_command = exports.did_get_info_command = exports.did_message_spend_command = exports.did_create_backup_file_command = exports.did_get_current_coin_info_command = exports.did_get_metadata_command = exports.did_get_did_command = exports.did_get_pubkey_command = exports.did_spend_command = exports.did_update_metadata_command = exports.did_get_wallet_name_command = exports.did_set_wallet_name_command = exports.cancel_offers_command = exports.cancel_offer_command = exports.get_offers_count_command = exports.get_all_offers_command = exports.get_offer_command = exports.take_offer_command = exports.check_offer_validity_command = exports.get_offer_summary_command = exports.create_offer_for_ids_command = exports.cat_get_asset_id_command = exports.cat_spend_command = exports.get_stray_cats_command = exports.cat_get_name_command = exports.cat_asset_id_to_name_command = void 0;
5
- exports.register_remote_coins_command = exports.execute_signing_instructions_command = exports.submit_transactions_command = exports.apply_signatures_command = exports.gather_signing_info_command = exports.crcat_approve_pending_command = exports.vc_revoke_command = exports.vc_get_proofs_for_root_command = exports.vc_add_proofs_command = exports.vc_spend_command = exports.vc_get_list_command = exports.vc_get_command = exports.vc_mint_command = exports.dl_verify_proof_command = exports.dl_delete_mirror_command = exports.dl_new_mirror_command = exports.dl_get_mirrors_command = exports.dl_owned_singletons_command = exports.dl_history_command = exports.dl_update_multiple_command = exports.dl_update_root_command = exports.dl_singletons_by_root_command = exports.dl_latest_singleton_command = exports.dl_stop_tracking_command = exports.dl_track_new_command = void 0;
5
+ exports.register_remote_coins_command = exports.get_puzzle_and_solution_command = exports.execute_signing_instructions_command = exports.submit_transactions_command = exports.apply_signatures_command = exports.gather_signing_info_command = exports.crcat_approve_pending_command = exports.vc_revoke_command = exports.vc_get_proofs_for_root_command = exports.vc_add_proofs_command = exports.vc_spend_command = exports.vc_get_list_command = exports.vc_get_command = exports.vc_mint_command = exports.dl_verify_proof_command = exports.dl_delete_mirror_command = exports.dl_new_mirror_command = exports.dl_get_mirrors_command = exports.dl_owned_singletons_command = exports.dl_history_command = exports.dl_update_multiple_command = exports.dl_update_root_command = exports.dl_singletons_by_root_command = exports.dl_latest_singleton_command = exports.dl_stop_tracking_command = exports.dl_track_new_command = void 0;
6
6
  exports.log_in = log_in;
7
7
  exports.get_logged_in_fingerprint = get_logged_in_fingerprint;
8
8
  exports.get_public_keys = get_public_keys;
@@ -126,6 +126,7 @@ exports.gather_signing_info = gather_signing_info;
126
126
  exports.apply_signatures = apply_signatures;
127
127
  exports.submit_transactions = submit_transactions;
128
128
  exports.execute_signing_instructions = execute_signing_instructions;
129
+ exports.get_puzzle_and_solution = get_puzzle_and_solution;
129
130
  exports.register_remote_coins = register_remote_coins;
130
131
  exports.chia_wallet_service = "chia_wallet";
131
132
  // # Key management
@@ -176,7 +177,7 @@ async function get_sync_status(agent, data) {
176
177
  }
177
178
  exports.get_height_info_command = "get_height_info";
178
179
  async function get_height_info(agent, data) {
179
- return agent.sendMessage(exports.chia_wallet_service, exports.get_height_info_command);
180
+ return agent.sendMessage(exports.chia_wallet_service, exports.get_height_info_command, data);
180
181
  }
181
182
  exports.push_tx_command = "push_tx";
182
183
  async function push_tx(agent, data) {
@@ -629,6 +630,10 @@ exports.execute_signing_instructions_command = "execute_signing_instructions";
629
630
  async function execute_signing_instructions(agent, data) {
630
631
  return agent.sendMessage(exports.chia_wallet_service, exports.execute_signing_instructions_command, data);
631
632
  }
633
+ exports.get_puzzle_and_solution_command = "get_puzzle_and_solution";
634
+ async function get_puzzle_and_solution(agent, data) {
635
+ return agent.sendMessage(exports.chia_wallet_service, exports.get_puzzle_and_solution_command, data);
636
+ }
632
637
  exports.register_remote_coins_command = "register_remote_coins";
633
638
  async function register_remote_coins(agent, data) {
634
639
  return agent.sendMessage(exports.chia_wallet_service, exports.register_remote_coins_command, data);
package/api/types.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { NodeType } from "./chia/protocols/outbound_message";
2
2
  import { float, str } from "./chia/types/_python_types_";
3
- import { int, uint16 } from "./chia_rs/wheel/python/sized_ints";
3
+ import { int, uint16, uint64 } from "./chia_rs/wheel/python/sized_ints";
4
4
  import { bytes32 } from "./chia_rs/wheel/python/sized_bytes";
5
5
  import { TRPCAgent } from "../rpc/index";
6
6
  import { TDaemon } from "../daemon/index";
@@ -24,7 +24,7 @@ export type TConnectionGeneral = {
24
24
  peer_server_port?: uint16;
25
25
  node_id: bytes32;
26
26
  creation_time: float;
27
- bytes_read: int;
28
- bytes_written: int;
27
+ bytes_read: uint64;
28
+ bytes_written: uint64;
29
29
  last_message_time: float;
30
30
  };
@@ -41,12 +41,12 @@ export type TGetBlockchainStateBroadCast = {
41
41
  sub_slot_iters: uint64;
42
42
  space: uint128;
43
43
  mempool_size: int;
44
- mempool_cost: int;
44
+ mempool_cost: uint64;
45
45
  mempool_min_fees: {
46
46
  cost_5000000: float;
47
47
  };
48
- mempool_max_total_cost: int;
49
- block_max_cost: int;
48
+ mempool_max_total_cost: uint64;
49
+ block_max_cost: uint64;
50
50
  node_id: str;
51
51
  };
52
52
  };
@@ -62,7 +62,7 @@ export type TBlockBroadCast = Record<string, never> | {
62
62
  block_cost?: uint64;
63
63
  block_fees?: uint64;
64
64
  timestamp?: uint64;
65
- transaction_generator_size_bytes?: int;
65
+ transaction_generator_size_bytes?: uint64;
66
66
  transaction_generator_ref_list: uint32[];
67
67
  receive_block_result?: AddBlockResult;
68
68
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chia-agent",
3
- "version": "19.1.0",
3
+ "version": "20.0.0",
4
4
  "author": "ChiaMineJP <admin@chiamine.jp>",
5
5
  "description": "chia rpc/websocket client library",
6
6
  "license": "MIT",
@@ -1,7 +0,0 @@
1
- import { SpendBundleConditions } from "../../chia_rs/chia-consensus/owned_conditions";
2
- import { Optional } from "../types/_python_types_";
3
- import { uint16 } from "../../chia_rs/wheel/python/sized_ints";
4
- export type NPCResult = {
5
- error: Optional<uint16>;
6
- conds: Optional<SpendBundleConditions>;
7
- };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });