I want the transaction details eg. trxid when some smart contract action is called from eoslime. I tried:
it("Should add document", async () => {
await contract.upsertdoc.getRawTransaction("doc2", "docfile", "docdescription", "uploadingfile", "170kb", "ppt", ["group1"], 0, "#1ddsfsh0");
await contract.upsertdoc.getRawTransaction("doc3", "docfile", "docdescription", "uploadingfile", "170kb", "ppt", ["group1"], 0, "#1ddsfsh0");
});
I want the transaction details eg.
trxidwhen some smart contract action is called from eoslime. I tried:Using
getRawTransactionit's not working.How to get a transaction id when some action is called and the transaction is done?