getTransactionStore

Retrieve the transaction store for a given address.

Example

import { getTransactionStore } from "thirdweb/transaction";
const store = getTransactionStore("0x...");
store.subscribe((transactions) => {
console.log(transactions);
});

Parameters

Returns

A store of transactions for the given account to subscribe to.