Skip to main content
BETA
HomeIntegration BuilderAPI ReferenceGuidesChangelog
View Mirror World on Github
Join the Discord server

Language:

GetCollectionFilters

Get collections filter's info in metadata.

Parameters

collections|string - The address of the collections to be queried.

action|Action<CommonResponse<GetCollectionFilterInfoResponse>> - The callback function of this method is used to receive the results.

Returns

response class - CommonResponse<GetCollectionFilterInfoResponse>

Code Example


string collection = "collection address";
MWSDK.Solana.Metadata.GetCollectionFilters(collection, (res) => {
CommonResponse<GetCollectionFilterInfoResponse> resObj = res;
long code = resObj.code;
string message = resObj.message;
GetCollectionFilterInfoResponse filterInfo = resObj.data;
//todo...
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog