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
When minting a new token with cardano-cli there are restrictions on the characters that can be used for the asset name. It is not possible to use any symbols or spaces even though these are allowed by the ledger. There are examples in this native token document that are not currently possible to create, e.g. “Voting shares” and “Non-voting shares”
Example of issue:
$ cardano-cli transaction build-raw --tx-in 0f53b8a419b1505389700b66b5194e0ceefe6aecec91b7d41743764d96374f74#1 --tx-out="$(cat policy.addr)+999999800000+100 $(cat policyId).Non-voting shares" --mint="100 $(cat policyId).Non-voting shares" --fee 200000 --out-file txbody --mary-era
option --tx-out:
unexpected '-'
expecting letter or digit, white space, "+" or end of input
Desired result:
Cardano-cli allows any character to be used for asset name. It will match ledger's validation rules.
The text was updated successfully, but these errors were encountered:
When minting a new token with cardano-cli there are restrictions on the characters that can be used for the asset name. It is not possible to use any symbols or spaces even though these are allowed by the ledger. There are examples in this native token document that are not currently possible to create, e.g. “Voting shares” and “Non-voting shares”
Example of issue:
Desired result:
Cardano-cli allows any character to be used for asset name. It will match ledger's validation rules.
The text was updated successfully, but these errors were encountered: