Skip to main content

eth_sendRawTransaction

Submits a raw transaction. For EIP-4844 transactions, the raw form must be the network form. This means it includes the blobs, KZG commitments, and KZG proofs.

Parameters

hex_tx*
Type: array of integer
Enter values (comma separated)
Example: $integer1, $integer2, $integer3

Returns

string

📤 Request

curl --request POST \
     --url https://testnet-rpc.monad.xyz \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "id": 0,
  "jsonrpc": "2.0",
  "method": "eth_sendRawTransaction",
  "params": []
}
'