Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

send_transaction

Sends ETH from the wallet to a specified recipient address with automatic gas estimation.

Parameters

ParameterTypeRequiredDescription
tostringYesRecipient Ethereum address (0x-prefixed)
amountstringYesAmount of ETH to send (e.g., "0.1")

Returns

{
  "txHash": "0x1234567890abcdef...",
  "status": "confirmed"
}

Example

Request
{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "mcpwallet_send_transaction",
    "arguments": {
      "to": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
      "amount": "0.01"
    }
  }
}