i need one more answer please, how d i find my btc adress that i know the amount inside and i know nearly the dates that i made the transactions, is there a filter to show in blocks, example created 2010 to 2012 wallets including 10btcs.
Anyone d share a link please ill be appreciated
One direction, as already said, would be the list of addresses with balance shared by LoyceV:
https://bitcointalk.org/index.php?topic=5254914.0 or
http://addresses.loyce.club/Another direction would be the blockchain-as-database thingy, I don't know how good it is, you can find it at
https://www.dolthub.com/repositories/web3/bitcoinThere you can make queries like (output_value is also in satoshis)
SELECT *
FROM `transactions`
where output_value > 999999999 and output_value < 1010000000
and is_coinbase = 0
LIMIT 100;
and then look up the transactions, maybe on a block explorer. I am "newbie" with that platform too, I only had it bookmarked some time ago. Keep in mind that you may need some SQL knowledge and also the queries must be very quick. You can play with the block numbers to approximate the time range for your desired tx.