Is there a java library which could extract the first seen date and the last seen date of an address over a bitcoin network?

1

Apparently the bitcoinj does not provide such feature.

Aqqqq

Posted 2017-03-31T08:35:31.797

Reputation: 277

Not sure what bitcoinj offers, but can't you get all transactions that involve an address? If you got such a list, you could just look at the dates of the first and the last transaction in the list to get the information you want. Is that what you mean by "seen date"?Murch 2017-04-10T12:27:27.777

I don't think you can. https://bitcoinj.github.io/javadoc/0.14.4/ The Address class does not have a method for getting all transactoins.

Aqqqq 2017-04-10T13:26:55.400

No answers