Mint
In minting, the recipient address of the transaction receives the minted amount. Therefore, minting to other addresses is allowed; there is no restriction against self-minting.
operation
yes
Operation, strictly equal to 'mint'
ticker
yes
Token ticker
amount
yes
Mint quantity, not exceeding the limit.
Blob20 minting operation, with the operation being mint, results in the minted blobscription belonging to the wallet address of the transaction recipient.
Notes:
ticker: The name of the inscription, case-insensitive, must be an already deployed inscription.amount: The quantity to be minted, with a maximum value not exceeding the limit set during deployment. The number of decimal places cannot exceed the precision specified by the decimals limit."
For example:
{
"protocol": "blob20",
"token": {
"operation": "mint",
"ticker": "BLOB",
"amount": 1000
}
}Last updated