Solana Compute Units
All Moralis plans have generous limits on the number of requests you can make per month. How many included requests you have depends on the plan you have, check the pricing page for more details.
Some requests are more expensive than others. By giving some heavy requests higher weight, we ensure that you only pay for what you use and not a cent more.
This allows you to get cheaper requests for most use cases while protecting our systems from abuse by weighing the computationally expensive endpoints.
What is a Compute Unit (CU)?​
A compute unit is a measure of the requests needed to query computationally expensive API endpoints. Each request has both price and rate limit cost that are measured in terms of compute units. It is also important to note that some API will have dynamic pricing that will cost more CU the more inputs you add for the request.
Price​
Request price refers to the amount of compute units that will be calculated towards your API usage billing.
Dynamic Prices​
Some endpoints have a dynamically priced CU cost based on the number of resources being requested. The more resources being requested, the higher the CU cost for that particular request. Taking getNativeBalancesForAddresses as an example; the base CU cost of this endpoint when fetching the balance of a single address is 1 CU. If we wanted to fetch the balances of 5 addresses at once, then the CU cost for that particular call would be 5 CU.
Rate limit Cost​
On the other hand, request rate limit cost refers to the amount of compute units that an API request cost in terms of rate limits.
Name | Path | Price | Rate Limit Cost | |
Base | Additional | |||
getSolNFTs | /account/{network}/{address}/nft | 1 | 0 | 1 |
getSolNFTMetadata | /nft/{network}/{address}/metadata | 1 | 0 | 1 |
getSolTokenPrice | /token/{network}/{address}/price | 1 | 0 | 1 |
solBalance | /account/{network}/{address}/balance | 1 | 0 | 1 |
getSPL | /account/{network}/{address}/tokens | 1 | 0 | 1 |
getSolPortfolio | /account/{network}/{address}/portfolio | 1 | 0 | 1 |
How to Check Compute Units?​
To check the latest compute units of our API offerings, you can use endpointWeights to do so.
- index.js (JavaScript)
- index.ts (TypeScript)
const Moralis = require("moralis").default;
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});
const response = await Moralis.EvmApi.utils.endpointWeights();
console.log(response?.toJSON());
import Moralis from "moralis";
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});
const response = await Moralis.EvmApi.utils.web3ApiVersion();
console.log(response?.toJSON());
Your output for the API request will be as follows:
[
{
"endpoint": "getBlock",
"path": "/block/{block_number_or_hash}",
"price": 5,
"rateLimitCost": 5
},
{
"endpoint": "getContractEvents",
"path": "/{address}/events",
"price": 2,
"rateLimitCost": 2
},
{
"endpoint": "getTransactions",
"path": "/transaction/{transaction_hash}",
"price": 1,
"rateLimitCost": 3
}
]
where price
refers to how much CU does the API request cost in terms of billing and rateLimitCost
refers to how much CU does the API request cost in terms of rate limits.