cardano-minter icon indicating copy to clipboard operation
cardano-minter copied to clipboard

How to create an NFT on the Cardano blockchain using JavaScript

Results 2 cardano-minter issues
Sort by recently updated
recently updated
newest added

Error: Command failed: cardano-cli transaction submit --testnet-magic 1097911063 --tx-file ../cnode/tmp/tx_iyc13iwv6.signed Command failed: transaction submit Error: Error while submitting tx: ShelleyTxValidationError ShelleyBasedEraAlonzo (ApplyTxError [UtxowFailure (WrappedShelleyEraFailure (UtxoFailure (ValueNotConservedUTxO (Value 156502547 (fromList [(PolicyID...

Update this code if(Object.keys(tx.txOut[0].value).includes("undefined")|| Object.keys(tx.txIn[0].value.includes("undefinded"))){ delete tx.txOut[0].value.undefined delete tx.txIn[0].value.undefined } with this one if ( Object.keys(tx.txOut[0].value).includes("undefined") || Object.keys(tx.txIn[0].value).includes("undefinded") ) { delete tx.txOut[0].value.undefined; delete tx.txIn[0].value.undefined; }