I want to get the list of past programmable transactions from an address. I want to know the details of the transaction like which function was called, and the gas cost, etc. What would be the syntax for achieving this using TS SDK?
2 Likes
You can use queryTransactionBlocks() method from TS sdk with any filter you require. For example, suiClient.queryTransactionBlocks({filter: {FromAddress: “your-address”}})
1 Like