Retrieve the transaction store for a given address.
import { getTransactionStore } from "thirdweb/transaction"; const store = getTransactionStore("0x...");store.subscribe((transactions) => { console.log(transactions);});
function getTransactionStore( address: string,): Store<Array<StoredTransaction>>;
The address to retrieve the transaction store for.
let address: string;
let returnType: Store<Array<StoredTransaction>>;
A store of transactions for the given account to subscribe to.