ISMCooldownReceipt
Inherits: IERC721
Functions
nextTokenId
ID of the next token to be minted.
function nextTokenId() external view returns (uint256);
mint
Mints a new cooldown receipt NFT to the specified address.
function mint(address to) external returns (uint256 tokenId);
Parameters
Name | Type | Description |
---|---|---|
to | address | The receiver of the minted NFT. |
Returns
Name | Type | Description |
---|---|---|
tokenId | uint256 | The ID of the minted NFT. |
burn
Burns the specified cooldown receipt NFT.
function burn(uint256 tokenId) external;
Parameters
Name | Type | Description |
---|---|---|
tokenId | uint256 | The ID of the NFT to burn. |