eth_sendPrivateRawTransaction / eth_sendRawTransaction

Both method can be used to send a single private transaction to our builder. A private transaction will be included in upcoming blocks and sent to validators directly.

This endpoint is free for all plans.

Request payload format:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_sendPrivateRawTransaction",
  "params": [tx]  // String, a single signed transaction
  ]
}
    

Example request:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_sendPrivateRawTransaction",
  "params": ["0x...ff"]
}

Example response:

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": 200
}

Last updated