Token with Mintable Supply

A fungible token with a mintable supply can be minted once and has the functionality to mint additional tokens throughout its lifetime.

The smart contract template for fungible tokens with a mintable supply is suited for uses cases where the token should follow additional issuance in the future. After deployment, new tokens can be created.

Variables

_name: The name of your token contract

_symbol: The ticker symbol ($XXX) of your token contract

_decimals: The total decimals (after 0) of your token. Generally this is set ot 18.

_totalSupply: The total supply of your minted token. This is the initial supply. New tokens can be minted.

Functions

Last updated