Raw transaction using node js

+1 vote
Hi I'm using multichain-node to build a web interface, Im trying to create a raw transaction, this is my code:

multichain.createRawTransaction({from: "an address", to: "anotheraddress". "kchinTest", qty: amount}, (err, rawTransaction)=>{
        if(err){
          throw err;
        }
        console.log(rawTransaction);
      })
asked Aug 26, 2017 by Luis Acerv

Please log in or register to answer this question.

...