selectAllTransactionsByActiveWallet()
selectAllTransactionsByActiveWallet<
TR,T>(transactionsPool,from):T[]
Defined in: packages/pulsar-core/src/store/transactionsSelectors.ts:57
Selects all transactions initiated by a specific wallet address.
Type Parameters
TR
TR
The type of the tracker identifier.
T
T extends Transaction<TR>
The transaction type.
Parameters
transactionsPool
TransactionPool<TR, T>
The entire pool of transactions from the store.
from
string
The wallet address (from address) to filter transactions by.
Returns
T[]
An array of transactions associated with the given wallet.
Last updated on