Also, you can combine getTransactions and getTransaction to fetch all the required information (even paymentID) to process a payment for specific address at specific block, ergo, you can avoid of processing duplicated records.
Regard
We are integrating Ultranote in our project. It's a "Multi-Coin Wallet". We are using the paymentgate.md and 'PaymentGate' directory in 'src' from the official github account as reference. We are using walletd.
The issue is about retrieving transactions. We were expecting an equivalent of "listtransactions" method from bitcoin's API. But at best we got 'getTransactions' which need in turn needs three parameters [address, firstblockindex, blockcount]. While using this method we get a long list of blocks and then our transactions somewhere within some of those blocks.
Now our query is, "How do we find which are sent and which are received transactions. As these is no particular field mentioning sent or received type.
Any kind of help and guidance is really appreciated. Regards