我正在尝试在 cardano 主网上铸造一个代币。我已经建立了一个区块和权益池。我正在努力铸造一个令牌,我遇到了一个错误“意外的'2',需要空格,“+”或输入结束。
这是我正在运行的 linux 代码:
cardano-cli transaction build-raw --shelley-era --fee $fee --tx-in $txhash#$txix --tx-out $address+$output+"$tokenamount $policyid.$tokenname1" --mint="$tokenamount $policyid.$tokenname1" --minting-script-file policy/policy.script --out-file matx.raw
这是错误:
选项 --tx-out:意外的 '2' 需要空格、“+”或输入结束
输入:我尝试了 10000000、5000000 和 0 的不同输出。
$tokenamount="10000000"
$address=$(cat payment.addr)
$tokenname1="CpoolTest"
https://developers.cardano.org/docs/native-tokens/minting/
请帮忙