Code Monkey home page Code Monkey logo

Comments (6)

kardall avatar kardall commented on June 10, 2024

Just got this same error when I tried to mint an nft as well...

from cardanocli-js.

kardall avatar kardall commented on June 10, 2024

helper.js
line 145 >
minting.actions
instead of minting.action

from cardanocli-js.

kardall avatar kardall commented on June 10, 2024

Has been updated 4 days ago, update and the above fix was added :)

from cardanocli-js.

devhulk avatar devhulk commented on June 10, 2024

I am still getting an error when trying to mint my NFT. Code is pretty much the same as above. Getting even after I replace mint.action with mint.actions. I even cloned your repo and imported the index.js to make sure the versioning is appropriate. Not sure what the issue is. Should I open a separate issue?
CleanShot 2021-10-25 at 15 48 09@2x

from cardanocli-js.

kardall avatar kardall commented on June 10, 2024

They have updated their code beyond that. It's different and I haven't gotten back into using this yet.

So the code that I mentioned doesn't work anymore. It did, then they changed it. If you notice the 'actions' isn't there anymore, it's minting.forEach instead of minting.actions.forEach so... you'll have to look through the code and figure out what it's doing. Fix it and maybe do a pull request. I stopped using this until they update it further.

from cardanocli-js.

miguelaeh avatar miguelaeh commented on June 10, 2024

Hi @dlm001 ,
You can find a working example at examples/mintMA.js. After the upgrade for supporting multi-assets, you need to specify an array.

const tx = {
  txIn: wallet.balance().utxo,
  txOut: [
    {
      address: wallet.paymentAddr,
      value: { ...wallet.balance().value, [BERRYCOIN]: 100 },
    },
  ],
  mint: [
    { action: "mint", quantity: 100, asset: BERRYCOIN, script: mintScript },
  ],
  witnessCount: 2,
};

from cardanocli-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.