Base Configurations
List of NFT Base Confiugrations Endpoints.
Configurations
/configurations
GET
https://explorer.protokol.sh/api/nft/configurations
Returns Base Plugins configuration settings
{
"data": {
"package": {
"name": "@protokol/nft-base-api",
"currentVersion": "1.0.1",
"latestVersion": "1.0.1"
},
"crypto": {
"defaults": {
"nftBaseTypeGroup": 9000,
"nftCollectionName": {
"minLength": 5,
"maxLength": 40
},
"nftCollectionDescription": {
"minLength": 5,
"maxLength": 80
},
"nftCollectionAllowedIssuers": {
"minItems": 1,
"maxItems": 10
},
"nftTransfer": {
"minItems": 1,
"maxItems": 10
},
"nftCollectionJsonSchemaByteSize": 10000,
"nftTokenAttributesByteSize": 10000
}
},
"transactions": {
"defaults": {
"authorizedRegistrators": [],
"feeType": 0
}
}
}
}
Examples
curl https://explorer.protokol.sh/api/nft/configurations
const response = connection.NFTBaseApi("configurations").index();
>>> Promise<ApiResponse<ConfigurationsResource>>