Skip to content

Commit 8c490fa

Browse files
Merge branch 'feat/new-methods' of https://github.com/metaplex-foundation/digital-asset-standard-api into feat/new-methods
2 parents 047a023 + af8d823 commit 8c490fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clients/js/src/decorator.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ export interface DasApiInterface {
2323
getAsset(assetId: PublicKey): Promise<DasApiAsset>;
2424

2525
/**
26-
* Return the metadata information of a compressed/standard asset.
26+
* Return the metadata information of multiple compressed/standard assets.
2727
*
28-
* @param assetId the id of the asset to fetch
28+
* @param assetIds Array of the ids of the assets to fetch
2929
*/
3030
getAssets(assetIds: PublicKey[]): Promise<DasApiAsset[]>;
3131

@@ -37,9 +37,9 @@ export interface DasApiInterface {
3737
getAssetProof(assetId: PublicKey): Promise<GetAssetProofRpcResponse>;
3838

3939
/**
40-
* Return the merkle tree proof information for a compressed asset.
40+
* Return the merkle tree proof information for multiple compressed assets.
4141
*
42-
* @param assetId the id of the asset to fetch the proof for
42+
* @param assetIds array of the ids of the assets to fetch the proofs for
4343
*/
4444
getAssetProofs(assetIds: PublicKey[]): Promise<GetAssetProofsRpcResponse>;
4545

0 commit comments

Comments
 (0)