rgb_send_assets
Send RGB assets to multiple recipients by specifying asset IDs and corresponding recipient addresses with amounts. This tool facilitates asset transfers within the RGB Lightning Network ecosystem.
Instructions
Send RGB assets to recipients
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recipientMap | Yes | Map of asset IDs to recipient/amount pairs |
Input Schema (JSON Schema)
{
"properties": {
"recipientMap": {
"additionalProperties": {
"items": {
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount to send",
"type": "number"
},
"recipient": {
"description": "The recipient address",
"type": "string"
}
},
"required": [
"recipient",
"amount"
],
"type": "object"
},
"type": "array"
},
"description": "Map of asset IDs to recipient/amount pairs",
"type": "object"
}
},
"required": [
"recipientMap"
],
"type": "object"
}