send-transaction
Facilitates secure blockchain transactions by sending data, value, and recipient details to networks through MCPilot, enabling AI-powered interactions without exposing private keys.
Instructions
Send transactions to networks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | No | ||
to | Yes | ||
value | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"type": "string"
},
"to": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"to"
],
"type": "object"
}