rgb_send_bitcoin
Send Bitcoin to a specified address using the RGB Lightning Network MCP Server. This tool processes on-chain Bitcoin transactions by accepting a recipient address and amount in satoshis.
Instructions
Send Bitcoin to an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The recipient Bitcoin address | |
amount | Yes | The amount to send in satoshis |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The recipient Bitcoin address",
"type": "string"
},
"amount": {
"description": "The amount to send in satoshis",
"type": "number"
}
},
"required": [
"address",
"amount"
],
"type": "object"
}