Mev Zone
  • Welcome
  • Getting Started
    • Introduction
    • New To Mev?
    • Sending Bundles
  • Mev Zone Block Builder
    • Overview
    • Send Bundle
    • Call Bundle
    • Send Private Transaction
  • Mev Zone Protect
    • Overview
  • Mev Zone Validators
    • What is the MEV Client
    • Run the MEV Client
Powered by GitBook
On this page
  • Request example
  • Response Example
  1. Mev Zone Block Builder

Send Private Transaction

This API is used to receive private transactions submitted by users, with the method name eth_sendPrivateTransaction

Request example

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendPrivateTransaction",
  "params": ["0x…1b"]  // signed raw transaction hash
}

Response Example

// Success
{
 "jsonrpc":"2.0",
 "id":"1",
 "result":"01234"  // tx hash
}‍‍
// Error
{
  "jsonrpc":"2.0",
  "id":"1",
  "error":{
    "code":-1234,
    "message":"error"
    }
}
PreviousCall BundleNextOverview

Last updated 4 months ago