I find this concept to be very confusing, when should I be using watch, call or get to listen to an event? how are they different and when should they be used?
var event1 = newInst.getSupplier({'OwnAdd': someaddr},{fromBlock:'latest, toBlock:'pending'}, function(error, result) {
console.log("listening bro1");
if (!error)
console.log(result.args);
});
How will the output differ when I change the call or watch or get?