increase the number of assets and other asset fields

+1 vote
After the command: issue 1... asset1 1000 0.01
1. How to increase the number of assets issued by the issuer?
2. To create an asset, we only inform the asset's name and quantity; would it be possible to inform other fields, for example, color and weight?

thanks in advance
asked Aug 30, 2021 by Emiliano

1 Answer

0 votes

If you want to be able to issue more units of an asset after it is created, you need to set it as open when you create it. For example you could pass this object to the issue command in place of the name asset1:

{"name":"asset1","open":true}

If an asset is open, you can issue more units using the issuemore command.

All this is documented in the 'Asset management' section of the API guide:

https://www.multichain.com/developers/json-rpc-api/

answered Aug 30, 2021 by MultiChain
...