For the complete documentation index, see llms.txt. This page is also available as Markdown.

Mint fee

Mint fee explained

The mint fee is a straightforward percentage fee applied whenever a user mints new DTF tokens.

Technical implementation

The calculation is a simple percentage of the mint amount:

fee_amount = mint_amount * mint_fee_percentage
user_receives = mint_amount - fee_amount

Example

  • User mints 100 $COIN50

  • Mint fee = 1%

  • User receives 99 $COIN50

  • 1 $COIN50 is set aside for fee recipients

Last updated