chia-agent 13.2.0 → 14.0.0-beta.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 +6 -0
- package/README.md +3 -3
- package/api/rpc/common/index.d.ts +6 -6
- package/api/rpc/crawler/index.d.ts +2 -2
- package/api/rpc/data_layer/index.d.ts +30 -30
- package/api/rpc/farmer/index.d.ts +13 -13
- package/api/rpc/full_node/index.d.ts +37 -37
- package/api/rpc/harvester/index.d.ts +8 -8
- package/api/rpc/wallet/index.d.ts +137 -137
- package/config/index.js +1 -1
- package/daemon/index.js +2 -3
- package/package.json +1 -1
- package/rpc/index.d.ts +1 -5
- package/rpc/index.js +16 -2
|
@@ -40,14 +40,14 @@ export declare type TLoginResponse = {
|
|
|
40
40
|
error: "Unknown Error";
|
|
41
41
|
};
|
|
42
42
|
export declare type WsLoginMessage = GetMessageType<chia_wallet_service, log_in_command, TLoginResponse>;
|
|
43
|
-
export declare function log_in<T extends TRPCAgent | TDaemon>(agent: T, data: TLoginRequest): Promise<
|
|
43
|
+
export declare function log_in<T extends TRPCAgent | TDaemon>(agent: T, data: TLoginRequest): Promise<ResType<T, TLoginResponse, WsLoginMessage>>;
|
|
44
44
|
export declare const get_logged_in_fingerprint_command = "get_logged_in_fingerprint";
|
|
45
45
|
export declare type get_logged_in_fingerprint_command = typeof get_logged_in_fingerprint_command;
|
|
46
46
|
export declare type TGetLoggedInFingerprintResponse = {
|
|
47
47
|
fingerprint: Optional<int>;
|
|
48
48
|
};
|
|
49
49
|
export declare type WsGetLoggedInFingerprintMessage = GetMessageType<chia_wallet_service, get_logged_in_fingerprint_command, TGetLoggedInFingerprintResponse>;
|
|
50
|
-
export declare function get_logged_in_fingerprint<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
50
|
+
export declare function get_logged_in_fingerprint<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetLoggedInFingerprintResponse, WsGetLoggedInFingerprintMessage>>;
|
|
51
51
|
export declare const get_public_keys_command = "get_public_keys";
|
|
52
52
|
export declare type get_public_keys_command = typeof get_public_keys_command;
|
|
53
53
|
export declare type TGetPublicKeysRequest = {};
|
|
@@ -57,7 +57,7 @@ export declare type TGetPublicKeysResponse = {
|
|
|
57
57
|
keyring_is_locked: True;
|
|
58
58
|
};
|
|
59
59
|
export declare type WsGetPublicKeysMessage = GetMessageType<chia_wallet_service, get_public_keys_command, TGetPublicKeysResponse>;
|
|
60
|
-
export declare function get_public_keys<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
60
|
+
export declare function get_public_keys<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetPublicKeysResponse, WsGetPublicKeysMessage>>;
|
|
61
61
|
export declare const get_private_key_command = "get_private_key";
|
|
62
62
|
export declare type get_private_key_command = typeof get_private_key_command;
|
|
63
63
|
export declare type TGetPrivateKeyRequest = {
|
|
@@ -79,7 +79,7 @@ export declare type TGetPrivateKeyResponse = {
|
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
81
|
export declare type WsGetPrivateKeyMessage = GetMessageType<chia_wallet_service, get_private_key_command, TGetPrivateKeyResponse>;
|
|
82
|
-
export declare function get_private_key<T extends TRPCAgent | TDaemon>(agent: T, data: TGetPrivateKeyRequest): Promise<
|
|
82
|
+
export declare function get_private_key<T extends TRPCAgent | TDaemon>(agent: T, data: TGetPrivateKeyRequest): Promise<ResType<T, TGetPrivateKeyResponse, WsGetPrivateKeyMessage>>;
|
|
83
83
|
export declare const generate_mnemonic_command = "generate_mnemonic";
|
|
84
84
|
export declare type generate_mnemonic_command = typeof generate_mnemonic_command;
|
|
85
85
|
export declare type TGenerateMnemonicRequest = {};
|
|
@@ -87,7 +87,7 @@ export declare type TGenerateMnemonicResponse = {
|
|
|
87
87
|
mnemonic: str[];
|
|
88
88
|
};
|
|
89
89
|
export declare type WsGenerateMnemonicMessage = GetMessageType<chia_wallet_service, generate_mnemonic_command, TGenerateMnemonicResponse>;
|
|
90
|
-
export declare function generate_mnemonic<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
90
|
+
export declare function generate_mnemonic<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGenerateMnemonicResponse, WsGenerateMnemonicMessage>>;
|
|
91
91
|
export declare const add_key_command = "add_key";
|
|
92
92
|
export declare type add_key_command = typeof add_key_command;
|
|
93
93
|
export declare type TAddKeyRequest = {
|
|
@@ -101,7 +101,7 @@ export declare type TAddKeyResponse = {
|
|
|
101
101
|
fingerprint: int;
|
|
102
102
|
};
|
|
103
103
|
export declare type WsAddKeyMessage = GetMessageType<chia_wallet_service, add_key_command, TAddKeyResponse>;
|
|
104
|
-
export declare function add_key<T extends TRPCAgent | TDaemon>(agent: T, data: TAddKeyRequest): Promise<
|
|
104
|
+
export declare function add_key<T extends TRPCAgent | TDaemon>(agent: T, data: TAddKeyRequest): Promise<ResType<T, TAddKeyResponse, WsAddKeyMessage>>;
|
|
105
105
|
export declare const delete_key_command = "delete_key";
|
|
106
106
|
export declare type delete_key_command = typeof delete_key_command;
|
|
107
107
|
export declare type TDeleteKeyRequest = {
|
|
@@ -109,7 +109,7 @@ export declare type TDeleteKeyRequest = {
|
|
|
109
109
|
};
|
|
110
110
|
export declare type TDeleteKeyResponse = {};
|
|
111
111
|
export declare type WsDeleteKeyMessage = GetMessageType<chia_wallet_service, delete_key_command, TDeleteKeyResponse>;
|
|
112
|
-
export declare function delete_key<T extends TRPCAgent | TDaemon>(agent: T, data: TDeleteKeyRequest): Promise<
|
|
112
|
+
export declare function delete_key<T extends TRPCAgent | TDaemon>(agent: T, data: TDeleteKeyRequest): Promise<ResType<T, TDeleteKeyResponse, WsDeleteKeyMessage>>;
|
|
113
113
|
export declare const check_delete_key_command = "check_delete_key";
|
|
114
114
|
export declare type check_delete_key_command = typeof check_delete_key_command;
|
|
115
115
|
export declare type TCheckDeleteKeyRequest = {
|
|
@@ -123,7 +123,7 @@ export declare type TCheckDeleteKeyResponse = {
|
|
|
123
123
|
wallet_balance: bool;
|
|
124
124
|
};
|
|
125
125
|
export declare type WsCheckDeleteKeyMessage = GetMessageType<chia_wallet_service, check_delete_key_command, TCheckDeleteKeyResponse>;
|
|
126
|
-
export declare function check_delete_key<T extends TRPCAgent | TDaemon>(agent: T, data: TCheckDeleteKeyRequest): Promise<
|
|
126
|
+
export declare function check_delete_key<T extends TRPCAgent | TDaemon>(agent: T, data: TCheckDeleteKeyRequest): Promise<ResType<T, TCheckDeleteKeyResponse, WsCheckDeleteKeyMessage>>;
|
|
127
127
|
export declare const delete_all_keys_command = "delete_all_keys";
|
|
128
128
|
export declare type delete_all_keys_command = typeof delete_all_keys_command;
|
|
129
129
|
export declare type TDeleteAllKeysRequest = {};
|
|
@@ -132,7 +132,7 @@ export declare type TDeleteAllKeysResponse = {} | {
|
|
|
132
132
|
error: str;
|
|
133
133
|
};
|
|
134
134
|
export declare type WsDeleteAllKeysMessage = GetMessageType<chia_wallet_service, delete_all_keys_command, TDeleteAllKeysResponse>;
|
|
135
|
-
export declare function delete_all_keys<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
135
|
+
export declare function delete_all_keys<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TDeleteAllKeysResponse, WsDeleteAllKeysMessage>>;
|
|
136
136
|
export declare const set_wallet_resync_on_startup_command = "set_wallet_resync_on_startup";
|
|
137
137
|
export declare type set_wallet_resync_on_startup_command = typeof set_wallet_resync_on_startup_command;
|
|
138
138
|
export declare type TSetWalletResyncOnStartupRequest = {
|
|
@@ -142,7 +142,7 @@ export declare type TSetWalletResyncOnStartupResponse = {
|
|
|
142
142
|
success: True;
|
|
143
143
|
};
|
|
144
144
|
export declare type WsSetWalletResyncOnStartupMessage = GetMessageType<chia_wallet_service, set_wallet_resync_on_startup_command, TSetWalletResyncOnStartupResponse>;
|
|
145
|
-
export declare function set_wallet_resync_on_startup<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
145
|
+
export declare function set_wallet_resync_on_startup<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TSetWalletResyncOnStartupResponse, WsSetWalletResyncOnStartupMessage>>;
|
|
146
146
|
export declare const get_sync_status_command = "get_sync_status";
|
|
147
147
|
export declare type get_sync_status_command = typeof get_sync_status_command;
|
|
148
148
|
export declare type TGetSyncStatusRequest = {};
|
|
@@ -152,7 +152,7 @@ export declare type TGetSyncStatusResponse = {
|
|
|
152
152
|
genesis_initialized: bool;
|
|
153
153
|
};
|
|
154
154
|
export declare type WsGetSyncStatusMessage = GetMessageType<chia_wallet_service, get_sync_status_command, TGetSyncStatusResponse>;
|
|
155
|
-
export declare function get_sync_status<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
155
|
+
export declare function get_sync_status<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetSyncStatusResponse, WsGetSyncStatusMessage>>;
|
|
156
156
|
export declare const get_height_info_command = "get_height_info";
|
|
157
157
|
export declare type get_height_info_command = typeof get_height_info_command;
|
|
158
158
|
export declare type TGetHeightInfoRequest = {};
|
|
@@ -160,7 +160,7 @@ export declare type TGetHeightInfoResponse = {
|
|
|
160
160
|
height: uint32;
|
|
161
161
|
};
|
|
162
162
|
export declare type WsGetHeightInfoMessage = GetMessageType<chia_wallet_service, get_height_info_command, TGetHeightInfoResponse>;
|
|
163
|
-
export declare function get_height_info<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
163
|
+
export declare function get_height_info<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetHeightInfoResponse, WsGetHeightInfoMessage>>;
|
|
164
164
|
export declare const push_tx_command = "push_tx";
|
|
165
165
|
export declare type push_tx_command = typeof push_tx_command;
|
|
166
166
|
export declare type TPushTxRequest = {
|
|
@@ -168,7 +168,7 @@ export declare type TPushTxRequest = {
|
|
|
168
168
|
};
|
|
169
169
|
export declare type TPushTxResponse = {};
|
|
170
170
|
export declare type WsPushTxMessageOfWallet = GetMessageType<chia_wallet_service, push_tx_command, TPushTxResponse>;
|
|
171
|
-
export declare function push_tx<T extends TRPCAgent | TDaemon>(agent: T, data: TPushTxRequest): Promise<
|
|
171
|
+
export declare function push_tx<T extends TRPCAgent | TDaemon>(agent: T, data: TPushTxRequest): Promise<ResType<T, TPushTxResponseOfWallet, WsPushTxMessageOfWallet>>;
|
|
172
172
|
export declare const push_transactions_command = "push_transactions";
|
|
173
173
|
export declare type push_transactions_command = typeof push_transactions_command;
|
|
174
174
|
export declare type TPushTransactionsRequest = {
|
|
@@ -176,7 +176,7 @@ export declare type TPushTransactionsRequest = {
|
|
|
176
176
|
};
|
|
177
177
|
export declare type TPushTransactionsResponse = {};
|
|
178
178
|
export declare type WsPushTransactionsMessage = GetMessageType<chia_wallet_service, push_transactions_command, TPushTransactionsResponse>;
|
|
179
|
-
export declare function push_transactions<T extends TRPCAgent | TDaemon>(agent: T, data: TPushTransactionsRequest): Promise<
|
|
179
|
+
export declare function push_transactions<T extends TRPCAgent | TDaemon>(agent: T, data: TPushTransactionsRequest): Promise<ResType<T, TPushTransactionsResponse, WsPushTransactionsMessage>>;
|
|
180
180
|
export declare const farm_block_command = "farm_block";
|
|
181
181
|
export declare type farm_block_command = typeof farm_block_command;
|
|
182
182
|
export declare type TFarmBlockRequest = {
|
|
@@ -184,25 +184,25 @@ export declare type TFarmBlockRequest = {
|
|
|
184
184
|
};
|
|
185
185
|
export declare type TFarmBlockResponse = {};
|
|
186
186
|
export declare type WsFarmBlockMessage = GetMessageType<chia_wallet_service, farm_block_command, TFarmBlockResponse>;
|
|
187
|
-
export declare function farm_block<T extends TRPCAgent | TDaemon>(agent: T, data: TFarmBlockRequest): Promise<
|
|
187
|
+
export declare function farm_block<T extends TRPCAgent | TDaemon>(agent: T, data: TFarmBlockRequest): Promise<ResType<T, TFarmBlockResponse, WsFarmBlockMessage>>;
|
|
188
188
|
export declare const get_timestamp_for_height_command = "get_timestamp_for_height";
|
|
189
189
|
export declare type get_timestamp_for_height_command = typeof get_timestamp_for_height_command;
|
|
190
190
|
export declare type TGetTimestampForHeightResponse = {
|
|
191
191
|
timestamp: uint64;
|
|
192
192
|
};
|
|
193
193
|
export declare type WsGetTimestampForHeightMessage = GetMessageType<chia_wallet_service, get_timestamp_for_height_command, TGetTimestampForHeightResponse>;
|
|
194
|
-
export declare function get_timestamp_for_height<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
194
|
+
export declare function get_timestamp_for_height<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetTimestampForHeightResponse, WsGetTimestampForHeightMessage>>;
|
|
195
195
|
export declare const set_auto_claim_command = "set_auto_claim";
|
|
196
196
|
export declare type set_auto_claim_command = typeof set_auto_claim_command;
|
|
197
197
|
export declare type TSetAutoClaimRequest = AutoClaimSettings;
|
|
198
198
|
export declare type TSetAutoClaimResponse = AutoClaimSettings;
|
|
199
199
|
export declare type WsSetAutoClaimMessage = GetMessageType<chia_wallet_service, set_auto_claim_command, TSetAutoClaimResponse>;
|
|
200
|
-
export declare function set_auto_claim<T extends TRPCAgent | TDaemon>(agent: T, data: TSetAutoClaimRequest): Promise<
|
|
200
|
+
export declare function set_auto_claim<T extends TRPCAgent | TDaemon>(agent: T, data: TSetAutoClaimRequest): Promise<ResType<T, AutoClaimSettings, WsSetAutoClaimMessage>>;
|
|
201
201
|
export declare const get_auto_claim_command = "get_auto_claim";
|
|
202
202
|
export declare type get_auto_claim_command = typeof get_auto_claim_command;
|
|
203
203
|
export declare type TGetAutoClaimResponse = AutoClaimSettings;
|
|
204
204
|
export declare type WsGetAutoClaimMessage = GetMessageType<chia_wallet_service, get_auto_claim_command, TGetAutoClaimResponse>;
|
|
205
|
-
export declare function get_auto_claim<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
205
|
+
export declare function get_auto_claim<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, AutoClaimSettings, WsGetAutoClaimMessage>>;
|
|
206
206
|
export declare const get_initial_freeze_period_command_of_wallet = "get_initial_freeze_period";
|
|
207
207
|
export declare type get_initial_freeze_period_command_of_wallet = typeof get_initial_freeze_period_command_of_wallet;
|
|
208
208
|
export declare type TGetInitialFreezePeriodRequestOfWallet = {};
|
|
@@ -210,7 +210,7 @@ export declare type TGetInitialFreezePeriodResponseOfWallet = {
|
|
|
210
210
|
INITIAL_FREEZE_END_TIMESTAMP: 1620061200;
|
|
211
211
|
};
|
|
212
212
|
export declare type WsGetInitialFreezePeriodMessageOfWallet = GetMessageType<chia_wallet_service, get_initial_freeze_period_command_of_wallet, TGetInitialFreezePeriodResponseOfWallet>;
|
|
213
|
-
export declare function get_initial_freeze_period_of_wallet<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
213
|
+
export declare function get_initial_freeze_period_of_wallet<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetInitialFreezePeriodResponseOfWallet, WsGetInitialFreezePeriodMessageOfWallet>>;
|
|
214
214
|
export declare const get_network_info_command_of_wallet = "get_network_info";
|
|
215
215
|
export declare type get_network_info_command_of_wallet = typeof get_network_info_command_of_wallet;
|
|
216
216
|
export declare type TGetNetworkInfoRequestOfWallet = {};
|
|
@@ -219,7 +219,7 @@ export declare type TGetNetworkInfoResponseOfWallet = {
|
|
|
219
219
|
network_prefix: str;
|
|
220
220
|
};
|
|
221
221
|
export declare type WsGetNetworkInfoMessageOfWallet = GetMessageType<chia_wallet_service, get_network_info_command_of_wallet, TGetNetworkInfoResponseOfWallet>;
|
|
222
|
-
export declare function get_network_info_of_wallet<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
222
|
+
export declare function get_network_info_of_wallet<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetNetworkInfoResponseOfWallet, WsGetNetworkInfoMessageOfWallet>>;
|
|
223
223
|
export declare const get_wallets_command = "get_wallets";
|
|
224
224
|
export declare type get_wallets_command = typeof get_wallets_command;
|
|
225
225
|
export declare type TGetWalletsRequest = {
|
|
@@ -231,7 +231,7 @@ export declare type TGetWalletsResponse = {
|
|
|
231
231
|
fingerprint?: int;
|
|
232
232
|
};
|
|
233
233
|
export declare type WsGetWalletsMessage = GetMessageType<chia_wallet_service, get_wallets_command, TGetWalletsResponse>;
|
|
234
|
-
export declare function get_wallets<T extends TRPCAgent | TDaemon>(agent: T, data: TGetWalletsRequest): Promise<
|
|
234
|
+
export declare function get_wallets<T extends TRPCAgent | TDaemon>(agent: T, data: TGetWalletsRequest): Promise<ResType<T, TGetWalletsResponse, WsGetWalletsMessage>>;
|
|
235
235
|
export declare type TCreate_New_CAT_WalletRequest = {
|
|
236
236
|
fee?: uint64;
|
|
237
237
|
wallet_type: "cat_wallet";
|
|
@@ -370,7 +370,7 @@ export declare type create_new_wallet_command = typeof create_new_wallet_command
|
|
|
370
370
|
export declare type TCreateNewWalletRequest = (TCreate_New_CAT_WalletRequest | TCreate_New_RL_WalletRequest | TCreate_New_DID_WalletRequest | TCreate_New_DAO_WalletRequest | TCreate_New_NFT_WalletRequest | TCreate_New_Pool_WalletRequest) & TxEndpoint;
|
|
371
371
|
export declare type TCreateNewWalletResponse = TCreate_New_CAT_WalletResponse | TCreate_New_RL_WalletResponse | TCreate_New_DID_WalletResponse | TCreate_New_DAO_WalletResponse | TCreate_New_NFT_WalletResponse | TCreate_New_Pool_WalletResponse | TCreateWalletErrorResponse;
|
|
372
372
|
export declare type WsCreateNewWalletMessage = GetMessageType<chia_wallet_service, create_new_wallet_command, TCreateNewWalletResponse>;
|
|
373
|
-
export declare function create_new_wallet<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateNewWalletRequest): Promise<
|
|
373
|
+
export declare function create_new_wallet<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateNewWalletRequest): Promise<ResType<T, TCreateNewWalletResponse, WsCreateNewWalletMessage>>;
|
|
374
374
|
export declare type WalletBalance = Balance & {
|
|
375
375
|
wallet_id: uint32;
|
|
376
376
|
wallet_type: int;
|
|
@@ -386,7 +386,7 @@ export declare type TGetWalletBalanceResponse = {
|
|
|
386
386
|
wallet_balance: WalletBalance;
|
|
387
387
|
};
|
|
388
388
|
export declare type WsGetWalletBalanceMessage = GetMessageType<chia_wallet_service, get_wallet_balance_command, TGetWalletBalanceResponse>;
|
|
389
|
-
export declare function get_wallet_balance<T extends TRPCAgent | TDaemon>(agent: T, data: TGetWalletBalanceRequest): Promise<
|
|
389
|
+
export declare function get_wallet_balance<T extends TRPCAgent | TDaemon>(agent: T, data: TGetWalletBalanceRequest): Promise<ResType<T, TGetWalletBalanceResponse, WsGetWalletBalanceMessage>>;
|
|
390
390
|
export declare const get_wallet_balances_command = "get_wallet_balances";
|
|
391
391
|
export declare type get_wallet_balances_command = typeof get_wallet_balances_command;
|
|
392
392
|
export declare type TGetWalletBalancesRequest = {
|
|
@@ -396,7 +396,7 @@ export declare type TGetWalletBalancesResponse = {
|
|
|
396
396
|
wallet_balances: Record<uint32, WalletBalance>;
|
|
397
397
|
};
|
|
398
398
|
export declare type WsGetWalletBalancesMessage = GetMessageType<chia_wallet_service, get_wallet_balances_command, TGetWalletBalancesResponse>;
|
|
399
|
-
export declare function get_wallet_balances<T extends TRPCAgent | TDaemon>(agent: T, data: TGetWalletBalancesRequest): Promise<
|
|
399
|
+
export declare function get_wallet_balances<T extends TRPCAgent | TDaemon>(agent: T, data: TGetWalletBalancesRequest): Promise<ResType<T, TGetWalletBalancesResponse, WsGetWalletBalancesMessage>>;
|
|
400
400
|
export declare const get_transaction_command = "get_transaction";
|
|
401
401
|
export declare type get_transaction_command = typeof get_transaction_command;
|
|
402
402
|
export declare type TGetTransactionRequest = {
|
|
@@ -407,7 +407,7 @@ export declare type TGetTransactionResponse = {
|
|
|
407
407
|
transaction_id: TransactionRecord["name"];
|
|
408
408
|
};
|
|
409
409
|
export declare type WsGetTransactionMessage = GetMessageType<chia_wallet_service, get_transaction_command, TGetTransactionResponse>;
|
|
410
|
-
export declare function get_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionRequest): Promise<
|
|
410
|
+
export declare function get_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionRequest): Promise<ResType<T, TGetTransactionResponse, WsGetTransactionMessage>>;
|
|
411
411
|
export declare const get_transactions_command = "get_transactions";
|
|
412
412
|
export declare type get_transactions_command = typeof get_transactions_command;
|
|
413
413
|
export declare type TGetTransactionsRequest = {
|
|
@@ -425,7 +425,7 @@ export declare type TGetTransactionsResponse = {
|
|
|
425
425
|
wallet_id: int;
|
|
426
426
|
};
|
|
427
427
|
export declare type WsGetTransactionsMessage = GetMessageType<chia_wallet_service, get_transactions_command, TGetTransactionsResponse>;
|
|
428
|
-
export declare function get_transactions<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionsRequest): Promise<
|
|
428
|
+
export declare function get_transactions<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionsRequest): Promise<ResType<T, TGetTransactionsResponse, WsGetTransactionsMessage>>;
|
|
429
429
|
export declare const get_next_address_command = "get_next_address";
|
|
430
430
|
export declare type get_next_address_command = typeof get_next_address_command;
|
|
431
431
|
export declare type TGetNextAddressRequest = {
|
|
@@ -437,7 +437,7 @@ export declare type TGetNextAddressResponse = {
|
|
|
437
437
|
address: str;
|
|
438
438
|
};
|
|
439
439
|
export declare type WsGetNextAddressMessage = GetMessageType<chia_wallet_service, get_next_address_command, TGetNextAddressResponse>;
|
|
440
|
-
export declare function get_next_address<T extends TRPCAgent | TDaemon>(agent: T, data: TGetNextAddressRequest): Promise<
|
|
440
|
+
export declare function get_next_address<T extends TRPCAgent | TDaemon>(agent: T, data: TGetNextAddressRequest): Promise<ResType<T, TGetNextAddressResponse, WsGetNextAddressMessage>>;
|
|
441
441
|
export declare const send_transaction_command = "send_transaction";
|
|
442
442
|
export declare type send_transaction_command = typeof send_transaction_command;
|
|
443
443
|
export declare type TSendTransactionRequest = {
|
|
@@ -456,7 +456,7 @@ export declare type TSendTransactionResponse = {
|
|
|
456
456
|
transaction_id: TransactionRecord["name"];
|
|
457
457
|
};
|
|
458
458
|
export declare type WsSendTransactionMessage = GetMessageType<chia_wallet_service, send_transaction_command, TSendTransactionResponse>;
|
|
459
|
-
export declare function send_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TSendTransactionRequest): Promise<
|
|
459
|
+
export declare function send_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TSendTransactionRequest): Promise<ResType<T, TSendTransactionResponse, WsSendTransactionMessage>>;
|
|
460
460
|
export declare const send_transaction_multi_command = "send_transaction_multi";
|
|
461
461
|
export declare type send_transaction_multi_command = typeof send_transaction_multi_command;
|
|
462
462
|
export declare type TSendTransactionMultiRequest = {
|
|
@@ -487,7 +487,7 @@ export declare type TSendTransactionMultiResponse = {
|
|
|
487
487
|
transaction_id: TransactionRecordConvenience["name"];
|
|
488
488
|
};
|
|
489
489
|
export declare type WsSendTransactionMultiMessage = GetMessageType<chia_wallet_service, send_transaction_multi_command, TSendTransactionMultiResponse>;
|
|
490
|
-
export declare function send_transaction_multi<T extends TRPCAgent | TDaemon>(agent: T, data: TSendTransactionMultiRequest): Promise<
|
|
490
|
+
export declare function send_transaction_multi<T extends TRPCAgent | TDaemon>(agent: T, data: TSendTransactionMultiRequest): Promise<ResType<T, TSendTransactionMultiResponse, WsSendTransactionMultiMessage>>;
|
|
491
491
|
export declare const spend_clawback_coins_command = "spend_clawback_coins";
|
|
492
492
|
export declare type spend_clawback_coins_command = typeof spend_clawback_coins_command;
|
|
493
493
|
export declare type TSpendClawbackCoinsRequest = {
|
|
@@ -501,7 +501,7 @@ export declare type TSpendClawbackCoinsResponse = {
|
|
|
501
501
|
transaction_ids: str[];
|
|
502
502
|
};
|
|
503
503
|
export declare type WsSpendClawbackCoinsMessage = GetMessageType<chia_wallet_service, spend_clawback_coins_command, TSpendClawbackCoinsResponse>;
|
|
504
|
-
export declare function spend_clawback_coins<T extends TRPCAgent | TDaemon>(agent: T, data: TSpendClawbackCoinsRequest): Promise<
|
|
504
|
+
export declare function spend_clawback_coins<T extends TRPCAgent | TDaemon>(agent: T, data: TSpendClawbackCoinsRequest): Promise<ResType<T, TSpendClawbackCoinsResponse, WsSpendClawbackCoinsMessage>>;
|
|
505
505
|
export declare const get_coin_records_command = "get_coin_records";
|
|
506
506
|
export declare type get_coin_records_command = typeof get_coin_records_command;
|
|
507
507
|
export declare type TGetCoinRecordsRequest = GetCoinRecords;
|
|
@@ -510,7 +510,7 @@ export declare type TGetCoinRecordsResponse = {
|
|
|
510
510
|
total_count: uint32 | None;
|
|
511
511
|
};
|
|
512
512
|
export declare type WsGetCoinRecordsMessage = GetMessageType<chia_wallet_service, get_coin_records_command, TGetCoinRecordsResponse>;
|
|
513
|
-
export declare function get_coin_records<T extends TRPCAgent | TDaemon>(agent: T, data: TGetCoinRecordsRequest): Promise<
|
|
513
|
+
export declare function get_coin_records<T extends TRPCAgent | TDaemon>(agent: T, data: TGetCoinRecordsRequest): Promise<ResType<T, TGetCoinRecordsResponse, WsGetCoinRecordsMessage>>;
|
|
514
514
|
export declare const get_transaction_count_command = "get_transaction_count";
|
|
515
515
|
export declare type get_transaction_count_command = typeof get_transaction_count_command;
|
|
516
516
|
export declare type TGetTransactionCountRequest = {
|
|
@@ -523,7 +523,7 @@ export declare type TGetTransactionCountResponse = {
|
|
|
523
523
|
wallet_id: int;
|
|
524
524
|
};
|
|
525
525
|
export declare type WsGetTransactionCountMessage = GetMessageType<chia_wallet_service, get_transaction_count_command, TGetTransactionCountResponse>;
|
|
526
|
-
export declare function get_transaction_count<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionCountRequest): Promise<
|
|
526
|
+
export declare function get_transaction_count<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionCountRequest): Promise<ResType<T, TGetTransactionCountResponse, WsGetTransactionCountMessage>>;
|
|
527
527
|
export declare const get_farmed_amount_command = "get_farmed_amount";
|
|
528
528
|
export declare type get_farmed_amount_command = typeof get_farmed_amount_command;
|
|
529
529
|
export declare type TGetFarmedAmountRequest = {};
|
|
@@ -537,7 +537,7 @@ export declare type TGetFarmedAmountResponse = {
|
|
|
537
537
|
blocks_won: uint32;
|
|
538
538
|
};
|
|
539
539
|
export declare type WsGetFarmedAmountMessage = GetMessageType<chia_wallet_service, get_farmed_amount_command, TGetFarmedAmountResponse>;
|
|
540
|
-
export declare function get_farmed_amount<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
540
|
+
export declare function get_farmed_amount<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetFarmedAmountResponse, WsGetFarmedAmountMessage>>;
|
|
541
541
|
export declare type TAdditions = {
|
|
542
542
|
amount: uint64;
|
|
543
543
|
puzzle_hash: str;
|
|
@@ -568,7 +568,7 @@ export declare type TCreateSignedTransactionResponse = {
|
|
|
568
568
|
signed_tx: TransactionRecordConvenience;
|
|
569
569
|
};
|
|
570
570
|
export declare type WsCreateSignedTransactionMessage = GetMessageType<chia_wallet_service, create_signed_transaction_command, TCreateSignedTransactionResponse>;
|
|
571
|
-
export declare function create_signed_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateSignedTransactionRequest): Promise<
|
|
571
|
+
export declare function create_signed_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateSignedTransactionRequest): Promise<ResType<T, TCreateSignedTransactionResponse, WsCreateSignedTransactionMessage>>;
|
|
572
572
|
export declare const delete_unconfirmed_transactions_command = "delete_unconfirmed_transactions";
|
|
573
573
|
export declare type delete_unconfirmed_transactions_command = typeof delete_unconfirmed_transactions_command;
|
|
574
574
|
export declare type TDeleteUnconfirmedTransactionsRequest = {
|
|
@@ -576,7 +576,7 @@ export declare type TDeleteUnconfirmedTransactionsRequest = {
|
|
|
576
576
|
};
|
|
577
577
|
export declare type TDeleteUnconfirmedTransactionsResponse = {};
|
|
578
578
|
export declare type WsDeleteUnconfirmedTransactionsMessage = GetMessageType<chia_wallet_service, delete_unconfirmed_transactions_command, TDeleteUnconfirmedTransactionsResponse>;
|
|
579
|
-
export declare function delete_unconfirmed_transactions<T extends TRPCAgent | TDaemon>(agent: T, data: TDeleteUnconfirmedTransactionsRequest): Promise<
|
|
579
|
+
export declare function delete_unconfirmed_transactions<T extends TRPCAgent | TDaemon>(agent: T, data: TDeleteUnconfirmedTransactionsRequest): Promise<ResType<T, TDeleteUnconfirmedTransactionsResponse, WsDeleteUnconfirmedTransactionsMessage>>;
|
|
580
580
|
export declare const select_coins_command = "select_coins";
|
|
581
581
|
export declare type select_coins_command = typeof select_coins_command;
|
|
582
582
|
export declare type TSelectCoinsRequest = {
|
|
@@ -589,7 +589,7 @@ export declare type TSelectCoinsResponse = {
|
|
|
589
589
|
coins: Coin[];
|
|
590
590
|
};
|
|
591
591
|
export declare type WsSelectCoinsMessage = GetMessageType<chia_wallet_service, select_coins_command, TSelectCoinsResponse>;
|
|
592
|
-
export declare function select_coins<T extends TRPCAgent | TDaemon>(agent: T, data: TSelectCoinsRequest): Promise<
|
|
592
|
+
export declare function select_coins<T extends TRPCAgent | TDaemon>(agent: T, data: TSelectCoinsRequest): Promise<ResType<T, TSelectCoinsResponse, WsSelectCoinsMessage>>;
|
|
593
593
|
export declare const get_spendable_coins_command = "get_spendable_coins";
|
|
594
594
|
export declare type get_spendable_coins_command = typeof get_spendable_coins_command;
|
|
595
595
|
export declare type TGetSpendableCoinsRequest = {
|
|
@@ -606,7 +606,7 @@ export declare type TGetSpendableCoinsResponse = {
|
|
|
606
606
|
unconfirmed_additions: Coin[];
|
|
607
607
|
};
|
|
608
608
|
export declare type WsGetSpendableCoinsMessage = GetMessageType<chia_wallet_service, get_spendable_coins_command, TGetSpendableCoinsResponse>;
|
|
609
|
-
export declare function get_spendable_coins<T extends TRPCAgent | TDaemon>(agent: T, data: TGetSpendableCoinsRequest): Promise<
|
|
609
|
+
export declare function get_spendable_coins<T extends TRPCAgent | TDaemon>(agent: T, data: TGetSpendableCoinsRequest): Promise<ResType<T, TGetSpendableCoinsResponse, WsGetSpendableCoinsMessage>>;
|
|
610
610
|
export declare const get_coin_records_by_names_command = "get_coin_records_by_names";
|
|
611
611
|
export declare type get_coin_records_by_names_command = typeof get_coin_records_by_names_command;
|
|
612
612
|
export declare type TGetCoinRecordsByNamesRequest = {
|
|
@@ -619,7 +619,7 @@ export declare type TGetCoinRecordsByNamesResponse = {
|
|
|
619
619
|
coin_records: CoinRecord[];
|
|
620
620
|
};
|
|
621
621
|
export declare type WsGetCoinRecordsByNamesMessage = GetMessageType<chia_wallet_service, get_coin_records_by_names_command, TGetCoinRecordsByNamesResponse>;
|
|
622
|
-
export declare function get_coin_records_by_names<T extends TRPCAgent | TDaemon>(agent: T, data: TGetCoinRecordsByNamesRequest): Promise<
|
|
622
|
+
export declare function get_coin_records_by_names<T extends TRPCAgent | TDaemon>(agent: T, data: TGetCoinRecordsByNamesRequest): Promise<ResType<T, TGetCoinRecordsByNamesResponse, WsGetCoinRecordsByNamesMessage>>;
|
|
623
623
|
export declare const get_current_derivation_index_command = "get_current_derivation_index";
|
|
624
624
|
export declare type get_current_derivation_index_command = typeof get_current_derivation_index_command;
|
|
625
625
|
export declare type TGetCurrentDerivationIndexResponse = {
|
|
@@ -627,7 +627,7 @@ export declare type TGetCurrentDerivationIndexResponse = {
|
|
|
627
627
|
index: Optional<uint32>;
|
|
628
628
|
};
|
|
629
629
|
export declare type WsGetCurrentDerivationIndexMessage = GetMessageType<chia_wallet_service, get_current_derivation_index_command, TGetCurrentDerivationIndexResponse>;
|
|
630
|
-
export declare function get_current_derivation_index<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
630
|
+
export declare function get_current_derivation_index<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetCurrentDerivationIndexResponse, WsGetCurrentDerivationIndexMessage>>;
|
|
631
631
|
export declare const extend_derivation_index_command = "extend_derivation_index";
|
|
632
632
|
export declare type extend_derivation_index_command = typeof extend_derivation_index_command;
|
|
633
633
|
export declare type TExtendDerivationIndexRequest = {
|
|
@@ -638,7 +638,7 @@ export declare type TExtendDerivationIndexResponse = {
|
|
|
638
638
|
index: Optional<uint32>;
|
|
639
639
|
};
|
|
640
640
|
export declare type WsExtendDerivationIndexMessage = GetMessageType<chia_wallet_service, extend_derivation_index_command, TExtendDerivationIndexResponse>;
|
|
641
|
-
export declare function extend_derivation_index<T extends TRPCAgent | TDaemon>(agent: T, data: TExtendDerivationIndexRequest): Promise<
|
|
641
|
+
export declare function extend_derivation_index<T extends TRPCAgent | TDaemon>(agent: T, data: TExtendDerivationIndexRequest): Promise<ResType<T, TExtendDerivationIndexResponse, WsExtendDerivationIndexMessage>>;
|
|
642
642
|
export declare const get_notifications_command = "get_notifications";
|
|
643
643
|
export declare type get_notifications_command = typeof get_notifications_command;
|
|
644
644
|
export declare type TGetNotificationsRequest = {
|
|
@@ -655,7 +655,7 @@ export declare type TGetNotificationsResponse = {
|
|
|
655
655
|
}>;
|
|
656
656
|
};
|
|
657
657
|
export declare type WsGetNotificationsMessage = GetMessageType<chia_wallet_service, get_notifications_command, TGetNotificationsResponse>;
|
|
658
|
-
export declare function get_notifications<T extends TRPCAgent | TDaemon>(agent: T, data: TGetNotificationsRequest): Promise<
|
|
658
|
+
export declare function get_notifications<T extends TRPCAgent | TDaemon>(agent: T, data: TGetNotificationsRequest): Promise<ResType<T, TGetNotificationsResponse, WsGetNotificationsMessage>>;
|
|
659
659
|
export declare const delete_notifications_command = "delete_notifications";
|
|
660
660
|
export declare type delete_notifications_command = typeof delete_notifications_command;
|
|
661
661
|
export declare type TDeleteNotificationsRequest = {
|
|
@@ -663,7 +663,7 @@ export declare type TDeleteNotificationsRequest = {
|
|
|
663
663
|
};
|
|
664
664
|
export declare type TDeleteNotificationsResponse = {};
|
|
665
665
|
export declare type WsDeleteNotificationsMessage = GetMessageType<chia_wallet_service, delete_notifications_command, TDeleteNotificationsResponse>;
|
|
666
|
-
export declare function delete_notifications<T extends TRPCAgent | TDaemon>(agent: T, data: TDeleteNotificationsRequest): Promise<
|
|
666
|
+
export declare function delete_notifications<T extends TRPCAgent | TDaemon>(agent: T, data: TDeleteNotificationsRequest): Promise<ResType<T, TDeleteNotificationsResponse, WsDeleteNotificationsMessage>>;
|
|
667
667
|
export declare const send_notification_command = "send_notification";
|
|
668
668
|
export declare type send_notification_command = typeof send_notification_command;
|
|
669
669
|
export declare type TSendNotificationRequest = {
|
|
@@ -676,7 +676,7 @@ export declare type TSendNotificationResponse = {
|
|
|
676
676
|
tx: TransactionRecordConvenience;
|
|
677
677
|
};
|
|
678
678
|
export declare type WsSendNotificationMessage = GetMessageType<chia_wallet_service, send_notification_command, TSendNotificationResponse>;
|
|
679
|
-
export declare function send_notification<T extends TRPCAgent | TDaemon>(agent: T, data: TSendNotificationRequest): Promise<
|
|
679
|
+
export declare function send_notification<T extends TRPCAgent | TDaemon>(agent: T, data: TSendNotificationRequest): Promise<ResType<T, TSendNotificationResponse, WsSendNotificationMessage>>;
|
|
680
680
|
export declare const verify_signature_command = "verify_signature";
|
|
681
681
|
export declare type verify_signature_command = typeof verify_signature_command;
|
|
682
682
|
export declare type TVerifySignatureRequest = {
|
|
@@ -693,7 +693,7 @@ export declare type TVerifySignatureResponse = {
|
|
|
693
693
|
error: str;
|
|
694
694
|
};
|
|
695
695
|
export declare type WsVerifySignatureMessage = GetMessageType<chia_wallet_service, verify_signature_command, TVerifySignatureResponse>;
|
|
696
|
-
export declare function verify_signature<T extends TRPCAgent | TDaemon>(agent: T, data: TVerifySignatureRequest): Promise<
|
|
696
|
+
export declare function verify_signature<T extends TRPCAgent | TDaemon>(agent: T, data: TVerifySignatureRequest): Promise<ResType<T, TVerifySignatureResponse, WsVerifySignatureMessage>>;
|
|
697
697
|
export declare const get_transaction_memo_command = "get_transaction_memo";
|
|
698
698
|
export declare type get_transaction_memo_command = typeof get_transaction_memo_command;
|
|
699
699
|
export declare type TGetTransactionMemoRequest = {
|
|
@@ -705,7 +705,7 @@ export declare type TGetTransactionMemoResponse = {
|
|
|
705
705
|
};
|
|
706
706
|
};
|
|
707
707
|
export declare type WsGetTransactionMemoMessage = GetMessageType<chia_wallet_service, get_transaction_memo_command, TGetTransactionMemoResponse>;
|
|
708
|
-
export declare function get_transaction_memo<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionMemoRequest): Promise<
|
|
708
|
+
export declare function get_transaction_memo<T extends TRPCAgent | TDaemon>(agent: T, data: TGetTransactionMemoRequest): Promise<ResType<T, TGetTransactionMemoResponse, WsGetTransactionMemoMessage>>;
|
|
709
709
|
export declare const sign_message_by_address_command = "sign_message_by_address";
|
|
710
710
|
export declare type sign_message_by_address_command = typeof sign_message_by_address_command;
|
|
711
711
|
export declare type TSignMessageByAddressRequest = {
|
|
@@ -721,7 +721,7 @@ export declare type TSignMessageByAddressResponse = {
|
|
|
721
721
|
signing_mode: SigningMode;
|
|
722
722
|
};
|
|
723
723
|
export declare type WsSignMessageByAddressMessage = GetMessageType<chia_wallet_service, sign_message_by_address_command, TSignMessageByAddressResponse>;
|
|
724
|
-
export declare function sign_message_by_address<T extends TRPCAgent | TDaemon>(agent: T, data: TSignMessageByAddressRequest): Promise<
|
|
724
|
+
export declare function sign_message_by_address<T extends TRPCAgent | TDaemon>(agent: T, data: TSignMessageByAddressRequest): Promise<ResType<T, TSignMessageByAddressResponse, WsSignMessageByAddressMessage>>;
|
|
725
725
|
export declare const sign_message_by_id_command = "sign_message_by_id";
|
|
726
726
|
export declare type sign_message_by_id_command = typeof sign_message_by_id_command;
|
|
727
727
|
export declare type TSignMessageByIdRequest = {
|
|
@@ -741,14 +741,14 @@ export declare type TSignMessageByIdResponse = {
|
|
|
741
741
|
signing_mode: SigningMode;
|
|
742
742
|
};
|
|
743
743
|
export declare type WsSignMessageByIdMessage = GetMessageType<chia_wallet_service, sign_message_by_id_command, TSignMessageByIdResponse>;
|
|
744
|
-
export declare function sign_message_by_id<T extends TRPCAgent | TDaemon>(agent: T, data: TSignMessageByIdRequest): Promise<
|
|
744
|
+
export declare function sign_message_by_id<T extends TRPCAgent | TDaemon>(agent: T, data: TSignMessageByIdRequest): Promise<ResType<T, TSignMessageByIdResponse, WsSignMessageByIdMessage>>;
|
|
745
745
|
export declare const get_cat_list_command = "get_cat_list";
|
|
746
746
|
export declare type get_cat_list_command = typeof get_cat_list_command;
|
|
747
747
|
export declare type TGetCatListResponse = {
|
|
748
748
|
cat_list: CAT[];
|
|
749
749
|
};
|
|
750
750
|
export declare type WsGetCatListMessage = GetMessageType<chia_wallet_service, get_cat_list_command, TGetCatListResponse>;
|
|
751
|
-
export declare function get_cat_list<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
751
|
+
export declare function get_cat_list<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetCatListResponse, WsGetCatListMessage>>;
|
|
752
752
|
export declare const cat_set_name_command = "cat_set_name";
|
|
753
753
|
export declare type cat_set_name_command = typeof cat_set_name_command;
|
|
754
754
|
export declare type TCatSetNameRequest = {
|
|
@@ -759,7 +759,7 @@ export declare type TCatSetNameResponse = {
|
|
|
759
759
|
wallet_id: uint32;
|
|
760
760
|
};
|
|
761
761
|
export declare type WsCatSetNameMessage = GetMessageType<chia_wallet_service, cat_set_name_command, TCatSetNameResponse>;
|
|
762
|
-
export declare function cat_set_name<T extends TRPCAgent | TDaemon>(agent: T, data: TCatSetNameRequest): Promise<
|
|
762
|
+
export declare function cat_set_name<T extends TRPCAgent | TDaemon>(agent: T, data: TCatSetNameRequest): Promise<ResType<T, TCatSetNameResponse, WsCatSetNameMessage>>;
|
|
763
763
|
export declare const cat_asset_id_to_name_command = "cat_asset_id_to_name";
|
|
764
764
|
export declare type cat_asset_id_to_name_command = typeof cat_asset_id_to_name_command;
|
|
765
765
|
export declare type TCatAssetIdToNameRequest = {
|
|
@@ -770,7 +770,7 @@ export declare type TCatAssetIdToNameResponse = {
|
|
|
770
770
|
name: str;
|
|
771
771
|
};
|
|
772
772
|
export declare type WsCatAssetIdToNameMessage = GetMessageType<chia_wallet_service, cat_asset_id_to_name_command, TCatAssetIdToNameResponse>;
|
|
773
|
-
export declare function cat_asset_id_to_name<T extends TRPCAgent | TDaemon>(agent: T, data: TCatAssetIdToNameRequest): Promise<
|
|
773
|
+
export declare function cat_asset_id_to_name<T extends TRPCAgent | TDaemon>(agent: T, data: TCatAssetIdToNameRequest): Promise<ResType<T, TCatAssetIdToNameResponse, WsCatAssetIdToNameMessage>>;
|
|
774
774
|
export declare const cat_get_name_command = "cat_get_name";
|
|
775
775
|
export declare type cat_get_name_command = typeof cat_get_name_command;
|
|
776
776
|
export declare type TCatGetNameRequest = {
|
|
@@ -781,7 +781,7 @@ export declare type TCatGetNameResponse = {
|
|
|
781
781
|
name: str;
|
|
782
782
|
};
|
|
783
783
|
export declare type WsCatGetNameMessage = GetMessageType<chia_wallet_service, cat_get_name_command, TCatGetNameResponse>;
|
|
784
|
-
export declare function cat_get_name<T extends TRPCAgent | TDaemon>(agent: T, data: TCatGetNameRequest): Promise<
|
|
784
|
+
export declare function cat_get_name<T extends TRPCAgent | TDaemon>(agent: T, data: TCatGetNameRequest): Promise<ResType<T, TCatGetNameResponse, WsCatGetNameMessage>>;
|
|
785
785
|
export declare const get_stray_cats_command = "get_stray_cats";
|
|
786
786
|
export declare type get_stray_cats_command = typeof get_stray_cats_command;
|
|
787
787
|
export declare type TGetStrayCatsResponse = {
|
|
@@ -793,7 +793,7 @@ export declare type TGetStrayCatsResponse = {
|
|
|
793
793
|
}>;
|
|
794
794
|
};
|
|
795
795
|
export declare type WsGetStrayCatsMessage = GetMessageType<chia_wallet_service, get_stray_cats_command, TGetStrayCatsResponse>;
|
|
796
|
-
export declare function get_stray_cats<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
796
|
+
export declare function get_stray_cats<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetStrayCatsResponse, WsGetStrayCatsMessage>>;
|
|
797
797
|
export declare const cat_spend_command = "cat_spend";
|
|
798
798
|
export declare type cat_spend_command = typeof cat_spend_command;
|
|
799
799
|
export declare type TCatSpendRequest = {
|
|
@@ -813,7 +813,7 @@ export declare type TCatSpendResponse = {
|
|
|
813
813
|
transaction_id: TransactionRecord["name"];
|
|
814
814
|
};
|
|
815
815
|
export declare type WsCatSpendMessage = GetMessageType<chia_wallet_service, cat_spend_command, TCatSpendResponse>;
|
|
816
|
-
export declare function cat_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TCatSpendRequest): Promise<
|
|
816
|
+
export declare function cat_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TCatSpendRequest): Promise<ResType<T, TCatSpendResponse, WsCatSpendMessage>>;
|
|
817
817
|
export declare const cat_get_asset_id_command = "cat_get_asset_id";
|
|
818
818
|
export declare type cat_get_asset_id_command = typeof cat_get_asset_id_command;
|
|
819
819
|
export declare type TCatGetAssetIdRequest = {
|
|
@@ -824,7 +824,7 @@ export declare type TCatGetAssetIdResponse = {
|
|
|
824
824
|
wallet_id: uint32;
|
|
825
825
|
};
|
|
826
826
|
export declare type WsCatGetAssetIdMessage = GetMessageType<chia_wallet_service, cat_get_asset_id_command, TCatGetAssetIdResponse>;
|
|
827
|
-
export declare function cat_get_asset_id<T extends TRPCAgent | TDaemon>(agent: T, data: TCatGetAssetIdRequest): Promise<
|
|
827
|
+
export declare function cat_get_asset_id<T extends TRPCAgent | TDaemon>(agent: T, data: TCatGetAssetIdRequest): Promise<ResType<T, TCatGetAssetIdResponse, WsCatGetAssetIdMessage>>;
|
|
828
828
|
export declare const create_offer_for_ids_command = "create_offer_for_ids";
|
|
829
829
|
export declare type create_offer_for_ids_command = typeof create_offer_for_ids_command;
|
|
830
830
|
export declare type TCreateOfferForIdsRequest = {
|
|
@@ -839,7 +839,7 @@ export declare type TCreateOfferForIdsResponse = {
|
|
|
839
839
|
trade_record: TradeRecordConvenience;
|
|
840
840
|
};
|
|
841
841
|
export declare type WsCreateOfferForIdsMessage = GetMessageType<chia_wallet_service, create_offer_for_ids_command, TCreateOfferForIdsResponse>;
|
|
842
|
-
export declare function create_offer_for_ids<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateOfferForIdsRequest): Promise<
|
|
842
|
+
export declare function create_offer_for_ids<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateOfferForIdsRequest): Promise<ResType<T, TCreateOfferForIdsResponse, WsCreateOfferForIdsMessage>>;
|
|
843
843
|
export declare const get_offer_summary_command = "get_offer_summary";
|
|
844
844
|
export declare type get_offer_summary_command = typeof get_offer_summary_command;
|
|
845
845
|
export declare type TGetOfferSummaryRequest = {
|
|
@@ -857,7 +857,7 @@ export declare type TGetOfferSummaryResponse = {
|
|
|
857
857
|
id: bytes32;
|
|
858
858
|
};
|
|
859
859
|
export declare type WsGetOfferSummaryMessage = GetMessageType<chia_wallet_service, get_offer_summary_command, TGetOfferSummaryResponse>;
|
|
860
|
-
export declare function get_offer_summary<T extends TRPCAgent | TDaemon>(agent: T, data: TGetOfferSummaryRequest): Promise<
|
|
860
|
+
export declare function get_offer_summary<T extends TRPCAgent | TDaemon>(agent: T, data: TGetOfferSummaryRequest): Promise<ResType<T, TGetOfferSummaryResponse, WsGetOfferSummaryMessage>>;
|
|
861
861
|
export declare const check_offer_validity_command = "check_offer_validity";
|
|
862
862
|
export declare type check_offer_validity_command = typeof check_offer_validity_command;
|
|
863
863
|
export declare type TCheckOfferValidityRequest = {
|
|
@@ -868,7 +868,7 @@ export declare type TCheckOfferValidityResponse = {
|
|
|
868
868
|
id: bytes32;
|
|
869
869
|
};
|
|
870
870
|
export declare type WsCheckOfferValidityMessage = GetMessageType<chia_wallet_service, check_offer_validity_command, TCheckOfferValidityResponse>;
|
|
871
|
-
export declare function check_offer_validity<T extends TRPCAgent | TDaemon>(agent: T, data: TCheckOfferValidityRequest): Promise<
|
|
871
|
+
export declare function check_offer_validity<T extends TRPCAgent | TDaemon>(agent: T, data: TCheckOfferValidityRequest): Promise<ResType<T, TCheckOfferValidityResponse, WsCheckOfferValidityMessage>>;
|
|
872
872
|
export declare const take_offer_command = "take_offer";
|
|
873
873
|
export declare type take_offer_command = typeof take_offer_command;
|
|
874
874
|
export declare type TTakeOfferRequest = {
|
|
@@ -880,7 +880,7 @@ export declare type TTakeOfferResponse = {
|
|
|
880
880
|
trade_record: TradeRecordConvenience;
|
|
881
881
|
};
|
|
882
882
|
export declare type WsTakeOfferMessage = GetMessageType<chia_wallet_service, take_offer_command, TTakeOfferResponse>;
|
|
883
|
-
export declare function take_offer<T extends TRPCAgent | TDaemon>(agent: T, data: TTakeOfferRequest): Promise<
|
|
883
|
+
export declare function take_offer<T extends TRPCAgent | TDaemon>(agent: T, data: TTakeOfferRequest): Promise<ResType<T, TTakeOfferResponse, WsTakeOfferMessage>>;
|
|
884
884
|
export declare const get_offer_command = "get_offer";
|
|
885
885
|
export declare type get_offer_command = typeof get_offer_command;
|
|
886
886
|
export declare type TGetOfferRequest = {
|
|
@@ -892,7 +892,7 @@ export declare type TGetOfferResponse = {
|
|
|
892
892
|
offer: Optional<str>;
|
|
893
893
|
};
|
|
894
894
|
export declare type WsGetOfferMessage = GetMessageType<chia_wallet_service, get_offer_command, TGetOfferResponse>;
|
|
895
|
-
export declare function get_offer<T extends TRPCAgent | TDaemon>(agent: T, data: TGetOfferRequest): Promise<
|
|
895
|
+
export declare function get_offer<T extends TRPCAgent | TDaemon>(agent: T, data: TGetOfferRequest): Promise<ResType<T, TGetOfferResponse, WsGetOfferMessage>>;
|
|
896
896
|
export declare const get_all_offers_command = "get_all_offers";
|
|
897
897
|
export declare type get_all_offers_command = typeof get_all_offers_command;
|
|
898
898
|
export declare type TGetAllOffersRequest = {
|
|
@@ -910,7 +910,7 @@ export declare type TGetAllOffersResponse = {
|
|
|
910
910
|
offers: Optional<str[]>;
|
|
911
911
|
};
|
|
912
912
|
export declare type WsGetAllOffersMessage = GetMessageType<chia_wallet_service, get_all_offers_command, TGetAllOffersResponse>;
|
|
913
|
-
export declare function get_all_offers<T extends TRPCAgent | TDaemon>(agent: T, data: TGetAllOffersRequest): Promise<
|
|
913
|
+
export declare function get_all_offers<T extends TRPCAgent | TDaemon>(agent: T, data: TGetAllOffersRequest): Promise<ResType<T, TGetAllOffersResponse, WsGetAllOffersMessage>>;
|
|
914
914
|
export declare const get_offers_count_command = "get_offers_count";
|
|
915
915
|
export declare type get_offers_count_command = typeof get_offers_count_command;
|
|
916
916
|
export declare type TGetOffersCountResponse = {
|
|
@@ -919,7 +919,7 @@ export declare type TGetOffersCountResponse = {
|
|
|
919
919
|
taken_offers_count: int;
|
|
920
920
|
};
|
|
921
921
|
export declare type WsGetOffersCountMessage = GetMessageType<chia_wallet_service, get_offers_count_command, TGetOffersCountResponse>;
|
|
922
|
-
export declare function get_offers_count<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
922
|
+
export declare function get_offers_count<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TGetOffersCountResponse, WsGetOffersCountMessage>>;
|
|
923
923
|
export declare const cancel_offer_command = "cancel_offer";
|
|
924
924
|
export declare type cancel_offer_command = typeof cancel_offer_command;
|
|
925
925
|
export declare type TCancelOfferRequest = {
|
|
@@ -929,7 +929,7 @@ export declare type TCancelOfferRequest = {
|
|
|
929
929
|
} & TxEndpoint;
|
|
930
930
|
export declare type TCancelOfferResponse = {};
|
|
931
931
|
export declare type WsCancelOfferMessage = GetMessageType<chia_wallet_service, cancel_offer_command, TCancelOfferResponse>;
|
|
932
|
-
export declare function cancel_offer<T extends TRPCAgent | TDaemon>(agent: T, data: TCancelOfferRequest): Promise<
|
|
932
|
+
export declare function cancel_offer<T extends TRPCAgent | TDaemon>(agent: T, data: TCancelOfferRequest): Promise<ResType<T, TCancelOfferResponse, WsCancelOfferMessage>>;
|
|
933
933
|
export declare const cancel_offers_command = "cancel_offers";
|
|
934
934
|
export declare type cancel_offers_command = typeof cancel_offers_command;
|
|
935
935
|
export declare type TCancelOffersRequest = {
|
|
@@ -943,7 +943,7 @@ export declare type TCancelOffersResponse = {
|
|
|
943
943
|
success: True;
|
|
944
944
|
};
|
|
945
945
|
export declare type WsCancelOffersMessage = GetMessageType<chia_wallet_service, cancel_offers_command, TCancelOffersResponse>;
|
|
946
|
-
export declare function cancel_offers<T extends TRPCAgent | TDaemon>(agent: T, data: TCancelOffersRequest): Promise<
|
|
946
|
+
export declare function cancel_offers<T extends TRPCAgent | TDaemon>(agent: T, data: TCancelOffersRequest): Promise<ResType<T, TCancelOffersResponse, WsCancelOffersMessage>>;
|
|
947
947
|
export declare const did_set_wallet_name_command = "did_set_wallet_name";
|
|
948
948
|
export declare type did_set_wallet_name_command = typeof did_set_wallet_name_command;
|
|
949
949
|
export declare type TDidSetWalletNameRequest = {
|
|
@@ -958,7 +958,7 @@ export declare type TDidSetWalletNameResponse = {
|
|
|
958
958
|
error: str;
|
|
959
959
|
};
|
|
960
960
|
export declare type WsDidSetWalletNameMessage = GetMessageType<chia_wallet_service, did_set_wallet_name_command, TDidSetWalletNameResponse>;
|
|
961
|
-
export declare function did_set_wallet_name<T extends TRPCAgent | TDaemon>(agent: T, data: TDidSetWalletNameRequest): Promise<
|
|
961
|
+
export declare function did_set_wallet_name<T extends TRPCAgent | TDaemon>(agent: T, data: TDidSetWalletNameRequest): Promise<ResType<T, TDidSetWalletNameResponse, WsDidSetWalletNameMessage>>;
|
|
962
962
|
export declare const did_get_wallet_name_command = "did_get_wallet_name";
|
|
963
963
|
export declare type did_get_wallet_name_command = typeof did_get_wallet_name_command;
|
|
964
964
|
export declare type TDidGetWalletNameRequest = {
|
|
@@ -970,7 +970,7 @@ export declare type TDidGetWalletNameResponse = {
|
|
|
970
970
|
name: str;
|
|
971
971
|
};
|
|
972
972
|
export declare type WsDidGetWalletNameMessage = GetMessageType<chia_wallet_service, did_get_wallet_name_command, TDidGetWalletNameResponse>;
|
|
973
|
-
export declare function did_get_wallet_name<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetWalletNameRequest): Promise<
|
|
973
|
+
export declare function did_get_wallet_name<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetWalletNameRequest): Promise<ResType<T, TDidGetWalletNameResponse, WsDidGetWalletNameMessage>>;
|
|
974
974
|
export declare const did_update_recovery_ids_command = "did_update_recovery_ids";
|
|
975
975
|
export declare type did_update_recovery_ids_command = typeof did_update_recovery_ids_command;
|
|
976
976
|
export declare type TDidUpdateRecoveryIdsRequest = {
|
|
@@ -982,7 +982,7 @@ export declare type TDidUpdateRecoveryIdsResponse = {
|
|
|
982
982
|
success: bool;
|
|
983
983
|
};
|
|
984
984
|
export declare type WsDidUpdateRecoveryIdsMessage = GetMessageType<chia_wallet_service, did_update_recovery_ids_command, TDidUpdateRecoveryIdsResponse>;
|
|
985
|
-
export declare function did_update_recovery_ids<T extends TRPCAgent | TDaemon>(agent: T, data: TDidUpdateRecoveryIdsRequest): Promise<
|
|
985
|
+
export declare function did_update_recovery_ids<T extends TRPCAgent | TDaemon>(agent: T, data: TDidUpdateRecoveryIdsRequest): Promise<ResType<T, TDidUpdateRecoveryIdsResponse, WsDidUpdateRecoveryIdsMessage>>;
|
|
986
986
|
export declare const did_update_metadata_command = "did_update_metadata";
|
|
987
987
|
export declare type did_update_metadata_command = typeof did_update_metadata_command;
|
|
988
988
|
export declare type TDidUpdateMetadataRequest = {
|
|
@@ -999,7 +999,7 @@ export declare type TDidUpdateMetadataResponse = {
|
|
|
999
999
|
error: str;
|
|
1000
1000
|
};
|
|
1001
1001
|
export declare type WsDidUpdateMetadataMessage = GetMessageType<chia_wallet_service, did_update_metadata_command, TDidUpdateMetadataResponse>;
|
|
1002
|
-
export declare function did_update_metadata<T extends TRPCAgent | TDaemon>(agent: T, data: TDidUpdateMetadataRequest): Promise<
|
|
1002
|
+
export declare function did_update_metadata<T extends TRPCAgent | TDaemon>(agent: T, data: TDidUpdateMetadataRequest): Promise<ResType<T, TDidUpdateMetadataResponse, WsDidUpdateMetadataMessage>>;
|
|
1003
1003
|
export declare const did_spend_command = "did_spend";
|
|
1004
1004
|
export declare type did_spend_command = typeof did_spend_command;
|
|
1005
1005
|
export declare type TDidSpendRequest = {
|
|
@@ -1010,7 +1010,7 @@ export declare type TDidSpendResponse = {
|
|
|
1010
1010
|
success: bool;
|
|
1011
1011
|
};
|
|
1012
1012
|
export declare type WsDidSpendMessage = GetMessageType<chia_wallet_service, did_spend_command, TDidSpendResponse>;
|
|
1013
|
-
export declare function did_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TDidSpendRequest): Promise<
|
|
1013
|
+
export declare function did_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TDidSpendRequest): Promise<ResType<T, TDidSpendResponse, WsDidSpendMessage>>;
|
|
1014
1014
|
export declare const did_get_pubkey_command = "did_get_pubkey";
|
|
1015
1015
|
export declare type did_get_pubkey_command = typeof did_get_pubkey_command;
|
|
1016
1016
|
export declare type TDidGetPubkeyRequest = {
|
|
@@ -1021,7 +1021,7 @@ export declare type TDidGetPubkeyResponse = {
|
|
|
1021
1021
|
pubkey: str;
|
|
1022
1022
|
};
|
|
1023
1023
|
export declare type WsDidGetPubkeyMessage = GetMessageType<chia_wallet_service, did_get_pubkey_command, TDidGetPubkeyResponse>;
|
|
1024
|
-
export declare function did_get_pubkey<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
1024
|
+
export declare function did_get_pubkey<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TDidGetPubkeyResponse, WsDidGetPubkeyMessage>>;
|
|
1025
1025
|
export declare const did_get_did_command = "did_get_did";
|
|
1026
1026
|
export declare type did_get_did_command = typeof did_get_did_command;
|
|
1027
1027
|
export declare type TDidGetDidRequest = {
|
|
@@ -1034,7 +1034,7 @@ export declare type TDidGetDidResponse = {
|
|
|
1034
1034
|
coin_id?: bytes32;
|
|
1035
1035
|
};
|
|
1036
1036
|
export declare type WsDidGetDidMessage = GetMessageType<chia_wallet_service, did_get_did_command, TDidGetDidResponse>;
|
|
1037
|
-
export declare function did_get_did<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetDidRequest): Promise<
|
|
1037
|
+
export declare function did_get_did<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetDidRequest): Promise<ResType<T, TDidGetDidResponse, WsDidGetDidMessage>>;
|
|
1038
1038
|
export declare const did_recovery_spend_command = "did_recovery_spend";
|
|
1039
1039
|
export declare type did_recovery_spend_command = typeof did_recovery_spend_command;
|
|
1040
1040
|
export declare type TDidRecoverySpendRequest = {
|
|
@@ -1050,7 +1050,7 @@ export declare type TDidRecoverySpendResponse = {
|
|
|
1050
1050
|
success: False;
|
|
1051
1051
|
};
|
|
1052
1052
|
export declare type WsDidRecoverySpendMessage = GetMessageType<chia_wallet_service, did_recovery_spend_command, TDidRecoverySpendResponse>;
|
|
1053
|
-
export declare function did_recovery_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TDidRecoverySpendRequest): Promise<
|
|
1053
|
+
export declare function did_recovery_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TDidRecoverySpendRequest): Promise<ResType<T, TDidRecoverySpendResponse, WsDidRecoverySpendMessage>>;
|
|
1054
1054
|
export declare const did_get_recovery_list_command = "did_get_recovery_list";
|
|
1055
1055
|
export declare type did_get_recovery_list_command = typeof did_get_recovery_list_command;
|
|
1056
1056
|
export declare type TDidGetRecoveryListRequest = {
|
|
@@ -1063,7 +1063,7 @@ export declare type TDidGetRecoveryListResponse = {
|
|
|
1063
1063
|
num_required: uint64;
|
|
1064
1064
|
};
|
|
1065
1065
|
export declare type WsDidGetRecoveryListMessage = GetMessageType<chia_wallet_service, did_get_recovery_list_command, TDidGetRecoveryListResponse>;
|
|
1066
|
-
export declare function did_get_recovery_list<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetRecoveryListRequest): Promise<
|
|
1066
|
+
export declare function did_get_recovery_list<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetRecoveryListRequest): Promise<ResType<T, TDidGetRecoveryListResponse, WsDidGetRecoveryListMessage>>;
|
|
1067
1067
|
export declare const did_get_metadata_command = "did_get_metadata";
|
|
1068
1068
|
export declare type did_get_metadata_command = typeof did_get_metadata_command;
|
|
1069
1069
|
export declare type TDidGetMetadataRequest = {
|
|
@@ -1075,7 +1075,7 @@ export declare type TDidGetMetadataResponse = {
|
|
|
1075
1075
|
metadata: Record<str, str>;
|
|
1076
1076
|
};
|
|
1077
1077
|
export declare type WsDidGetMetadataMessage = GetMessageType<chia_wallet_service, did_get_metadata_command, TDidGetMetadataResponse>;
|
|
1078
|
-
export declare function did_get_metadata<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetMetadataRequest): Promise<
|
|
1078
|
+
export declare function did_get_metadata<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetMetadataRequest): Promise<ResType<T, TDidGetMetadataResponse, WsDidGetMetadataMessage>>;
|
|
1079
1079
|
export declare const did_create_attest_command = "did_create_attest";
|
|
1080
1080
|
export declare type did_create_attest_command = typeof did_create_attest_command;
|
|
1081
1081
|
export declare type TDidCreateAttestRequest = {
|
|
@@ -1092,7 +1092,7 @@ export declare type TDidCreateAttestResponse = {
|
|
|
1092
1092
|
success: False;
|
|
1093
1093
|
};
|
|
1094
1094
|
export declare type WsDidCreateAttestMessage = GetMessageType<chia_wallet_service, did_create_attest_command, TDidCreateAttestResponse>;
|
|
1095
|
-
export declare function did_create_attest<T extends TRPCAgent | TDaemon>(agent: T, data: TDidCreateAttestRequest): Promise<
|
|
1095
|
+
export declare function did_create_attest<T extends TRPCAgent | TDaemon>(agent: T, data: TDidCreateAttestRequest): Promise<ResType<T, TDidCreateAttestResponse, WsDidCreateAttestMessage>>;
|
|
1096
1096
|
export declare const did_get_information_needed_for_recovery_command = "did_get_information_needed_for_recovery";
|
|
1097
1097
|
export declare type did_get_information_needed_for_recovery_command = typeof did_get_information_needed_for_recovery_command;
|
|
1098
1098
|
export declare type TDidGetInformationNeededForRecoveryRequest = {
|
|
@@ -1108,7 +1108,7 @@ export declare type TDidGetInformationNeededForRecoveryResponse = {
|
|
|
1108
1108
|
backup_dids: bytes[];
|
|
1109
1109
|
};
|
|
1110
1110
|
export declare type WsDidGetInformationNeededForRecoveryMessage = GetMessageType<chia_wallet_service, did_get_information_needed_for_recovery_command, TDidGetInformationNeededForRecoveryResponse>;
|
|
1111
|
-
export declare function did_get_information_needed_for_recovery<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetInformationNeededForRecoveryRequest): Promise<
|
|
1111
|
+
export declare function did_get_information_needed_for_recovery<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetInformationNeededForRecoveryRequest): Promise<ResType<T, TDidGetInformationNeededForRecoveryResponse, WsDidGetInformationNeededForRecoveryMessage>>;
|
|
1112
1112
|
export declare const did_get_current_coin_info_command = "did_get_current_coin_info";
|
|
1113
1113
|
export declare type did_get_current_coin_info_command = typeof did_get_current_coin_info_command;
|
|
1114
1114
|
export declare type TDidGetCurrentCoinInfoRequest = {
|
|
@@ -1123,7 +1123,7 @@ export declare type TDidGetCurrentCoinInfoResponse = {
|
|
|
1123
1123
|
did_amount: uint64;
|
|
1124
1124
|
};
|
|
1125
1125
|
export declare type WsDidGetCurrentCoinInfoMessage = GetMessageType<chia_wallet_service, did_get_current_coin_info_command, TDidGetCurrentCoinInfoResponse>;
|
|
1126
|
-
export declare function did_get_current_coin_info<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetCurrentCoinInfoRequest): Promise<
|
|
1126
|
+
export declare function did_get_current_coin_info<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetCurrentCoinInfoRequest): Promise<ResType<T, TDidGetCurrentCoinInfoResponse, WsDidGetCurrentCoinInfoMessage>>;
|
|
1127
1127
|
export declare const did_create_backup_file_command = "did_create_backup_file";
|
|
1128
1128
|
export declare type did_create_backup_file_command = typeof did_create_backup_file_command;
|
|
1129
1129
|
export declare type TDidCreateBackupFileRequest = {
|
|
@@ -1135,7 +1135,7 @@ export declare type TDidCreateBackupFileResponse = {
|
|
|
1135
1135
|
backup_data: str;
|
|
1136
1136
|
};
|
|
1137
1137
|
export declare type WsDidCreateBackupFileMessage = GetMessageType<chia_wallet_service, did_create_backup_file_command, TDidCreateBackupFileResponse>;
|
|
1138
|
-
export declare function did_create_backup_file<T extends TRPCAgent | TDaemon>(agent: T, data: TDidCreateBackupFileRequest): Promise<
|
|
1138
|
+
export declare function did_create_backup_file<T extends TRPCAgent | TDaemon>(agent: T, data: TDidCreateBackupFileRequest): Promise<ResType<T, TDidCreateBackupFileResponse, WsDidCreateBackupFileMessage>>;
|
|
1139
1139
|
export declare const did_message_spend_command = "did_message_spend";
|
|
1140
1140
|
export declare type did_message_spend_command = typeof did_message_spend_command;
|
|
1141
1141
|
export declare type TDidMessageSpendRequest = {
|
|
@@ -1148,7 +1148,7 @@ export declare type TDidMessageSpendResponse = {
|
|
|
1148
1148
|
spend_bundle: SpendBundle;
|
|
1149
1149
|
};
|
|
1150
1150
|
export declare type WsDidMessageSpendMessage = GetMessageType<chia_wallet_service, did_message_spend_command, TDidMessageSpendResponse>;
|
|
1151
|
-
export declare function did_message_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TDidMessageSpendRequest): Promise<
|
|
1151
|
+
export declare function did_message_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TDidMessageSpendRequest): Promise<ResType<T, TDidMessageSpendResponse, WsDidMessageSpendMessage>>;
|
|
1152
1152
|
export declare const did_get_info_command = "did_get_info";
|
|
1153
1153
|
export declare type did_get_info_command = typeof did_get_info_command;
|
|
1154
1154
|
export declare type TDidGetInfoRequest = {
|
|
@@ -1173,7 +1173,7 @@ export declare type TDidGetInfoResponse = {
|
|
|
1173
1173
|
hints: str[];
|
|
1174
1174
|
};
|
|
1175
1175
|
export declare type WsDidGetInfoMessage = GetMessageType<chia_wallet_service, did_get_info_command, TDidGetInfoResponse>;
|
|
1176
|
-
export declare function did_get_info<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetInfoRequest): Promise<
|
|
1176
|
+
export declare function did_get_info<T extends TRPCAgent | TDaemon>(agent: T, data: TDidGetInfoRequest): Promise<ResType<T, TDidGetInfoResponse, WsDidGetInfoMessage>>;
|
|
1177
1177
|
export declare const did_find_lost_did_command = "did_find_lost_did";
|
|
1178
1178
|
export declare type did_find_lost_did_command = typeof did_find_lost_did_command;
|
|
1179
1179
|
export declare type TDidFindLostDidRequest = {
|
|
@@ -1190,7 +1190,7 @@ export declare type TDidFindLostDidResponse = {
|
|
|
1190
1190
|
latest_coin_id: str;
|
|
1191
1191
|
};
|
|
1192
1192
|
export declare type WsDidFindLostDidMessage = GetMessageType<chia_wallet_service, did_find_lost_did_command, TDidFindLostDidResponse>;
|
|
1193
|
-
export declare function did_find_lost_did<T extends TRPCAgent | TDaemon>(agent: T, data: TDidFindLostDidRequest): Promise<
|
|
1193
|
+
export declare function did_find_lost_did<T extends TRPCAgent | TDaemon>(agent: T, data: TDidFindLostDidRequest): Promise<ResType<T, TDidFindLostDidResponse, WsDidFindLostDidMessage>>;
|
|
1194
1194
|
export declare const did_transfer_did_command = "did_transfer_did";
|
|
1195
1195
|
export declare type did_transfer_did_command = typeof did_transfer_did_command;
|
|
1196
1196
|
export declare type TDidTransferDidRequest = {
|
|
@@ -1205,7 +1205,7 @@ export declare type TDidTransferDidResponse = {
|
|
|
1205
1205
|
transaction_id: bytes32;
|
|
1206
1206
|
};
|
|
1207
1207
|
export declare type WsDidTransferDidMessage = GetMessageType<chia_wallet_service, did_transfer_did_command, TDidTransferDidResponse>;
|
|
1208
|
-
export declare function did_transfer_did<T extends TRPCAgent | TDaemon>(agent: T, data: TDidTransferDidRequest): Promise<
|
|
1208
|
+
export declare function did_transfer_did<T extends TRPCAgent | TDaemon>(agent: T, data: TDidTransferDidRequest): Promise<ResType<T, TDidTransferDidResponse, WsDidTransferDidMessage>>;
|
|
1209
1209
|
export declare const dao_adjust_filter_level_command = "dao_adjust_filter_level";
|
|
1210
1210
|
export declare type dao_adjust_filter_level_command = typeof dao_adjust_filter_level_command;
|
|
1211
1211
|
export declare type TDaoAdjustFilterLevelRequest = {
|
|
@@ -1217,7 +1217,7 @@ export declare type TDaoAdjustFilterLevelResponse = {
|
|
|
1217
1217
|
dao_info: DAOInfo;
|
|
1218
1218
|
};
|
|
1219
1219
|
export declare type WsDaoAdjustFilterLevelMessage = GetMessageType<chia_wallet_service, dao_adjust_filter_level_command, TDaoAdjustFilterLevelResponse>;
|
|
1220
|
-
export declare function dao_adjust_filter_level<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoAdjustFilterLevelRequest): Promise<
|
|
1220
|
+
export declare function dao_adjust_filter_level<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoAdjustFilterLevelRequest): Promise<ResType<T, TDaoAdjustFilterLevelResponse, WsDaoAdjustFilterLevelMessage>>;
|
|
1221
1221
|
export declare const dao_add_funds_to_treasury_command = "dao_add_funds_to_treasury";
|
|
1222
1222
|
export declare type dao_add_funds_to_treasury_command = typeof dao_add_funds_to_treasury_command;
|
|
1223
1223
|
export declare type TDaoAddFundsToTreasuryRequest = {
|
|
@@ -1232,7 +1232,7 @@ export declare type TDaoAddFundsToTreasuryResponse = {
|
|
|
1232
1232
|
tx: TransactionRecord;
|
|
1233
1233
|
};
|
|
1234
1234
|
export declare type WsDaoAddFundsToTreasuryMessage = GetMessageType<chia_wallet_service, dao_add_funds_to_treasury_command, TDaoAddFundsToTreasuryResponse>;
|
|
1235
|
-
export declare function dao_add_funds_to_treasury<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoAddFundsToTreasuryRequest): Promise<
|
|
1235
|
+
export declare function dao_add_funds_to_treasury<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoAddFundsToTreasuryRequest): Promise<ResType<T, TDaoAddFundsToTreasuryResponse, WsDaoAddFundsToTreasuryMessage>>;
|
|
1236
1236
|
export declare const dao_get_treasury_balance_command = "dao_get_treasury_balance";
|
|
1237
1237
|
export declare type dao_get_treasury_balance_command = typeof dao_get_treasury_balance_command;
|
|
1238
1238
|
export declare type TDaoGetTreasuryBalanceRequest = {
|
|
@@ -1243,7 +1243,7 @@ export declare type TDaoGetTreasuryBalanceResponse = {
|
|
|
1243
1243
|
balance: Record<str, uint128>;
|
|
1244
1244
|
};
|
|
1245
1245
|
export declare type WsDaoGetTreasuryBalanceMessage = GetMessageType<chia_wallet_service, dao_get_treasury_balance_command, TDaoGetTreasuryBalanceResponse>;
|
|
1246
|
-
export declare function dao_get_treasury_balance<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetTreasuryBalanceRequest): Promise<
|
|
1246
|
+
export declare function dao_get_treasury_balance<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetTreasuryBalanceRequest): Promise<ResType<T, TDaoGetTreasuryBalanceResponse, WsDaoGetTreasuryBalanceMessage>>;
|
|
1247
1247
|
export declare const dao_get_treasury_id_command = "dao_get_treasury_id";
|
|
1248
1248
|
export declare type dao_get_treasury_id_command = typeof dao_get_treasury_id_command;
|
|
1249
1249
|
export declare type TDaoGetTreasuryIdRequest = {
|
|
@@ -1254,7 +1254,7 @@ export declare type TDaoGetTreasuryIdResponse = {
|
|
|
1254
1254
|
treasury_id: bytes32;
|
|
1255
1255
|
};
|
|
1256
1256
|
export declare type WsDaoGetTreasuryIdMessage = GetMessageType<chia_wallet_service, dao_get_treasury_id_command, TDaoGetTreasuryIdResponse>;
|
|
1257
|
-
export declare function dao_get_treasury_id<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetTreasuryIdRequest): Promise<
|
|
1257
|
+
export declare function dao_get_treasury_id<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetTreasuryIdRequest): Promise<ResType<T, TDaoGetTreasuryIdResponse, WsDaoGetTreasuryIdMessage>>;
|
|
1258
1258
|
export declare const dao_get_rules_command = "dao_get_rules";
|
|
1259
1259
|
export declare type dao_get_rules_command = typeof dao_get_rules_command;
|
|
1260
1260
|
export declare type TDaoGetRulesRequest = {
|
|
@@ -1265,7 +1265,7 @@ export declare type TDaoGetRulesResponse = {
|
|
|
1265
1265
|
rules: DAORules;
|
|
1266
1266
|
};
|
|
1267
1267
|
export declare type WsDaoGetRulesMessage = GetMessageType<chia_wallet_service, dao_get_rules_command, TDaoGetRulesResponse>;
|
|
1268
|
-
export declare function dao_get_rules<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetRulesRequest): Promise<
|
|
1268
|
+
export declare function dao_get_rules<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetRulesRequest): Promise<ResType<T, TDaoGetRulesResponse, WsDaoGetRulesMessage>>;
|
|
1269
1269
|
export declare const dao_send_to_lockup_command = "dao_send_to_lockup";
|
|
1270
1270
|
export declare type dao_send_to_lockup_command = typeof dao_send_to_lockup_command;
|
|
1271
1271
|
export declare type TDaoSendToLockupRequest = {
|
|
@@ -1279,7 +1279,7 @@ export declare type TDaoSendToLockupResponse = {
|
|
|
1279
1279
|
txs: TransactionRecord[];
|
|
1280
1280
|
};
|
|
1281
1281
|
export declare type WsDaoSendToLockupMessage = GetMessageType<chia_wallet_service, dao_send_to_lockup_command, TDaoSendToLockupResponse>;
|
|
1282
|
-
export declare function dao_send_to_lockup<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoSendToLockupRequest): Promise<
|
|
1282
|
+
export declare function dao_send_to_lockup<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoSendToLockupRequest): Promise<ResType<T, TDaoSendToLockupResponse, WsDaoSendToLockupMessage>>;
|
|
1283
1283
|
export declare const dao_get_proposals_command = "dao_get_proposals";
|
|
1284
1284
|
export declare type dao_get_proposals_command = typeof dao_get_proposals_command;
|
|
1285
1285
|
export declare type TDaoGetProposalsRequest = {
|
|
@@ -1293,7 +1293,7 @@ export declare type TDaoGetProposalsResponse = {
|
|
|
1293
1293
|
soft_close_length: uint64;
|
|
1294
1294
|
};
|
|
1295
1295
|
export declare type WsDaoGetProposalsMessage = GetMessageType<chia_wallet_service, dao_get_proposals_command, TDaoGetProposalsResponse>;
|
|
1296
|
-
export declare function dao_get_proposals<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetProposalsRequest): Promise<
|
|
1296
|
+
export declare function dao_get_proposals<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetProposalsRequest): Promise<ResType<T, TDaoGetProposalsResponse, WsDaoGetProposalsMessage>>;
|
|
1297
1297
|
export declare const dao_get_proposal_state_command = "dao_get_proposal_state";
|
|
1298
1298
|
export declare type dao_get_proposal_state_command = typeof dao_get_proposal_state_command;
|
|
1299
1299
|
export declare type TDaoGetProposalStateRequest = {
|
|
@@ -1305,7 +1305,7 @@ export declare type TDaoGetProposalStateResponse = {
|
|
|
1305
1305
|
state: ProposalState;
|
|
1306
1306
|
};
|
|
1307
1307
|
export declare type WsDaoGetProposalStateMessage = GetMessageType<chia_wallet_service, dao_get_proposal_state_command, TDaoGetProposalStateResponse>;
|
|
1308
|
-
export declare function dao_get_proposal_state<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetProposalStateRequest): Promise<
|
|
1308
|
+
export declare function dao_get_proposal_state<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoGetProposalStateRequest): Promise<ResType<T, TDaoGetProposalStateResponse, WsDaoGetProposalStateMessage>>;
|
|
1309
1309
|
export declare const dao_exit_lockup_command = "dao_exit_lockup";
|
|
1310
1310
|
export declare type dao_exit_lockup_command = typeof dao_exit_lockup_command;
|
|
1311
1311
|
export declare type TDaoExitLockupRequest = {
|
|
@@ -1319,7 +1319,7 @@ export declare type TDaoExitLockupResponse = {
|
|
|
1319
1319
|
tx: TransactionRecord;
|
|
1320
1320
|
};
|
|
1321
1321
|
export declare type WsDaoExitLockupMessage = GetMessageType<chia_wallet_service, dao_exit_lockup_command, TDaoExitLockupResponse>;
|
|
1322
|
-
export declare function dao_exit_lockup<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoExitLockupRequest): Promise<
|
|
1322
|
+
export declare function dao_exit_lockup<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoExitLockupRequest): Promise<ResType<T, TDaoExitLockupResponse, WsDaoExitLockupMessage>>;
|
|
1323
1323
|
export declare const dao_create_proposal_command = "dao_create_proposal";
|
|
1324
1324
|
export declare type dao_create_proposal_command = typeof dao_create_proposal_command;
|
|
1325
1325
|
export declare type TDaoCreateProposalRequest = ({
|
|
@@ -1364,7 +1364,7 @@ export declare type TDaoCreateProposalResponse = {
|
|
|
1364
1364
|
tx: TransactionRecord;
|
|
1365
1365
|
};
|
|
1366
1366
|
export declare type WsDaoCreateProposalMessage = GetMessageType<chia_wallet_service, dao_create_proposal_command, TDaoCreateProposalResponse>;
|
|
1367
|
-
export declare function dao_create_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoCreateProposalRequest): Promise<
|
|
1367
|
+
export declare function dao_create_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoCreateProposalRequest): Promise<ResType<T, TDaoCreateProposalResponse, WsDaoCreateProposalMessage>>;
|
|
1368
1368
|
export declare const dao_vote_on_proposal_command = "dao_vote_on_proposal";
|
|
1369
1369
|
export declare type dao_vote_on_proposal_command = typeof dao_vote_on_proposal_command;
|
|
1370
1370
|
export declare type TDaoVoteOnProposalRequest = {
|
|
@@ -1380,7 +1380,7 @@ export declare type TDaoVoteOnProposalResponse = {
|
|
|
1380
1380
|
tx: TransactionRecord;
|
|
1381
1381
|
};
|
|
1382
1382
|
export declare type WsDaoVoteOnProposalMessage = GetMessageType<chia_wallet_service, dao_vote_on_proposal_command, TDaoVoteOnProposalResponse>;
|
|
1383
|
-
export declare function dao_vote_on_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoVoteOnProposalRequest): Promise<
|
|
1383
|
+
export declare function dao_vote_on_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoVoteOnProposalRequest): Promise<ResType<T, TDaoVoteOnProposalResponse, WsDaoVoteOnProposalMessage>>;
|
|
1384
1384
|
export declare const dao_parse_proposal_command = "dao_parse_proposal";
|
|
1385
1385
|
export declare type dao_parse_proposal_command = typeof dao_parse_proposal_command;
|
|
1386
1386
|
export declare type TDaoParseProposalRequest = {
|
|
@@ -1392,7 +1392,7 @@ export declare type TDaoParseProposalResponse = {
|
|
|
1392
1392
|
proposal_dictionary: ParsedProposalSpend | ParsedProposalUpdate;
|
|
1393
1393
|
};
|
|
1394
1394
|
export declare type WsDaoParseProposalMessage = GetMessageType<chia_wallet_service, dao_parse_proposal_command, TDaoParseProposalResponse>;
|
|
1395
|
-
export declare function dao_parse_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoParseProposalRequest): Promise<
|
|
1395
|
+
export declare function dao_parse_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoParseProposalRequest): Promise<ResType<T, TDaoParseProposalResponse, WsDaoParseProposalMessage>>;
|
|
1396
1396
|
export declare const dao_close_proposal_command = "dao_close_proposal";
|
|
1397
1397
|
export declare type dao_close_proposal_command = typeof dao_close_proposal_command;
|
|
1398
1398
|
export declare type TDaoCloseProposalRequest = {
|
|
@@ -1408,7 +1408,7 @@ export declare type TDaoCloseProposalResponse = {
|
|
|
1408
1408
|
tx: TransactionRecord;
|
|
1409
1409
|
};
|
|
1410
1410
|
export declare type WsDaoCloseProposalMessage = GetMessageType<chia_wallet_service, dao_close_proposal_command, TDaoCloseProposalResponse>;
|
|
1411
|
-
export declare function dao_close_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoCloseProposalRequest): Promise<
|
|
1411
|
+
export declare function dao_close_proposal<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoCloseProposalRequest): Promise<ResType<T, TDaoCloseProposalResponse, WsDaoCloseProposalMessage>>;
|
|
1412
1412
|
export declare const dao_free_coins_from_finished_proposals_command = "dao_free_coins_from_finished_proposals";
|
|
1413
1413
|
export declare type dao_free_coins_from_finished_proposals_command = typeof dao_free_coins_from_finished_proposals_command;
|
|
1414
1414
|
export declare type TDaoFreeCoinsFromFinishedProposalsRequest = {
|
|
@@ -1421,7 +1421,7 @@ export declare type TDaoFreeCoinsFromFinishedProposalsResponse = {
|
|
|
1421
1421
|
tx: TransactionRecord;
|
|
1422
1422
|
};
|
|
1423
1423
|
export declare type WsDaoFreeCoinsFromFinishedProposalsMessage = GetMessageType<chia_wallet_service, dao_free_coins_from_finished_proposals_command, TDaoFreeCoinsFromFinishedProposalsResponse>;
|
|
1424
|
-
export declare function dao_free_coins_from_finished_proposals<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoFreeCoinsFromFinishedProposalsRequest): Promise<
|
|
1424
|
+
export declare function dao_free_coins_from_finished_proposals<T extends TRPCAgent | TDaemon>(agent: T, data: TDaoFreeCoinsFromFinishedProposalsRequest): Promise<ResType<T, TDaoFreeCoinsFromFinishedProposalsResponse, WsDaoFreeCoinsFromFinishedProposalsMessage>>;
|
|
1425
1425
|
export declare const nft_mint_nft_command = "nft_mint_nft";
|
|
1426
1426
|
export declare type nft_mint_nft_command = typeof nft_mint_nft_command;
|
|
1427
1427
|
export declare type TNftMintNftRequest = {
|
|
@@ -1447,7 +1447,7 @@ export declare type TNftMintNftResponse = {
|
|
|
1447
1447
|
nft_id: Optional<str>;
|
|
1448
1448
|
};
|
|
1449
1449
|
export declare type WsNftMintNftMessage = GetMessageType<chia_wallet_service, nft_mint_nft_command, TNftMintNftResponse>;
|
|
1450
|
-
export declare function nft_mint_nft<T extends TRPCAgent | TDaemon>(agent: T, data: TNftMintNftRequest): Promise<
|
|
1450
|
+
export declare function nft_mint_nft<T extends TRPCAgent | TDaemon>(agent: T, data: TNftMintNftRequest): Promise<ResType<T, TNftMintNftResponse, WsNftMintNftMessage>>;
|
|
1451
1451
|
export declare const nft_count_nfts_command = "nft_count_nfts";
|
|
1452
1452
|
export declare type nft_count_nfts_command = typeof nft_count_nfts_command;
|
|
1453
1453
|
export declare type TNftCountNftsRequest = {
|
|
@@ -1462,7 +1462,7 @@ export declare type TNftCountNftsResponse = {
|
|
|
1462
1462
|
count: int;
|
|
1463
1463
|
};
|
|
1464
1464
|
export declare type WsNftCountNftsMessage = GetMessageType<chia_wallet_service, nft_count_nfts_command, TNftCountNftsResponse>;
|
|
1465
|
-
export declare function nft_count_nfts<T extends TRPCAgent | TDaemon>(agent: T, data: TNftCountNftsRequest): Promise<
|
|
1465
|
+
export declare function nft_count_nfts<T extends TRPCAgent | TDaemon>(agent: T, data: TNftCountNftsRequest): Promise<ResType<T, TNftCountNftsResponse, WsNftCountNftsMessage>>;
|
|
1466
1466
|
export declare const nft_get_nfts_command = "nft_get_nfts";
|
|
1467
1467
|
export declare type nft_get_nfts_command = typeof nft_get_nfts_command;
|
|
1468
1468
|
export declare type TNftGetNftsRequest = {
|
|
@@ -1477,7 +1477,7 @@ export declare type TNftGetNftsResponse = {
|
|
|
1477
1477
|
nft_list: NFTInfo[];
|
|
1478
1478
|
};
|
|
1479
1479
|
export declare type WsNftGetNftsMessage = GetMessageType<chia_wallet_service, nft_get_nfts_command, TNftGetNftsResponse>;
|
|
1480
|
-
export declare function nft_get_nfts<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetNftsRequest): Promise<
|
|
1480
|
+
export declare function nft_get_nfts<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetNftsRequest): Promise<ResType<T, TNftGetNftsResponse, WsNftGetNftsMessage>>;
|
|
1481
1481
|
export declare const nft_set_nft_did_command = "nft_set_nft_did";
|
|
1482
1482
|
export declare type nft_set_nft_did_command = typeof nft_set_nft_did_command;
|
|
1483
1483
|
export declare type TNftSetNftDidRequest = {
|
|
@@ -1495,7 +1495,7 @@ export declare type TNftSetNftDidResponse = {
|
|
|
1495
1495
|
error: str;
|
|
1496
1496
|
};
|
|
1497
1497
|
export declare type WsNftSetNftDidMessage = GetMessageType<chia_wallet_service, nft_set_nft_did_command, TNftSetNftDidResponse>;
|
|
1498
|
-
export declare function nft_set_nft_did<T extends TRPCAgent | TDaemon>(agent: T, data: TNftSetNftDidRequest): Promise<
|
|
1498
|
+
export declare function nft_set_nft_did<T extends TRPCAgent | TDaemon>(agent: T, data: TNftSetNftDidRequest): Promise<ResType<T, TNftSetNftDidResponse, WsNftSetNftDidMessage>>;
|
|
1499
1499
|
export declare const nft_set_did_bulk_command = "nft_set_did_bulk";
|
|
1500
1500
|
export declare type nft_set_did_bulk_command = typeof nft_set_did_bulk_command;
|
|
1501
1501
|
export declare type TNftSetDidBulkRequest = {
|
|
@@ -1516,7 +1516,7 @@ export declare type TNftSetDidBulkResponse = {
|
|
|
1516
1516
|
tx_num: int;
|
|
1517
1517
|
};
|
|
1518
1518
|
export declare type WsNftSetDidBulkMessage = GetMessageType<chia_wallet_service, nft_set_did_bulk_command, TNftSetDidBulkResponse>;
|
|
1519
|
-
export declare function nft_set_did_bulk<T extends TRPCAgent | TDaemon>(agent: T, data: TNftSetDidBulkRequest): Promise<
|
|
1519
|
+
export declare function nft_set_did_bulk<T extends TRPCAgent | TDaemon>(agent: T, data: TNftSetDidBulkRequest): Promise<ResType<T, TNftSetDidBulkResponse, WsNftSetDidBulkMessage>>;
|
|
1520
1520
|
export declare const nft_transfer_bulk_command = "nft_transfer_bulk";
|
|
1521
1521
|
export declare type nft_transfer_bulk_command = typeof nft_transfer_bulk_command;
|
|
1522
1522
|
export declare type TNftTransferBulkRequest = {
|
|
@@ -1537,7 +1537,7 @@ export declare type TNftTransferBulkResponse = {
|
|
|
1537
1537
|
tx_num: int;
|
|
1538
1538
|
};
|
|
1539
1539
|
export declare type WsNftTransferBulkMessage = GetMessageType<chia_wallet_service, nft_transfer_bulk_command, TNftTransferBulkResponse>;
|
|
1540
|
-
export declare function nft_transfer_bulk<T extends TRPCAgent | TDaemon>(agent: T, data: TNftTransferBulkRequest): Promise<
|
|
1540
|
+
export declare function nft_transfer_bulk<T extends TRPCAgent | TDaemon>(agent: T, data: TNftTransferBulkRequest): Promise<ResType<T, TNftTransferBulkResponse, WsNftTransferBulkMessage>>;
|
|
1541
1541
|
export declare const nft_get_by_did_command = "nft_get_by_did";
|
|
1542
1542
|
export declare type nft_get_by_did_command = typeof nft_get_by_did_command;
|
|
1543
1543
|
export declare type TNftGetByDidRequest = {
|
|
@@ -1551,7 +1551,7 @@ export declare type TNftGetByDidResponse = {
|
|
|
1551
1551
|
error: str;
|
|
1552
1552
|
};
|
|
1553
1553
|
export declare type WsNftGetByDidMessage = GetMessageType<chia_wallet_service, nft_get_by_did_command, TNftGetByDidResponse>;
|
|
1554
|
-
export declare function nft_get_by_did<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetByDidRequest): Promise<
|
|
1554
|
+
export declare function nft_get_by_did<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetByDidRequest): Promise<ResType<T, TNftGetByDidResponse, WsNftGetByDidMessage>>;
|
|
1555
1555
|
export declare const nft_get_wallet_did_command = "nft_get_wallet_did";
|
|
1556
1556
|
export declare type nft_get_wallet_did_command = typeof nft_get_wallet_did_command;
|
|
1557
1557
|
export declare type TNftGetWalletDidRequest = {
|
|
@@ -1562,7 +1562,7 @@ export declare type TNftGetWalletDidResponse = {
|
|
|
1562
1562
|
success: True;
|
|
1563
1563
|
};
|
|
1564
1564
|
export declare type WsNftGetWalletDidMessage = GetMessageType<chia_wallet_service, nft_get_wallet_did_command, TNftGetWalletDidResponse>;
|
|
1565
|
-
export declare function nft_get_wallet_did<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetWalletDidRequest): Promise<
|
|
1565
|
+
export declare function nft_get_wallet_did<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetWalletDidRequest): Promise<ResType<T, TNftGetWalletDidResponse, WsNftGetWalletDidMessage>>;
|
|
1566
1566
|
export declare const nft_get_wallets_with_dids_command = "nft_get_wallets_with_dids";
|
|
1567
1567
|
export declare type nft_get_wallets_with_dids_command = typeof nft_get_wallets_with_dids_command;
|
|
1568
1568
|
export declare type TNftGetWalletsWithDidsResponse = {
|
|
@@ -1574,7 +1574,7 @@ export declare type TNftGetWalletsWithDidsResponse = {
|
|
|
1574
1574
|
}>;
|
|
1575
1575
|
};
|
|
1576
1576
|
export declare type WsNftGetWalletsWithDidsMessage = GetMessageType<chia_wallet_service, nft_get_wallets_with_dids_command, TNftGetWalletsWithDidsResponse>;
|
|
1577
|
-
export declare function nft_get_wallets_with_dids<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
1577
|
+
export declare function nft_get_wallets_with_dids<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TNftGetWalletsWithDidsResponse, WsNftGetWalletsWithDidsMessage>>;
|
|
1578
1578
|
export declare const nft_set_nft_status_command = "nft_set_nft_status";
|
|
1579
1579
|
export declare type nft_set_nft_status_command = typeof nft_set_nft_status_command;
|
|
1580
1580
|
export declare type TNftSetNftStatusRequest = {
|
|
@@ -1586,7 +1586,7 @@ export declare type TNftSetNftStatusResponse = {
|
|
|
1586
1586
|
success: True;
|
|
1587
1587
|
};
|
|
1588
1588
|
export declare type WsNftSetNftStatusMessage = GetMessageType<chia_wallet_service, nft_set_nft_status_command, TNftSetNftStatusResponse>;
|
|
1589
|
-
export declare function nft_set_nft_status<T extends TRPCAgent | TDaemon>(agent: T, data: TNftSetNftStatusRequest): Promise<
|
|
1589
|
+
export declare function nft_set_nft_status<T extends TRPCAgent | TDaemon>(agent: T, data: TNftSetNftStatusRequest): Promise<ResType<T, TNftSetNftStatusResponse, WsNftSetNftStatusMessage>>;
|
|
1590
1590
|
export declare const nft_transfer_nft_command = "nft_transfer_nft";
|
|
1591
1591
|
export declare type nft_transfer_nft_command = typeof nft_transfer_nft_command;
|
|
1592
1592
|
export declare type TNftTransferNftRequest = {
|
|
@@ -1604,7 +1604,7 @@ export declare type TNftTransferNftResponse = {
|
|
|
1604
1604
|
error: str;
|
|
1605
1605
|
};
|
|
1606
1606
|
export declare type WsNftTransferNftMessage = GetMessageType<chia_wallet_service, nft_transfer_nft_command, TNftTransferNftResponse>;
|
|
1607
|
-
export declare function nft_transfer_nft<T extends TRPCAgent | TDaemon>(agent: T, data: TNftTransferNftRequest): Promise<
|
|
1607
|
+
export declare function nft_transfer_nft<T extends TRPCAgent | TDaemon>(agent: T, data: TNftTransferNftRequest): Promise<ResType<T, TNftTransferNftResponse, WsNftTransferNftMessage>>;
|
|
1608
1608
|
export declare const nft_get_info_command = "nft_get_info";
|
|
1609
1609
|
export declare type nft_get_info_command = typeof nft_get_info_command;
|
|
1610
1610
|
export declare type TNftGetInfoRequest = {
|
|
@@ -1620,7 +1620,7 @@ export declare type TNftGetInfoResponse = {
|
|
|
1620
1620
|
error: str;
|
|
1621
1621
|
};
|
|
1622
1622
|
export declare type WsNftGetInfoMessage = GetMessageType<chia_wallet_service, nft_get_info_command, TNftGetInfoResponse>;
|
|
1623
|
-
export declare function nft_get_info<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetInfoRequest): Promise<
|
|
1623
|
+
export declare function nft_get_info<T extends TRPCAgent | TDaemon>(agent: T, data: TNftGetInfoRequest): Promise<ResType<T, TNftGetInfoResponse, WsNftGetInfoMessage>>;
|
|
1624
1624
|
export declare const nft_add_uri_command = "nft_add_uri";
|
|
1625
1625
|
export declare type nft_add_uri_command = typeof nft_add_uri_command;
|
|
1626
1626
|
export declare type TNftAddUriRequest = {
|
|
@@ -1636,7 +1636,7 @@ export declare type TNftAddUriResponse = {
|
|
|
1636
1636
|
spend_bundle: SpendBundle;
|
|
1637
1637
|
};
|
|
1638
1638
|
export declare type WsNftAddUriMessage = GetMessageType<chia_wallet_service, nft_add_uri_command, TNftAddUriResponse>;
|
|
1639
|
-
export declare function nft_add_uri<T extends TRPCAgent | TDaemon>(agent: T, data: TNftAddUriRequest): Promise<
|
|
1639
|
+
export declare function nft_add_uri<T extends TRPCAgent | TDaemon>(agent: T, data: TNftAddUriRequest): Promise<ResType<T, TNftAddUriResponse, WsNftAddUriMessage>>;
|
|
1640
1640
|
export declare const nft_calculate_royalties_command = "nft_calculate_royalties";
|
|
1641
1641
|
export declare type nft_calculate_royalties_command = typeof nft_calculate_royalties_command;
|
|
1642
1642
|
export declare type TNftCalculateRoyaltiesRequest = {
|
|
@@ -1656,7 +1656,7 @@ export declare type TNftCalculateRoyaltiesResponse = Record<str, Array<{
|
|
|
1656
1656
|
amount: uint64;
|
|
1657
1657
|
}>>;
|
|
1658
1658
|
export declare type WsNftCalculateRoyaltiesMessage = GetMessageType<chia_wallet_service, nft_calculate_royalties_command, TNftCalculateRoyaltiesResponse>;
|
|
1659
|
-
export declare function nft_calculate_royalties<T extends TRPCAgent | TDaemon>(agent: T, data: TNftCalculateRoyaltiesRequest): Promise<
|
|
1659
|
+
export declare function nft_calculate_royalties<T extends TRPCAgent | TDaemon>(agent: T, data: TNftCalculateRoyaltiesRequest): Promise<ResType<T, TNftCalculateRoyaltiesResponse, WsNftCalculateRoyaltiesMessage>>;
|
|
1660
1660
|
export declare const nft_mint_bulk_command = "nft_mint_bulk";
|
|
1661
1661
|
export declare type nft_mint_bulk_command = typeof nft_mint_bulk_command;
|
|
1662
1662
|
export declare type TNftMintBulkRequest = {
|
|
@@ -1694,7 +1694,7 @@ export declare type TNftMintBulkResponse = {
|
|
|
1694
1694
|
nft_id_list: str[];
|
|
1695
1695
|
};
|
|
1696
1696
|
export declare type WsNftMintBulkMessage = GetMessageType<chia_wallet_service, nft_mint_bulk_command, TNftMintBulkResponse>;
|
|
1697
|
-
export declare function nft_mint_bulk<T extends TRPCAgent | TDaemon>(agent: T, data: TNftMintBulkRequest): Promise<
|
|
1697
|
+
export declare function nft_mint_bulk<T extends TRPCAgent | TDaemon>(agent: T, data: TNftMintBulkRequest): Promise<ResType<T, TNftMintBulkResponse, WsNftMintBulkMessage>>;
|
|
1698
1698
|
export declare const rl_set_user_info_command = "rl_set_user_info";
|
|
1699
1699
|
export declare type rl_set_user_info_command = typeof rl_set_user_info_command;
|
|
1700
1700
|
export declare type TRlSetUserInfoRequest = {
|
|
@@ -1710,7 +1710,7 @@ export declare type TRlSetUserInfoRequest = {
|
|
|
1710
1710
|
};
|
|
1711
1711
|
export declare type TRlSetUserInfoResponse = {};
|
|
1712
1712
|
export declare type WsRlSetUserInfoMessage = GetMessageType<chia_wallet_service, rl_set_user_info_command, TRlSetUserInfoResponse>;
|
|
1713
|
-
export declare function rl_set_user_info<T extends TRPCAgent | TDaemon>(agent: T, data: TRlSetUserInfoRequest): Promise<
|
|
1713
|
+
export declare function rl_set_user_info<T extends TRPCAgent | TDaemon>(agent: T, data: TRlSetUserInfoRequest): Promise<ResType<T, TRlSetUserInfoResponse, WsRlSetUserInfoMessage>>;
|
|
1714
1714
|
export declare const send_clawback_transaction_command = "send_clawback_transaction:";
|
|
1715
1715
|
export declare type send_clawback_transaction_command = typeof send_clawback_transaction_command;
|
|
1716
1716
|
export declare type TSendClawbackTransactionRequest = {
|
|
@@ -1722,7 +1722,7 @@ export declare type TSendClawbackTransactionResponse = {
|
|
|
1722
1722
|
transaction_id: TransactionRecord["name"];
|
|
1723
1723
|
};
|
|
1724
1724
|
export declare type WsSendClawbackTransactionMessage = GetMessageType<chia_wallet_service, send_clawback_transaction_command, TSendClawbackTransactionResponse>;
|
|
1725
|
-
export declare function send_clawback_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TSendClawbackTransactionRequest): Promise<
|
|
1725
|
+
export declare function send_clawback_transaction<T extends TRPCAgent | TDaemon>(agent: T, data: TSendClawbackTransactionRequest): Promise<ResType<T, TSendClawbackTransactionResponse, WsSendClawbackTransactionMessage>>;
|
|
1726
1726
|
export declare const add_rate_limited_funds_command = "add_rate_limited_funds:";
|
|
1727
1727
|
export declare type add_rate_limited_funds_command = typeof add_rate_limited_funds_command;
|
|
1728
1728
|
export declare type TAddRateLimitedFundsRequest = {
|
|
@@ -1734,7 +1734,7 @@ export declare type TAddRateLimitedFundsResponse = {
|
|
|
1734
1734
|
status: "SUCCESS";
|
|
1735
1735
|
};
|
|
1736
1736
|
export declare type WsAddRateLimitedFundsMessage = GetMessageType<chia_wallet_service, add_rate_limited_funds_command, TAddRateLimitedFundsResponse>;
|
|
1737
|
-
export declare function add_rate_limited_funds<T extends TRPCAgent | TDaemon>(agent: T, data: TAddRateLimitedFundsRequest): Promise<
|
|
1737
|
+
export declare function add_rate_limited_funds<T extends TRPCAgent | TDaemon>(agent: T, data: TAddRateLimitedFundsRequest): Promise<ResType<T, TAddRateLimitedFundsResponse, WsAddRateLimitedFundsMessage>>;
|
|
1738
1738
|
export declare const pw_join_pool_command = "pw_join_pool";
|
|
1739
1739
|
export declare type pw_join_pool_command = typeof pw_join_pool_command;
|
|
1740
1740
|
export declare type TPwJoinPoolRequest = {
|
|
@@ -1753,7 +1753,7 @@ export declare type TPwJoinPoolResponse = {
|
|
|
1753
1753
|
error: "not_initialized";
|
|
1754
1754
|
};
|
|
1755
1755
|
export declare type WsPwJoinPoolMessage = GetMessageType<chia_wallet_service, pw_join_pool_command, TPwJoinPoolResponse>;
|
|
1756
|
-
export declare function pw_join_pool<T extends TRPCAgent | TDaemon>(agent: T, data: TPwJoinPoolRequest): Promise<
|
|
1756
|
+
export declare function pw_join_pool<T extends TRPCAgent | TDaemon>(agent: T, data: TPwJoinPoolRequest): Promise<ResType<T, TPwJoinPoolResponse, WsPwJoinPoolMessage>>;
|
|
1757
1757
|
export declare const pw_self_pool_command = "pw_self_pool";
|
|
1758
1758
|
export declare type pw_self_pool_command = typeof pw_self_pool_command;
|
|
1759
1759
|
export declare type TPwSelfPoolRequest = {
|
|
@@ -1766,7 +1766,7 @@ export declare type TPwSelfPoolResponse = {
|
|
|
1766
1766
|
fee_transaction: Optional<TransactionRecord>;
|
|
1767
1767
|
};
|
|
1768
1768
|
export declare type WsPwSelfPoolMessage = GetMessageType<chia_wallet_service, pw_self_pool_command, TPwSelfPoolResponse>;
|
|
1769
|
-
export declare function pw_self_pool<T extends TRPCAgent | TDaemon>(agent: T, data: TPwSelfPoolRequest): Promise<
|
|
1769
|
+
export declare function pw_self_pool<T extends TRPCAgent | TDaemon>(agent: T, data: TPwSelfPoolRequest): Promise<ResType<T, TPwSelfPoolResponse, WsPwSelfPoolMessage>>;
|
|
1770
1770
|
export declare const pw_absorb_rewards_command = "pw_absorb_rewards";
|
|
1771
1771
|
export declare type pw_absorb_rewards_command = typeof pw_absorb_rewards_command;
|
|
1772
1772
|
export declare type TPwAbsorbRewardsRequest = {
|
|
@@ -1780,7 +1780,7 @@ export declare type TPwAbsorbRewardsResponse = {
|
|
|
1780
1780
|
fee_transaction: Optional<TransactionRecord>;
|
|
1781
1781
|
};
|
|
1782
1782
|
export declare type WsPwAbsorbRewardsMessage = GetMessageType<chia_wallet_service, pw_absorb_rewards_command, TPwAbsorbRewardsResponse>;
|
|
1783
|
-
export declare function pw_absorb_rewards<T extends TRPCAgent | TDaemon>(agent: T, data: TPwAbsorbRewardsRequest): Promise<
|
|
1783
|
+
export declare function pw_absorb_rewards<T extends TRPCAgent | TDaemon>(agent: T, data: TPwAbsorbRewardsRequest): Promise<ResType<T, TPwAbsorbRewardsResponse, WsPwAbsorbRewardsMessage>>;
|
|
1784
1784
|
export declare const pw_status_command = "pw_status";
|
|
1785
1785
|
export declare type pw_status_command = typeof pw_status_command;
|
|
1786
1786
|
export declare type TPwStatusRequest = {
|
|
@@ -1791,7 +1791,7 @@ export declare type TPwStatusResponse = {
|
|
|
1791
1791
|
unconfirmed_transactions: TransactionRecord[];
|
|
1792
1792
|
};
|
|
1793
1793
|
export declare type WsPwStatusMessage = GetMessageType<chia_wallet_service, pw_status_command, TPwStatusResponse>;
|
|
1794
|
-
export declare function pw_status<T extends TRPCAgent | TDaemon>(agent: T, data: TPwStatusRequest): Promise<
|
|
1794
|
+
export declare function pw_status<T extends TRPCAgent | TDaemon>(agent: T, data: TPwStatusRequest): Promise<ResType<T, TPwStatusResponse, WsPwStatusMessage>>;
|
|
1795
1795
|
export declare const create_new_dl_command = "create_new_dl";
|
|
1796
1796
|
export declare type create_new_dl_command = typeof create_new_dl_command;
|
|
1797
1797
|
export declare type TCreateNewDlRequest = {
|
|
@@ -1807,7 +1807,7 @@ export declare type TCreateNewDlResponse = {
|
|
|
1807
1807
|
launcher_id: bytes32;
|
|
1808
1808
|
};
|
|
1809
1809
|
export declare type WsCreateNewDlMessage = GetMessageType<chia_wallet_service, create_new_dl_command, TCreateNewDlResponse>;
|
|
1810
|
-
export declare function create_new_dl<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateNewDlRequest): Promise<
|
|
1810
|
+
export declare function create_new_dl<T extends TRPCAgent | TDaemon>(agent: T, data: TCreateNewDlRequest): Promise<ResType<T, TCreateNewDlResponse, WsCreateNewDlMessage>>;
|
|
1811
1811
|
export declare const dl_track_new_command = "dl_track_new";
|
|
1812
1812
|
export declare type dl_track_new_command = typeof dl_track_new_command;
|
|
1813
1813
|
export declare type TDlTrackNewRequest = {
|
|
@@ -1815,7 +1815,7 @@ export declare type TDlTrackNewRequest = {
|
|
|
1815
1815
|
};
|
|
1816
1816
|
export declare type TDlTrackNewResponse = {};
|
|
1817
1817
|
export declare type WsDlTrackNewMessage = GetMessageType<chia_wallet_service, dl_track_new_command, TDlTrackNewResponse>;
|
|
1818
|
-
export declare function dl_track_new<T extends TRPCAgent | TDaemon>(agent: T, data: TDlTrackNewRequest): Promise<
|
|
1818
|
+
export declare function dl_track_new<T extends TRPCAgent | TDaemon>(agent: T, data: TDlTrackNewRequest): Promise<ResType<T, TDlTrackNewResponse, WsDlTrackNewMessage>>;
|
|
1819
1819
|
export declare const dl_stop_tracking_command = "dl_stop_tracking";
|
|
1820
1820
|
export declare type dl_stop_tracking_command = typeof dl_stop_tracking_command;
|
|
1821
1821
|
export declare type TDlStopTrackingRequest = {
|
|
@@ -1823,7 +1823,7 @@ export declare type TDlStopTrackingRequest = {
|
|
|
1823
1823
|
};
|
|
1824
1824
|
export declare type TDlStopTrackingResponse = {};
|
|
1825
1825
|
export declare type WsDlStopTrackingMessage = GetMessageType<chia_wallet_service, dl_stop_tracking_command, TDlStopTrackingResponse>;
|
|
1826
|
-
export declare function dl_stop_tracking<T extends TRPCAgent | TDaemon>(agent: T, data: TDlStopTrackingRequest): Promise<
|
|
1826
|
+
export declare function dl_stop_tracking<T extends TRPCAgent | TDaemon>(agent: T, data: TDlStopTrackingRequest): Promise<ResType<T, TDlStopTrackingResponse, WsDlStopTrackingMessage>>;
|
|
1827
1827
|
export declare const dl_latest_singleton_command = "dl_latest_singleton";
|
|
1828
1828
|
export declare type dl_latest_singleton_command = typeof dl_latest_singleton_command;
|
|
1829
1829
|
export declare type TDlLatestSingletonRequest = {
|
|
@@ -1834,7 +1834,7 @@ export declare type TDlLatestSingletonResponse = {
|
|
|
1834
1834
|
singleton: Optional<SingletonRecord>;
|
|
1835
1835
|
};
|
|
1836
1836
|
export declare type WsDlLatestSingletonMessage = GetMessageType<chia_wallet_service, dl_latest_singleton_command, TDlLatestSingletonResponse>;
|
|
1837
|
-
export declare function dl_latest_singleton<T extends TRPCAgent | TDaemon>(agent: T, data: TDlLatestSingletonRequest): Promise<
|
|
1837
|
+
export declare function dl_latest_singleton<T extends TRPCAgent | TDaemon>(agent: T, data: TDlLatestSingletonRequest): Promise<ResType<T, TDlLatestSingletonResponse, WsDlLatestSingletonMessage>>;
|
|
1838
1838
|
export declare const dl_singletons_by_root_command = "dl_singletons_by_root";
|
|
1839
1839
|
export declare type dl_singletons_by_root_command = typeof dl_singletons_by_root_command;
|
|
1840
1840
|
export declare type TDlSingletonsByRootRequest = {
|
|
@@ -1845,7 +1845,7 @@ export declare type TDlSingletonsByRootResponse = {
|
|
|
1845
1845
|
singletons: SingletonRecord[];
|
|
1846
1846
|
};
|
|
1847
1847
|
export declare type WsDlSingletonsByRootMessage = GetMessageType<chia_wallet_service, dl_singletons_by_root_command, TDlSingletonsByRootResponse>;
|
|
1848
|
-
export declare function dl_singletons_by_root<T extends TRPCAgent | TDaemon>(agent: T, data: TDlSingletonsByRootRequest): Promise<
|
|
1848
|
+
export declare function dl_singletons_by_root<T extends TRPCAgent | TDaemon>(agent: T, data: TDlSingletonsByRootRequest): Promise<ResType<T, TDlSingletonsByRootResponse, WsDlSingletonsByRootMessage>>;
|
|
1849
1849
|
export declare const dl_update_root_command = "dl_update_root";
|
|
1850
1850
|
export declare type dl_update_root_command = typeof dl_update_root_command;
|
|
1851
1851
|
export declare type TDlUpdateRootRequest = {
|
|
@@ -1857,7 +1857,7 @@ export declare type TDlUpdateRootResponse = {
|
|
|
1857
1857
|
tx_record: TransactionRecordConvenience;
|
|
1858
1858
|
};
|
|
1859
1859
|
export declare type WsDlUpdateRootMessage = GetMessageType<chia_wallet_service, dl_update_root_command, TDlUpdateRootResponse>;
|
|
1860
|
-
export declare function dl_update_root<T extends TRPCAgent | TDaemon>(agent: T, data: TDlUpdateRootRequest): Promise<
|
|
1860
|
+
export declare function dl_update_root<T extends TRPCAgent | TDaemon>(agent: T, data: TDlUpdateRootRequest): Promise<ResType<T, TDlUpdateRootResponse, WsDlUpdateRootMessage>>;
|
|
1861
1861
|
export declare const dl_update_multiple_command = "dl_update_multiple";
|
|
1862
1862
|
export declare type dl_update_multiple_command = typeof dl_update_multiple_command;
|
|
1863
1863
|
export declare type TDlUpdateMultipleRequest = {
|
|
@@ -1867,7 +1867,7 @@ export declare type TDlUpdateMultipleResponse = {
|
|
|
1867
1867
|
tx_records: TransactionRecordConvenience[];
|
|
1868
1868
|
};
|
|
1869
1869
|
export declare type WsDlUpdateMultipleMessage = GetMessageType<chia_wallet_service, dl_update_multiple_command, TDlUpdateMultipleResponse>;
|
|
1870
|
-
export declare function dl_update_multiple<T extends TRPCAgent | TDaemon>(agent: T, data: TDlUpdateMultipleRequest): Promise<
|
|
1870
|
+
export declare function dl_update_multiple<T extends TRPCAgent | TDaemon>(agent: T, data: TDlUpdateMultipleRequest): Promise<ResType<T, TDlUpdateMultipleResponse, WsDlUpdateMultipleMessage>>;
|
|
1871
1871
|
export declare const dl_history_command = "dl_history";
|
|
1872
1872
|
export declare type dl_history_command = typeof dl_history_command;
|
|
1873
1873
|
export declare type TDlHistoryRequest = {
|
|
@@ -1881,7 +1881,7 @@ export declare type TDlHistoryResponse = {
|
|
|
1881
1881
|
count: int;
|
|
1882
1882
|
};
|
|
1883
1883
|
export declare type WsDlHistoryMessage = GetMessageType<chia_wallet_service, dl_history_command, TDlHistoryResponse>;
|
|
1884
|
-
export declare function dl_history<T extends TRPCAgent | TDaemon>(agent: T, data: TDlHistoryRequest): Promise<
|
|
1884
|
+
export declare function dl_history<T extends TRPCAgent | TDaemon>(agent: T, data: TDlHistoryRequest): Promise<ResType<T, TDlHistoryResponse, WsDlHistoryMessage>>;
|
|
1885
1885
|
export declare const dl_owned_singletons_command = "dl_owned_singletons";
|
|
1886
1886
|
export declare type dl_owned_singletons_command = typeof dl_owned_singletons_command;
|
|
1887
1887
|
export declare type TDlOwnedSingletonsResponse = {
|
|
@@ -1889,7 +1889,7 @@ export declare type TDlOwnedSingletonsResponse = {
|
|
|
1889
1889
|
count: int;
|
|
1890
1890
|
};
|
|
1891
1891
|
export declare type WsDlOwnedSingletonsMessage = GetMessageType<chia_wallet_service, dl_owned_singletons_command, TDlOwnedSingletonsResponse>;
|
|
1892
|
-
export declare function dl_owned_singletons<T extends TRPCAgent | TDaemon>(agent: T): Promise<
|
|
1892
|
+
export declare function dl_owned_singletons<T extends TRPCAgent | TDaemon>(agent: T): Promise<ResType<T, TDlOwnedSingletonsResponse, WsDlOwnedSingletonsMessage>>;
|
|
1893
1893
|
export declare const dl_get_mirrors_command = "dl_get_mirrors";
|
|
1894
1894
|
export declare type dl_get_mirrors_command = typeof dl_get_mirrors_command;
|
|
1895
1895
|
export declare type TDlGetMirrorsRequest = {
|
|
@@ -1899,7 +1899,7 @@ export declare type TDlGetMirrorsResponse = {
|
|
|
1899
1899
|
mirrors: Mirror[];
|
|
1900
1900
|
};
|
|
1901
1901
|
export declare type WsDlGetMirrorsMessage = GetMessageType<chia_wallet_service, dl_get_mirrors_command, TDlGetMirrorsResponse>;
|
|
1902
|
-
export declare function dl_get_mirrors<T extends TRPCAgent | TDaemon>(agent: T, data: TDlGetMirrorsRequest): Promise<
|
|
1902
|
+
export declare function dl_get_mirrors<T extends TRPCAgent | TDaemon>(agent: T, data: TDlGetMirrorsRequest): Promise<ResType<T, TDlGetMirrorsResponse, WsDlGetMirrorsMessage>>;
|
|
1903
1903
|
export declare const dl_new_mirror_command = "dl_new_mirror";
|
|
1904
1904
|
export declare type dl_new_mirror_command = typeof dl_new_mirror_command;
|
|
1905
1905
|
export declare type TDlNewMirrorRequest = {
|
|
@@ -1912,7 +1912,7 @@ export declare type TDlNewMirrorResponse = {
|
|
|
1912
1912
|
transactions: TransactionRecordConvenience[];
|
|
1913
1913
|
};
|
|
1914
1914
|
export declare type WsDlNewMirrorMessage = GetMessageType<chia_wallet_service, dl_new_mirror_command, TDlNewMirrorResponse>;
|
|
1915
|
-
export declare function dl_new_mirror<T extends TRPCAgent | TDaemon>(agent: T, data: TDlNewMirrorRequest): Promise<
|
|
1915
|
+
export declare function dl_new_mirror<T extends TRPCAgent | TDaemon>(agent: T, data: TDlNewMirrorRequest): Promise<ResType<T, TDlNewMirrorResponse, WsDlNewMirrorMessage>>;
|
|
1916
1916
|
export declare const dl_delete_mirror_command = "dl_delete_mirror";
|
|
1917
1917
|
export declare type dl_delete_mirror_command = typeof dl_delete_mirror_command;
|
|
1918
1918
|
export declare type TDlDeleteMirrorRequest = {
|
|
@@ -1923,7 +1923,7 @@ export declare type TDlDeleteMirrorResponse = {
|
|
|
1923
1923
|
transactions: TransactionRecordConvenience[];
|
|
1924
1924
|
};
|
|
1925
1925
|
export declare type WsDlDeleteMirrorMessage = GetMessageType<chia_wallet_service, dl_delete_mirror_command, TDlDeleteMirrorResponse>;
|
|
1926
|
-
export declare function dl_delete_mirror<T extends TRPCAgent | TDaemon>(agent: T, data: TDlDeleteMirrorRequest): Promise<
|
|
1926
|
+
export declare function dl_delete_mirror<T extends TRPCAgent | TDaemon>(agent: T, data: TDlDeleteMirrorRequest): Promise<ResType<T, TDlDeleteMirrorResponse, WsDlDeleteMirrorMessage>>;
|
|
1927
1927
|
export declare type VCMint = {
|
|
1928
1928
|
did_id: str;
|
|
1929
1929
|
target_address: Optional<str>;
|
|
@@ -1937,7 +1937,7 @@ export declare type TVcMintResponse = {
|
|
|
1937
1937
|
transactions: TransactionRecordConvenience[];
|
|
1938
1938
|
};
|
|
1939
1939
|
export declare type WsVcMintMessage = GetMessageType<chia_wallet_service, vc_mint_command, TVcMintResponse>;
|
|
1940
|
-
export declare function vc_mint<T extends TRPCAgent | TDaemon>(agent: T, data: TVcMintRequest): Promise<
|
|
1940
|
+
export declare function vc_mint<T extends TRPCAgent | TDaemon>(agent: T, data: TVcMintRequest): Promise<ResType<T, TVcMintResponse, WsVcMintMessage>>;
|
|
1941
1941
|
export declare type VCGet = {
|
|
1942
1942
|
vc_id: bytes32;
|
|
1943
1943
|
};
|
|
@@ -1948,7 +1948,7 @@ export declare type TVcGetResponse = {
|
|
|
1948
1948
|
vc_record: VCRecord | None;
|
|
1949
1949
|
};
|
|
1950
1950
|
export declare type WsVcGetMessage = GetMessageType<chia_wallet_service, vc_get_command, TVcGetResponse>;
|
|
1951
|
-
export declare function vc_get<T extends TRPCAgent | TDaemon>(agent: T, data: TVcGetRequest): Promise<
|
|
1951
|
+
export declare function vc_get<T extends TRPCAgent | TDaemon>(agent: T, data: TVcGetRequest): Promise<ResType<T, TVcGetResponse, WsVcGetMessage>>;
|
|
1952
1952
|
export declare type VcGetList = {
|
|
1953
1953
|
start: uint32;
|
|
1954
1954
|
end: uint32;
|
|
@@ -1963,7 +1963,7 @@ export declare type TVcGetListResponse = {
|
|
|
1963
1963
|
proofs: Record<str, Record<str, str> | None>;
|
|
1964
1964
|
};
|
|
1965
1965
|
export declare type WsVcGetListMessage = GetMessageType<chia_wallet_service, vc_get_list_command, TVcGetListResponse>;
|
|
1966
|
-
export declare function vc_get_list<T extends TRPCAgent | TDaemon>(agent: T, data: TVcGetListRequest): Promise<
|
|
1966
|
+
export declare function vc_get_list<T extends TRPCAgent | TDaemon>(agent: T, data: TVcGetListRequest): Promise<ResType<T, TVcGetListResponse, WsVcGetListMessage>>;
|
|
1967
1967
|
export declare type VcSpend = {
|
|
1968
1968
|
vc_id: bytes32;
|
|
1969
1969
|
new_puzhash: Optional<bytes32>;
|
|
@@ -1978,7 +1978,7 @@ export declare type TVcSpendResponse = {
|
|
|
1978
1978
|
transactions: TransactionRecordConvenience[];
|
|
1979
1979
|
};
|
|
1980
1980
|
export declare type WsVcSpendMessage = GetMessageType<chia_wallet_service, vc_spend_command, TVcSpendResponse>;
|
|
1981
|
-
export declare function vc_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TVcSpendRequest): Promise<
|
|
1981
|
+
export declare function vc_spend<T extends TRPCAgent | TDaemon>(agent: T, data: TVcSpendRequest): Promise<ResType<T, TVcSpendResponse, WsVcSpendMessage>>;
|
|
1982
1982
|
export declare const vc_add_proofs_command = "vc_add_proofs";
|
|
1983
1983
|
export declare type vc_add_proofs_command = typeof vc_add_proofs_command;
|
|
1984
1984
|
export declare type TVcAddProofsRequest = {
|
|
@@ -1988,7 +1988,7 @@ export declare type TVcAddProofsRequest = {
|
|
|
1988
1988
|
};
|
|
1989
1989
|
export declare type TVcAddProofsResponse = {};
|
|
1990
1990
|
export declare type WsVcAddProofsMessage = GetMessageType<chia_wallet_service, vc_add_proofs_command, TVcAddProofsResponse>;
|
|
1991
|
-
export declare function vc_add_proofs<T extends TRPCAgent | TDaemon>(agent: T, data: TVcAddProofsRequest): Promise<
|
|
1991
|
+
export declare function vc_add_proofs<T extends TRPCAgent | TDaemon>(agent: T, data: TVcAddProofsRequest): Promise<ResType<T, TVcAddProofsResponse, WsVcAddProofsMessage>>;
|
|
1992
1992
|
export declare type VCGetProofsForRoot = {
|
|
1993
1993
|
root: bytes32;
|
|
1994
1994
|
};
|
|
@@ -1999,7 +1999,7 @@ export declare type TVcGetProofsForRootResponse = {
|
|
|
1999
1999
|
proofs: Record<str, str>;
|
|
2000
2000
|
};
|
|
2001
2001
|
export declare type WsVcGetProofsForRootMessage = GetMessageType<chia_wallet_service, vc_get_proofs_for_root_command, TVcGetProofsForRootResponse>;
|
|
2002
|
-
export declare function vc_get_proofs_for_root<T extends TRPCAgent | TDaemon>(agent: T, data: TVcGetProofsForRootRequest): Promise<
|
|
2002
|
+
export declare function vc_get_proofs_for_root<T extends TRPCAgent | TDaemon>(agent: T, data: TVcGetProofsForRootRequest): Promise<ResType<T, TVcGetProofsForRootResponse, WsVcGetProofsForRootMessage>>;
|
|
2003
2003
|
export declare type VcRevoke = {
|
|
2004
2004
|
vc_parent_id: bytes32;
|
|
2005
2005
|
fee: uint64;
|
|
@@ -2011,7 +2011,7 @@ export declare type TVcRevokeResponse = {
|
|
|
2011
2011
|
transactions: TransactionRecordConvenience[];
|
|
2012
2012
|
};
|
|
2013
2013
|
export declare type WsVcRevokeMessage = GetMessageType<chia_wallet_service, vc_revoke_command, TVcRevokeResponse>;
|
|
2014
|
-
export declare function vc_revoke<T extends TRPCAgent | TDaemon>(agent: T, data: TVcRevokeRequest): Promise<
|
|
2014
|
+
export declare function vc_revoke<T extends TRPCAgent | TDaemon>(agent: T, data: TVcRevokeRequest): Promise<ResType<T, TVcRevokeResponse, WsVcRevokeMessage>>;
|
|
2015
2015
|
export declare type CrcatApprovePending = {
|
|
2016
2016
|
wallet_id: uint32;
|
|
2017
2017
|
min_amount_to_claim: uint64;
|
|
@@ -2024,6 +2024,6 @@ export declare type TCrcatApprovePendingResponse = {
|
|
|
2024
2024
|
transactions: TransactionRecordConvenience[];
|
|
2025
2025
|
};
|
|
2026
2026
|
export declare type WsCrcatApprovePendingMessage = GetMessageType<chia_wallet_service, crcat_approve_pending_command, TCrcatApprovePendingResponse>;
|
|
2027
|
-
export declare function crcat_approve_pending<T extends TRPCAgent | TDaemon>(agent: T, data: TCrcatApprovePendingRequest): Promise<
|
|
2027
|
+
export declare function crcat_approve_pending<T extends TRPCAgent | TDaemon>(agent: T, data: TCrcatApprovePendingRequest): Promise<ResType<T, TCrcatApprovePendingResponse, WsCrcatApprovePendingMessage>>;
|
|
2028
2028
|
export declare type RpcWalletMessage = 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 | TNftCalculateRoyaltiesResponse | TNftMintBulkResponse | TNftSetDidBulkResponse | TNftTransferBulkResponse | TDeleteAllKeysResponse | TSetWalletResyncOnStartupResponse | TDeleteKeyResponse | TCheckDeleteKeyResponse | TDidSetWalletNameResponse | TDidGetWalletNameResponse | TDidCreateAttestResponse | TDidCreateBackupFileResponse | TDidTransferDidResponse | TDidMessageSpendResponse | TDidGetInfoResponse | TDidFindLostDidResponse | TDidGetDidResponse | TDidGetInformationNeededForRecoveryResponse | TDidGetCurrentCoinInfoResponse | TDidGetPubkeyResponse | TDidGetRecoveryListResponse | TDidGetMetadataResponse | TDidRecoverySpendResponse | TDidSpendResponse | TDidUpdateRecoveryIdsResponse | TDidUpdateMetadataResponse | TDaoAdjustFilterLevelResponse | TDaoAddFundsToTreasuryResponse | TDaoGetTreasuryBalanceResponse | TDaoGetTreasuryIdResponse | TDaoGetRulesResponse | TDaoSendToLockupResponse | TDaoGetProposalsResponse | TDaoGetProposalStateResponse | TDaoExitLockupResponse | TDaoCreateProposalResponse | TDaoVoteOnProposalResponse | TDaoParseProposalResponse | TDaoCloseProposalResponse | TDaoFreeCoinsFromFinishedProposalsResponse | TNftMintNftResponse | TNftCountNftsResponse | TNftGetNftsResponse | TNftSetNftDidResponse | TNftGetByDidResponse | TNftGetWalletDidResponse | TNftGetWalletsWithDidsResponse | TNftSetNftStatusResponse | TNftTransferNftResponse | TNftGetInfoResponse | TNftAddUriResponse | TFarmBlockResponse | TGetTimestampForHeightResponse | TSetAutoClaimResponse | TGetAutoClaimResponse | TGenerateMnemonicResponse | TGetAllOffersResponse | TGetCatListResponse | TGetFarmedAmountResponse | TGetHeightInfoResponse | TGetInitialFreezePeriodResponseOfWallet | TGetLoggedInFingerprintResponse | TGetOfferResponse | TGetOffersCountResponse | TGetOfferSummaryResponse | TGetNetworkInfoResponseOfWallet | 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 | TVcMintResponse | TVcGetResponse | TVcGetListResponse | TVcSpendResponse | TVcAddProofsResponse | TVcGetProofsForRootResponse | TVcRevokeResponse | TCrcatApprovePendingResponse;
|
|
2029
2029
|
export declare type RpcWalletMessageOnWs = WsAddKeyMessage | WsAddRateLimitedFundsMessage | WsCancelOfferMessage | WsCancelOffersMessage | WsCatGetAssetIdMessage | WsCatGetNameMessage | WsGetStrayCatsMessage | WsCatAssetIdToNameMessage | WsCatSetNameMessage | WsCatSpendMessage | WsCheckOfferValidityMessage | WsCreateNewWalletMessage | WsCreateOfferForIdsMessage | WsCreateSignedTransactionMessage | WsDeleteUnconfirmedTransactionsMessage | WsSelectCoinsMessage | WsGetSpendableCoinsMessage | WsGetCoinRecordsByNamesMessage | WsGetCurrentDerivationIndexMessage | WsExtendDerivationIndexMessage | WsGetNotificationsMessage | WsDeleteNotificationsMessage | WsSendNotificationMessage | WsSignMessageByAddressMessage | WsSignMessageByIdMessage | WsVerifySignatureMessage | WsGetTransactionMemoMessage | WsNftCalculateRoyaltiesMessage | WsNftMintBulkMessage | WsNftSetDidBulkMessage | WsNftTransferBulkMessage | WsDeleteAllKeysMessage | WsSetWalletResyncOnStartupMessage | WsDeleteKeyMessage | WsCheckDeleteKeyMessage | WsDidSetWalletNameMessage | WsDidGetWalletNameMessage | WsDidCreateAttestMessage | WsDidCreateBackupFileMessage | WsDidTransferDidMessage | WsDidMessageSpendMessage | WsDidGetInfoMessage | WsDidFindLostDidMessage | WsDidGetDidMessage | WsDidGetInformationNeededForRecoveryMessage | WsDidGetCurrentCoinInfoMessage | WsDidGetPubkeyMessage | WsDidGetRecoveryListMessage | WsDidGetMetadataMessage | WsDidRecoverySpendMessage | WsDidSpendMessage | WsDidUpdateRecoveryIdsMessage | WsDidUpdateMetadataMessage | WsDaoAdjustFilterLevelMessage | WsDaoAddFundsToTreasuryMessage | WsDaoGetTreasuryBalanceMessage | WsDaoGetTreasuryIdMessage | WsDaoGetRulesMessage | WsDaoSendToLockupMessage | WsDaoGetProposalsMessage | WsDaoGetProposalStateMessage | WsDaoExitLockupMessage | WsDaoCreateProposalMessage | WsDaoVoteOnProposalMessage | WsDaoParseProposalMessage | WsDaoCloseProposalMessage | WsDaoFreeCoinsFromFinishedProposalsMessage | WsNftMintNftMessage | WsNftCountNftsMessage | WsNftGetNftsMessage | WsNftSetNftDidMessage | WsNftGetByDidMessage | WsNftGetWalletDidMessage | WsNftGetWalletsWithDidsMessage | WsNftSetNftStatusMessage | WsNftTransferNftMessage | WsNftGetInfoMessage | WsNftAddUriMessage | WsFarmBlockMessage | WsGetTimestampForHeightMessage | WsSetAutoClaimMessage | WsGetAutoClaimMessage | WsGenerateMnemonicMessage | WsGetAllOffersMessage | WsGetCatListMessage | WsGetFarmedAmountMessage | WsGetHeightInfoMessage | WsGetInitialFreezePeriodMessageOfWallet | WsGetLoggedInFingerprintMessage | WsGetOfferMessage | WsGetOffersCountMessage | WsGetOfferSummaryMessage | WsGetNetworkInfoMessageOfWallet | WsGetNextAddressMessage | WsGetPrivateKeyMessage | WsGetPublicKeysMessage | WsGetSyncStatusMessage | WsGetTransactionMessage | WsGetTransactionCountMessage | WsGetTransactionsMessage | WsGetWalletBalanceMessage | WsGetWalletBalancesMessage | WsGetWalletsMessage | WsLoginMessage | WsPushTxMessageOfWallet | WsPushTransactionsMessage | WsPwJoinPoolMessage | WsPwSelfPoolMessage | WsPwAbsorbRewardsMessage | WsPwStatusMessage | WsRlSetUserInfoMessage | WsSendClawbackTransactionMessage | WsSendTransactionMessage | WsSendTransactionMultiMessage | WsSpendClawbackCoinsMessage | WsGetCoinRecordsMessage | WsTakeOfferMessage | WsCreateNewDlMessage | WsDlTrackNewMessage | WsDlStopTrackingMessage | WsDlLatestSingletonMessage | WsDlSingletonsByRootMessage | WsDlUpdateRootMessage | WsDlUpdateMultipleMessage | WsDlHistoryMessage | WsDlOwnedSingletonsMessage | WsDlGetMirrorsMessage | WsDlNewMirrorMessage | WsDlDeleteMirrorMessage | WsVcMintMessage | WsVcGetMessage | WsVcGetListMessage | WsVcSpendMessage | WsVcAddProofsMessage | WsVcGetProofsForRootMessage | WsVcRevokeMessage | WsCrcatApprovePendingMessage;
|