Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/BlockRazorinc/docs_en/llms.txt

Use this file to discover all available pages before exploring further.

BlockRazor Node Stream enables your infrastructure to stay continuously synchronized with the blockchain’s world state by peering directly with BlockRazor’s high-performance full node network. Rather than polling RPC endpoints for state updates, Node Stream maintains a persistent, low-latency data connection so that your application’s local view of account balances, contract storage, and chain head is always current. This is especially valuable for trading systems, arbitrage bots, and analytics platforms that cannot tolerate stale state.

Synchronization Options

BlockRazor offers two Node Stream configurations depending on your operational requirements: shared full node synchronization and a fully dedicated node instance.

Full Node Synchronization

Synchronize your local node with BlockRazor’s distributed full node network over an optimized enode connection. Benefit from BlockRazor’s global node infrastructure without managing your own hardware.

Dedicated Node

Provision an exclusive BSC full node managed by BlockRazor. Receive a private enode credential and connect your infrastructure directly — no resource sharing with other clients. $800 / enode / month
Node Stream is currently available for BSC (BNB Smart Chain). Full Node Synchronization is ideal for teams that already operate their own nodes and want to minimize peer-discovery overhead. Dedicated Node is best for teams requiring guaranteed resource allocation and isolation.

Setting Up a Dedicated Node

Follow these steps to provision and connect a Dedicated Node on BSC:
1

Request via Dashboard

Log in to the BlockRazor dashboard and navigate to the Node Stream section. Submit a Dedicated Node request by selecting your preferred region and specifying any configuration requirements. Your request is reviewed and provisioned by the BlockRazor infrastructure team.
2

Receive enode Credentials

Once provisioned, you will receive a unique enode identifier in the format enode://NODE_PUBLIC_KEY@HOST:PORT. This credential is exclusive to your account and grants your node direct access to BlockRazor’s dedicated BSC instance. Store this credential securely — it identifies your authorized peering connection.
3

Configure Your Node to Sync

Add the BlockRazor enode as a static peer or bootnode in your local BSC node configuration. Your node will establish a direct, persistent peering session and begin synchronizing state immediately.
geth --bootnodes enode://YOUR_ENODE_ID@YOUR_HOST:PORT
For persistent static peer configuration, add the enode to your static-nodes.json file:
[
  "enode://YOUR_ENODE_ID@YOUR_HOST:PORT"
]
Restart your geth process after updating the configuration. You can verify the connection is active with:
geth attach --exec "admin.peers"
A successful output will list the BlockRazor enode among your active peers, confirming that synchronization is live.

Why Node Stream?

Relying on public RPC endpoints introduces polling delays, rate limits, and shared infrastructure bottlenecks. Node Stream removes these constraints entirely.

Lowest Possible Latency

Direct enode peering means your node receives block and state updates through the same gossip layer as validators — with no RPC intermediary adding overhead.

Always-Current World State

Your local node maintains a real-time synchronized copy of the blockchain state, so reads are local and instantaneous rather than remote and rate-limited.

No Rate Limits

Unlike shared RPC endpoints, an enode connection has no artificial request caps. Your node syncs as fast as the network allows.

Infrastructure Isolation

The Dedicated Node option ensures no resource contention with other clients, giving you predictable, consistent synchronization performance.

Pricing

OptionChainPrice
Full Node SynchronizationBSCIncluded in BSC Package ($1,250/month)
Dedicated NodeBSC$800 / enode / month
Node Stream (Full Node Synchronization) is included in the BlockRazor BSC Package alongside Public Mempool, Block Stream, Call Bundle, Fast Submit, and Tx Trace — at a combined price of $1,250/month. See the Pricing page for full package details.
Node Stream pairs naturally with other BlockRazor data products. Once your world state is synchronized, combine it with real-time pending transaction data for a complete picture of both confirmed and unconfirmed chain activity:
  • Public Mempool Stream — Monitor pending transactions before they are confirmed, using your synchronized world state to evaluate transaction context and profitability in real time.

Build docs developers (and LLMs) love