selectAllTransactionsByActiveWallet()
selectAllTransactionsByActiveWallet<
T>(transactionsPool,from):T[]
Defined in: store/transactionsSelectors.ts:53
Returns the transactions sent by a wallet, oldest first. Addresses are compared case-insensitively.
Type Parameters
T
T extends Transaction
The application transaction type.
Parameters
transactionsPool
The transaction pool of the store.
from
string
The wallet address to match against the from field.
Returns
T[]
A new array of the wallet’s transactions, sorted chronologically.
Last updated on