Tx History
Recent Transaction History
Usage
const history = await mnee.recentTxHistory('your-address-here');
console.log('History:', history);With Pagination
// Get first page (most recent transactions)
const firstPage = await mnee.recentTxHistory(address, undefined, 10);
// Get next page using nextScore
const secondPage = await mnee.recentTxHistory(
address,
firstPage.nextScore,
10
);Parameters
Response
Sample Response
Recent Transaction Histories (Multiple)
Usage
Parameters
Response
Transaction History Properties
TxHistory Object
Counterparty Object
Common Use Cases
Display Transaction List
Calculate Total Received
Monitor for New Transactions
Multi-Address Portfolio History
Export Transaction History
Find Transactions with Specific Address
Pagination Best Practices
Performance Tips
See Also
Last updated