Token Supply
FantomArtion Contract
Type of Token: ERC-721 Supply Modification: Yes Minting and Burning: Both are supported Who can modify:
Minting: Only the contract owner can initiate a pre-mint, and the beneficiary can mint the token.
Burning: Both the contract owner and the Digital Asset owner have the ability to burn tokens.
Circumstances:
Minting: Minting is primarily initiated via the
preMint
andmint
functions. ThepreMint
function is used to create a pre-mint record and collect platform fees. The actual minting occurs in themint
function, where the Digital Asset is minted to the beneficiary and the pre-mint data is cleared.Burning: Burning of an Digital Asset occues when an Digital Asset owner wants to claim their physical asset and take it out of circulation. This can be done by the contract owner or the Digital Asset creator through the
burn
function.
Functions involved:
Minting:
preMint
andmint
Burning:
burn
FantomTokenRegistry Contract
Type of Token: ERC-20 Supply Modification: No, the contract itself doesn't manage ERC-20 token supply. It maintains a registry of approved tokens. Minting and Burning: N/A Who can modify: N/A Circumstances: N/A
Note:
None of the other contracts (FantomAddressRegistry, FantomAuction, FantomBundleMarketplace, FantomMarketplace, FantomPriceFeed, Verifiable) deal with the supply of tokens directly.
Last updated