Clarity provides a built-in way to define fungible tokens using `define-fungible-token`. This automatically tracks supply and balances.
clarity (define-fungible-token my-token) (ft-mint? my-token u1000 tx-sender)
Defining custom tokens.
Clarity provides a built-in way to define fungible tokens using `define-fungible-token`. This automatically tracks supply and balances.
clarity (define-fungible-token my-token) (ft-mint? my-token u1000 tx-sender)
1. Which function creates a new FT?