Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For more information about DAS, visit the Metaplex documentation: https://develo

| Method | Function | CU cost | Throughput CUs (how many CUs this will count for towards your CUs per second capacity) |
| --- | --- | --- | --- |
| [getAsset](/docs/reference/alchemy-das-apis-for-solana/solana-das-api-endpoints/get-asset) | Returns the information of a compressed/standard asset including metadata and owner. | 160 | 200 |
| [getAsset](/docs/reference/alchemy-das-apis-for-solana/solana-das-api-endpoints/get-asset) | Returns the information of a compressed/standard asset including metadata and owner. | 80 | 200 |
| [getAssets](/docs/reference/alchemy-das-apis-for-solana/solana-das-api-endpoints/get-assets) | Returns the information of multiple compressed/standard assets including their metadata and owners. | 480 | 200 |
| [getAssetProof](/docs/reference/alchemy-das-apis-for-solana/solana-das-api-endpoints/get-asset-proof) | Returns the merkle tree proof information for a compressed asset. | 160 | 200 |
| [getAssetProofs](/docs/reference/alchemy-das-apis-for-solana/solana-das-api-endpoints/get-asset-proofs) | Returns the merkle tree proof information for multiple compressed assets. This method is used to verify the authenticity of compressed NFTs by retrieving their merkle proofs. | 480 | 200 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ For more details, check out the [Compute Units](/docs/reference/compute-units#wh
{/* cu:auto product="solana-das" */}
| Method | CU | Throughput CU |
| -------------------- | --- | ------------- |
| getAsset | 160 | 200 |
| getAsset | 80 | 200 |
| getAssetProof | 160 | 200 |
| getAssetSignatures | 160 | 200 |
| getNftEditions | 160 | 200 |
Expand Down
2 changes: 1 addition & 1 deletion src/openrpc/alchemy/solana-das/solana-das.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ servers:
methods:
- name: getAsset
description: Returns information about a single digital asset.
x-compute-units: 160
x-compute-units: 80
x-rate-limit-cus: 200
paramStructure: by-name
params:
Expand Down
Loading