Skip to main content

eth_sendRawTransaction

Ethereum API

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.

Params

(1)

1. Transaction (required)

string
Match pattern:
^0x[0-9a-f]*$

Result

(Transaction hash)
string
Match pattern:
^0x[0-9a-f]{64}$

Params

Transaction


Request

await window.ethereum.request({
"method": "eth_sendRawTransaction",
"params": [
null
]
});