Untitled
Anonymous
javascript
04/08/2022 3:14 PM
432 B
15
Indexable
const getAllTransactions = async (web3) => {
if (web3) {
try {
const txList = await contract.methods.getAllTransactions().call() // --> calling struct in smart contract
console.log(txList)
} catch (error) {
console.log("No Transactions");
}
}
}Editor is loading...