RPC Support
Our partner Blockvision provides high-quality private RPCs at an affordable price. You can read more about it here: https://docs.blockvision.org/reference/rate-limits-and-compute-units
Rate Limits and Compute Units
The illustration of what Compute Units are and how we use them.
Compute Units are a measure of the total computing resources that your application uses on BlockVision. Some query interfaces are lightweight and fast (e.g. eth_blockNumber), while others can be more complex and require more resources(e.g. eth_call). Each method is assigned a certain number of computational units derived from the global average duration of each method.
Pricing Plans
For Free Tier, some APIs like Account API support 300 free trials.
Sui RPC APIs
For Sui RPC endpoint, each RPC call currently consumes 50 compute unit.
Sui Indexing APIs
EVM RPC APIs
Trace APIs
WebSocket
WebSocket subscriptions like eth_subscribe on BlockVision are priced based on bandwidth: the amount of data delivered as part of the subscription.
Each subscription type is priced identically, per byte:
On average, websocket subscriptions event sizes range from a minimum of about 75 bytes to a maximum of about 1000 bytes. Specifically, subscribing to newPendingTransactions costs about 2 compute units per event. The event bvPendingTransactions costs about 20 compute units, while newHeads requires about 25 compute units. But the actual situation may be far from this number.
Rate Limits (CUPS)
Rate limit serves to protect users from malicious actors or runaway scripts. Each tier has prioritized rate limit allocations designed for ultimate reliability. CUPS is a measure of the number of compute units used per second when making requests. Since each request is weighted differently, the query frequency is limited based on the total compute units used rather than the number of requests. For example, if you send one web3_sha3(15 CUs), two eth_blockNumber (16 CUs) requests in the same second, you will have a total of 47 CUPS.
Last updated