We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef39dfd commit e69b583Copy full SHA for e69b583
proto/cusf/mainchain/v1/wallet.proto
@@ -197,7 +197,13 @@ message SendTransactionRequest {
197
// message.
198
optional cusf.common.v1.Hex op_return_message = 3;
199
200
+ // UTXOs that must be included in the transaction. Incompatible with
201
+ // specifying a draining address.
202
repeated RequiredUtxo required_utxos = 4;
203
+
204
+ // If set, the transaction will send all UTXOs in the wallet to this address.
205
+ // Incompatible with specifying required UTXOs.
206
+ optional string drain_wallet_to = 5;
207
}
208
message SendTransactionResponse {
209
cusf.common.v1.ReverseHex txid = 1;
0 commit comments