-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
/**
* Fetch alias/basic/NFT/foundry output IDs based on the given query parameters.
*/
async outputIds(
queryParameters: GenericQueryParameter[],
): Promise<IOutputsResponse> {
const response = await this.methodHandler.callMethod({
name: 'outputIds',
data: {
queryParameters,
},
});
return JSON.parse(response).payload;
}