Token Economics and Supply Control
Sequencing to control of supply of NFTs and tokens of a contract helps in the creation of rarity, scarcity, or inflationary models.
Example Use Case:
A game might require few valuable NFTs and on the other side, a social platform might require an unlimited number of NFTs for everyone.
Endpoint: POST /api/contracts/{contractId}/economics
Request Body:
json
Copy code
{
"maxSupply": 1000,
"initialSupply": 500,
"mintableBy": "creator",
"burnableBy": "owner",
"transferable": true
}
Description: This endpoint enables the specification of a supply capitalization for NFTs created from the contract, restriction of the producers and consumers of tokens as well as the transferability feature for the tokens.
Last updated