I don't have access to the blockchain explorer. All I have is an active daemon connected to the internet. Is there anyway I can view the transaction IDs associated with the most recent transactions associated with a particular Bitcoin address? I know I could do this through blockchain.info but how can I do it through the console?
Example:
>i have a donation address
>i dont have access to a wallet
>all i have is a bitcoin daemon
>how can i view the transactions received by that wallet address?
thanks
Are we assuming that the bitcoin daemon is online and caught up with synchronizing the blockchain?
Are we assuming that you are only looking for information about confirmed transactions?
Is the address that you are wanting to know about an address in your bitcoin daemon?
If the answers to all the above questions are "Yes", then you should be able to use listunspent to see all the unspent outputs that have been received at that bitcoind. Each unspent output should have an address. If you filter the output for the address you are interested in, you'll see all the incoming transactions that are associated with that address.
thanks