๐นCW20 Token
Transaction
Transfer
Transfer tokens from a transaction executor to recipient
.
Burn
Reduce tokens from the balance of a transaction executor.
Send
Work same as transfer
but it sends tokens to contract
, not an user address.
When processing a transaction, it triggers the given message in msg
. The given message should be executable on its recipient contract
.
msg
is base64-encoded JSON string.
Mint
Issue amount
of tokens and transfer them to the given recipient
.
Increase/Decrease Allowance
Increases/Decreases the allowance for spender
to handle specific amount
of token.
After execution, the token can be transferred by executing a transaction from spender
. Its transferability expires on the given time point.
Transfer from/Send from
Transfers amount
of token from owner
to recipient
. The allowance should be increased before execution.
Burn from
Burn a specific amount
of token from owner
โs balance.
Query
Get Balance
Check the token balance
of the given address
Token Info
Check metadata of the contract. It checks:
Name
Decimals
Total supply
Other useful information
Minter
Allowance
Get the allowance list of the given owner
and spender
.
All Allowances
Get the list of all allowances of the token that owner
received and not expired.
All Accounts
Get all account list of the token holder.
Last updated