compose_send
Compose a transaction to send Counterparty tokens to any Bitcoin address. Define asset, quantity, source, and destination, plus optional memo, fee rate, and UTXO selection.
Instructions
Compose a transaction to send Counterparty tokens to an address
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memo | No | Optional memo to attach | |
| asset | Yes | Asset to send (e.g. XCP, PEPECASH) | |
| address | Yes | Source Bitcoin address | |
| quantity | Yes | Raw integer amount. For divisible assets: multiply human amount by 10^8 (e.g. 1.0 XCP = 100000000). For indivisible: use whole number. Check get_asset_info for divisibility. | |
| inputs_set | No | Comma-separated UTXOs to use as inputs (txid:vout) | |
| destination | Yes | Destination Bitcoin address | |
| memo_is_hex | No | Whether memo is hex-encoded | |
| no_dispense | No | If true, prevent this send from triggering a dispenser on the destination address | |
| sat_per_vbyte | No | Fee rate in satoshis per virtual byte (e.g. 1, 5.5, 0.15). Check get_fee_estimate for current market rates. |