send_transaction
Sends ETH from the wallet to a specified recipient address with automatic gas estimation.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
to | string | Yes | Recipient Ethereum address (0x-prefixed) |
amount | string | Yes | Amount 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"
}
}
}