eth_sendRawTransaction
Send Transaction RPC Method
POST https://eth-rpc.kolibr.io/
Submits a signed transaction to the Kolibrio Order Flow service and rebroadcasts it to another source if required. Fully implements the standard Solana eth_sendRawTransaction RPC method.
Additional URL Query Parameters
allow_reverts
(optional)
Controls whether transactions that might revert are submitted. Default is false to prevent transactions that may fail, avoiding potential extra gas costs Set to true to allow pontetially reverted transactions to land onchain.
skip_preflight
(optional)
Controls whether Kolibrio simulates validation checks (nonce, balance, gas limit) before submission. Default false — returns standard RPC errors on invalid transactions. Set true to skip checks and always receive a transaction hash result.
validToBlock (optional)
The block number as a string in hexadecimal format or number, indicating the maximum block until which the transaction will be rebroadcast and remain valid. By default, Kolibrio sets this to the subsequent 6 blocks. This parameter can be adjusted to extend or reduce the validity period as needed.
API KEY
api_key (optional)
Required for authentication, revenue distribution, and tracking. Including this key ensures that any generated revenue is attributed to the correct account. If not specified, the transaction will still be processed, but revenue will not be distributed.
Can be passed as an x-api-key header or as an api_key query parameter in the URL.
To obtain an api key, users must sign up in app.kolibrio.xyz
Request Example
curl -X POST "https://eth-rpc.kolibr.io/?allow_reverts=false&api_key=YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_sendRawTransaction",
"params": ["0xYOUR_RAW_TRANSACTION"],
"id": 1
}'
Response Example
{
"jsonrpc": "2.0",
"id": 1,
"result": "0xabc1234ef56789abcdef0123456789abcdef0123456789abcdef0123456789ab"
}
Last updated