send_transaction
Send signed and serialized transactions to the Solana blockchain using the MCP server. This tool processes pre-formatted transaction data and returns the send result.
Instructions
Send a transaction that has already been signed and serialized into the wire format.
Args: txn (bytes): Signed transaction as bytes
Returns: str: Transaction send result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txn | Yes |
Input Schema (JSON Schema)
{
"properties": {
"txn": {
"format": "binary",
"title": "Txn",
"type": "string"
}
},
"required": [
"txn"
],
"title": "send_transactionArguments",
"type": "object"
}