send_mana
Transfer mana to specified users on the Manifold Markets platform by providing user IDs, amount, and an optional message.
Instructions
Send mana to other users
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of mana to send (min 10) | |
message | No | Optional message to include | |
toIds | Yes | Array of user IDs to send mana to |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount of mana to send (min 10)",
"type": "number"
},
"message": {
"description": "Optional message to include",
"type": "string"
},
"toIds": {
"description": "Array of user IDs to send mana to",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"toIds",
"amount"
],
"type": "object"
}