Titan Builder Docs
  • General
  • API
    • eth_sendBundle
    • eth_cancelBundle
    • eth_sendRawTransaction
    • eth_sendPrivateTransaction
    • eth_sendEndOfBlockBundle
    • eth_sendBlobs
  • MEV Share
  • Bundle Tracing
  • Authentication
  • Builder Public Keys
  • Block Building Algorithm
  • links
    • Discord
    • Twitter
    • Substack
    • Main website
Powered by GitBook
On this page
  • CURL example
  • Response example
  1. API

eth_sendRawTransaction

or eth_sendPrivateRawTransaction

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_sendRawTransaction”,
  "params": ["0x…4b"],  // Signed raw tx hex
}

CURL example

curl -s --data '{"jsonrpc": "2.0","id": "1","method": "eth_sendRawTransaction","params": ["0x…12"]}' -H "Content-Type: application/json" -X POST https://rpc.titanbuilder.xyz

Response example

{"result":200,"error":null,"id":1}

Previouseth_cancelBundleNexteth_sendPrivateTransaction

Last updated 10 months ago