MCP Ethers Wallet

sendRawTransaction

Send a raw transaction

Input Schema

NameRequiredDescriptionDefault
providerNoOptional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.
signedTransactionYesA fully serialized and signed transaction

Input Schema (JSON Schema)

{ "properties": { "provider": { "description": "Optional. Either a network name or custom RPC URL. Use getSupportedNetworks to get a list of supported networks.", "type": "string" }, "signedTransaction": { "description": "A fully serialized and signed transaction", "type": "string" } }, "required": [ "signedTransaction" ], "type": "object" }