The Warp transactions feature is available starting from the paid plans.Warp transactions (not requests, just the transactions) consumed are billed separately. For details, see Pricing with the pay-as-you-go setting enabled.
Why use with Chainstack
With Chainstack Trader nodes and Global nodes, you get the convenience of both worlds — reliable nodes for everything up to sending the transaction & the high speed of bloXroute for the transaction itself. In other words, if you have a bot running, switching your setup to a Chainstack Trader node or Global node with Warp transactions is as easy as switching the endpoint in your code. The way Chainstack Warp transactions work is all calls go through the Chainstack infrastructure, except for one —eth_sendRawTransaction
for EVMs or sendTransaction
for Solana — this call is always routed directly to bloXroute.
Normally, you’d face two challenging scenarios:
- Using bloXroute alone would require crafting your own transaction and using different node endpoints from providers, necessitating a custom setup.
- Relying solely on nodes would mean creating your own low-latency setup.
Sample scenario
The use cases are numerous, but here’s a sample one:- Liquidity is deployed on a chain
- You get a signal on the deployed liquidity through third-party monitoring systems
- On the signal, your bot acts on the liquidity (e.g. does a purchase transaction) and the transaction is immediately propagated through the Chainstack Trader node or Global node with Warp transactions enabled for any validator node to pick it up
- Once your transaction is committed by a validator to a block, you win the race thanks to the Chainstack Warp transactions propagation
Availability
The Warp transactions feature is available starting from the paid plans. Warp transactions (not requests, just the transactions) consumed are billed separately. For details, see Pricing with the pay-as-you-go setting enabled.Usage
Under the hood, a Warp transaction is a transaction sent to your node with:- EVM —
eth_sendRawTransaction
- Solana —
sendTransaction
eth_sendRawTransaction
.
With the Warp transactions setting on, only eth_sendRawTransaction
on EVM networks or sendTransaction
transactions are consumed as Warp transactions. Other requests to the node are consumed as regular requests.
For EVMs, see also Sending Trader node warp transaction with web3.js, ethers.js, web3.py, and ethClient.go.