Quote from: Seccour on July 22, 2015, 06:02:40 pm Have you planned to show the NXT Core Dividends transaction in the wallet ? So we don't have to use some plug-in ?

ScripterRon is working on completing the Account Ledger feature for 1.6, so yes, core dividends and other changes to account balances that are not directly related to the account being the sender or recipient of a transaction, will be visible.



You can check out the GetAccountLedger and GetAccountLedgerEntry API functions on scripterron.dyndns.biz:7876/test. The javadoc explains the various parameters.Here is a screenshot of the Account Ledger display in NxtMonitor:The GetAccountLedger API allows you to select entries based on account identifier, event type, event identifier, holding type and holding identifier. The event type is what created the ledger entry (sent a payment, received a dividend, sold a currency, etc). The event identifier is the block or transaction associated with the event. The holding type is what changed (account balance, asset balance or currency balance). The holding identifier is the associated asset or currency (not used for account balance changes)My node is set up to record ledger events for the previous 30,000 blocks. It tracks just unconfirmed changes (you can also track just confirmed changes or both unconfirmed and confirmed changes). You could also track just changes to specific accounts (my node tracks changes to all accounts). These parameters are all specified in nxt.properties, so you can tailor your node to meet your own requirements.I don't know how the account ledger will be accessed in the NRS UI. One thought is that GetAccountLedger with an account identifier specified could be used to display the recent account activity.