How to call this method with truffle console, I'm stumped

Viewed 8

This is the method that works fine through the web app..

myContract.methods.requestForgiveness(requestText).send({ from: address, value: weiValue, gas:1000000 }).
            on('transactionHash', function(hash){
                console.log(hash);
            });

How should I call this with truffle console? Can anyone help?

0 Answers
Related