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
Hello ,
I am trying to mint an asset as described in this repo , but I debugged the code and founded that the selectedUtxos is empty as indicated in the attached image
This code always break at the tx.buil(); giving this error
Error: [Transaction] An error occurred during build: Insufficient input in transaction. shortage: {ada in inputs: 0, ada in outputs: 11168010, fee 182749
NOTE! "ada in inputs" must be >= ("ada in outputs" + fee) before adding change
and "ada in inputs" must be == ("ada in outputs" + fee) after adding change
Can u guid me what is the issue .
thanks
The text was updated successfully, but these errors were encountered:
Hello ,
I am trying to mint an asset as described in this repo , but I debugged the code and founded that the selectedUtxos is empty as indicated in the attached image
Despite the fact the utxos has at least one utxo
The code I am using to mint as follow:
`
const recipientAddtess = req.body.recipientAddress;
const utxos = req.body.utxos;
}`
This code always break at the tx.buil(); giving this error
Error: [Transaction] An error occurred during build: Insufficient input in transaction. shortage: {ada in inputs: 0, ada in outputs: 11168010, fee 182749
NOTE! "ada in inputs" must be >= ("ada in outputs" + fee) before adding change
and "ada in inputs" must be == ("ada in outputs" + fee) after adding change
Can u guid me what is the issue .
thanks
The text was updated successfully, but these errors were encountered: