> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# eth_sendRawTransaction | Ronin

> Ronin API method eth_sendRawTransaction is used to submit a pre-signed transaction to the network. Use it on Ronin via Chainstack.

Ronin API method `eth_sendRawTransaction` is used to submit a pre-signed transaction to the network. This is typically used for transactions that have been signed offline or in a secure environment, allowing for the transaction to be broadcast without exposing private keys online.

<Warning>
  Note that the interactive example in this page will not work, due to the fact that `eth_sendRawTransaction` is used to modify the state of the blockchain, it is not possible to duplicate the same request.
</Warning>

## Parameters

* `string` - The full, hex-encoded data of the signed transaction.

## Response

* `result` - The transaction hash of the successfully submitted transaction.

## Use case

The `eth_sendRawTransaction` method is crucial for securely interacting with the Ronin network, especially in scenarios where an extra layer of security is required. It's commonly used in wallet applications, automated trading systems, and other applications where transactions need to be prepared and signed before being broadcast to the network.


## OpenAPI

````yaml openapi/ronin_node_api/eth_sendRawTransaction.json POST /3997273fc956a67dc6982384500e669e
openapi: 3.0.0
info:
  title: eth_sendRawTransaction
  version: 1.0.0
  description: Submits a pre-signed transaction for broadcast to the Ethereum network.
servers:
  - url: https://ronin-mainnet.core.chainstack.com
security: []
paths:
  /3997273fc956a67dc6982384500e669e:
    post:
      tags:
        - blockchain
      summary: Submit a pre-signed transaction
      operationId: sendRawTransaction
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_sendRawTransaction
                params:
                  type: array
                  items:
                    type: string
                  default:
                    - >-
                      0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675
      responses:
        '200':
          description: The transaction hash of the submitted transaction
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: string

````