sendbtc

NAME
----
sendbtc - send XMR to an external wallet

SYNOPSIS
--------
sendbtc
		--address=<btc-address>
		--amount=<btc-amount>
		[--tx-fee-rate=<sats/byte>]
		[--memo=<"memo">]

DESCRIPTION
-----------
Send XMR from your Haveno wallet to an external XMR address.

OPTIONS
-------
--address
        The destination XMR address for the send transaction.

--amount
		The amount of XMR to send.

--tx-fee-rate
        An optional transaction fee rate (sats/byte) for the transaction.  The user is
        responsible for choosing a fee rate that will be accepted by the network in a
        reasonable amount of time, and the fee rate must be greater than 1 (sats/byte).

--memo
		An optional memo to be saved with the send btc transaction.
		A multi word memo must be enclosed in double quotes.

EXAMPLES
--------
Send 0.10 XMR to address bcrt1qygvsqmyt8jyhtp7l3zwqm7s7v3nar6vkc2luz3 with a default
transaction fee rate:
$ ./haveno-cli --password=xyz --port=9998 sendbtc --address=bcrt1qygvsqmyt8jyhtp7l3zwqm7s7v3nar6vkc2luz3 --amount=0.10

Send 0.05 XMR to address bcrt1qygvsqmyt8jyhtp7l3zwqm7s7v3nar6vkc2luz3 with a transaction
fee rate of 10 sats/byte:
$ ./haveno-cli --password=xyz --port=9998 sendbtc --address=bcrt1qygvsqmyt8jyhtp7l3zwqm7s7v3nar6vkc2luz3 --amount=0.05 \
    --tx-fee-rate=10

Send 0.005 XMR to address bcrt1qygvsqmyt8jyhtp7l3zwqm7s7v3nar6vkc2luz3 with a transaction
fee rate of 40 sats/byte, and save a memo with the send transaction:
$ ./haveno-cli --password=xyz --port=9998 sendbtc --address=bcrt1qygvsqmyt8jyhtp7l3zwqm7s7v3nar6vkc2luz3 --amount=0.005 \
    --tx-fee-rate=40 \
    --memo="note to self"
