You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Set the maximum supply of the token. * * @param issuer - the issuer account setting the maximum supply. * @param maximum_supply - the maximum supply of the token.*/
[[eosio::action]]
voidsetmaxsupply( const name& issuer, const asset& maximum_supply );
Preconditions
require_auth(issuer)
maximum_supply must match the symbol of the token.
maximum_supply must be greater than the current supply.
Purpose
Create
setmaxsupply
ACTION where the token issuer can set the maximum supply of the token.Feedback provided by
setmaxupply
ACTIONPreconditions
require_auth(issuer)
maximum_supply
must match the symbol of the token.maximum_supply
must be greater than the current supply.References
eosio.token::create
eosio.token::stat
The text was updated successfully, but these errors were encountered: