For the complete documentation index, see llms.txt. This page is also available as Markdown.

Broadcast Tx

Introduction to Broadcast Tx of BlockRazor and integration methods

What is Broadcast Tx

Broadcast Tx is a fast transaction sending service provided by BlockRazor to help users send transactions with lower latency. It is part of the Fast ecosystem, but unlike the standard Fast model which requires attaching a tip to the transaction, Broadcast Tx does not require users to pay extra for a tip within the transaction, making it more suitable as a low-barrier, fast sending entry point.

Currently, Broadcast Tx offers two methods: SendTx and SendTxs, which are used to send single transactions and batch transactions.

It's important to note that while Broadcast Tx belongs to the Fast ecosystem, it is not equivalent to a private transmission channel with full transaction protection capabilities. Transactions sent via Broadcast Tx still enter the public propagation path and therefore DO NOT have MEV protection capabilities.

In what scenarios should you choose Broadcast Tx

  • No tips needed, lower barrier to entry Unlike the standard Fast model, Broadcast Tx does not require adding tips to transactions, making it more suitable for users who want to quickly integrate but do not want to modify the transaction incentive structure.

  • Suitable for scenarios where speed is a requirement but MEV protection is not currently emphasized If your priority is to send transactions out as quickly as possible, rather than hiding transactions or mitigating risks like sandwiches and frontrunnings through private paths, then Broadcast Tx would be a more straightforward option.

Benchmark

In our benchmark on transaction inclusion latency, we conducted multiple rounds of comparisons between BlockRazor and regular Nodes in four regions: Dublin, Frankfurt, Tokyo, and Virginia. The evaluation criteria consisted of two layers: first, comparing whether the transaction is included in the earlier block; second, if both transactions were included within the same block, we further compared the order of their transaction indices. The results are as follows:

Region
BlockRazor Total Lead Rate

Dublin

88.7% - Same block but better index: 82.9% - Earlier block: 5.8%

Frankfurt

85.4% - Same block but better index: 81.3% - Earlier block: 4.2%

Tokyo

85.1% - Same block but better index: 78.7% - Earlier block: 6.4%

Virginia

97.9% - Same block but better index: 95.7% - Earlier block: 2.1%

In terms of percentage results, BlockRazor maintained a higher overall lead across all regions. In the Dublin region, BlockRazor led by 88.7%, in Frankfurt by 85.4%, in Tokyo by 85.1%, and in Virginia by a remarkable 97.9%.

Looking further at the leading mechanism, BlockRazor's advantages are mainly reflected in two aspects: First, in most leading rounds, even when entering the same block as a regular Node, BlockRazor still obtains a higher transaction index; second, in some rounds, BlockRazor can even directly complete transaction inclusion one block ahead. This indicates that BlockRazor not only has a greater chance of entering earlier block windows, but also has a better chance of achieving a superior ranking position in the competition for the same block, thus forming a stable submission advantage.

Endpoint

Region
Availability Zone(AWS)
Relay Address

Frankfurt

euc1-az2

35.157.64.49:50051

Tokyo

apne1-az4

54.249.93.63:50051

Ireland

euw1-az1

3.248.65.151:50051

Virginia

use1-az4

52.205.173.134:50051

Rate Limit

User Type
Limit
Price

New registered users

SendTx

  • TPS:10 Txs / 5s

  • Daily Tx Limit:10

Free

Paid users

SendTx

  • TPS:100 Txs / 5s

  • 每日交易上限:100000

SendTxs

  • BPS:4 batches / 1s

  • Txs per Batch:10

$500 / month

SendTx

Request Parameter

Parameters
Mandatory
Format
Example
Description

Transaction

Mandatory

String

"0xf8……8219"

signed raw tx

Request Example

https://github.com/BlockRazorinc/relay_example

Response Example

Success

Error

SendTxs

Request Parameter

Parameters
Mandatory
Format
Example
Description

Transactions

Mandatory

Array[String]

["0xf8……8219", "0xcb……2ac0"]

signed raw txs

Request Example

https://github.com/BlockRazorinc/relay_example

Response Example

Success

Error

Proto

The code of relay.proto is as follows:

Last updated

Was this helpful?