Pages:
Author

Topic: List of all Bitcoin addresses ever used - currently UNavailable on temp location (Read 3652 times)

legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
brand new
Activity: 0
Merit: 0
Is this thread still beeing updated?

Thanks.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Hey how much ram do you need to run this with your server?
I recently tested it: the more cores I use for sorting, the more RAM it takes. I tested the difference, and reduced the sorting to only 2 cores. It writes a lot of temp files (on HDD) with 32 GB RAM. I guess I could use 128 or even 256 to speed this up, but I update the large file once a week, so it doesn't matter that it takes a few hours.

Quote
I have a threadripper  doing nothing it has  128gb ram would it be better than the server you are using.

I could donate it to you.
Thanks for the offer, but I'm good for now. This server takes about 12 TB of bandwidth per month.

If you want to find a good use for your server: how about using it to run your own block explorer (mempool.space clone) or Electrum server?
legendary
Activity: 4102
Merit: 7763
'The right to privacy matters'
Hey how much ram do you need to run this with your server?

128gb  or 256gb.

I have a threadripper  doing nothing it has  128gb ram would it be better than the server you are using.


I could donate it to you.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Parse litecoin all addresses usage possible?
I can do it: make me an offer Smiley
newbie
Activity: 4
Merit: 0
Parse litecoin all addresses usage possible?
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
How/why could this be useful for us bitcoin users?
I'm not sure Undecided If you don't know what to do with this, I guess it's not for you. But some people download it, and it's actually consuming quite a bit of bandwidth so there must be something.

You can see how many new addresses were added / used in a particular timeframe.
There's no time stamp information included, so you'll need to get Bitcoin block data (728 GB): inputs, outputs and transactions for the full data.

Quote
Depending on what you need it for there are other ways of getting it but he is doing the back end work for you.
What can I say: I like data Cheesy
legendary
Activity: 3458
Merit: 6231
Crypto Swap Exchange
Hello LoyceV,

How/why could this be useful for us bitcoin users?

I mean yes we got a overview about all used addresses, but for me i am not sure how this could be helpful for us.

Thanks

For some people it's interesting statistical information. You can see how many new addresses were added / used in a particular timeframe.
Depending on what you need it for there are other ways of getting it but he is doing the back end work for you.
For you to use BTC day to day it's not important, but if you are doing blockchain research it's a handy thing to have.

-Dave
member
Activity: 177
Merit: 14
Hello LoyceV,

How/why could this be useful for us bitcoin users?

I mean yes we got a overview about all used addresses, but for me i am not sure how this could be helpful for us.

Thanks
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
I'm far from being an expert with Apache, but maybe this is related?

https://cwiki.apache.org/confluence/display/httpd/DirectoryListings

More specificially, "Directory Listings" and "Some files aren't listed".
None of the files are forbidden, they're just regular files, like the other files.

It's even weirder that the date of the 2 large files is incorrect. That's the date it had before I updated the file, the file as it shows it doesn't even exist anymore. If you download it, you get the correct updated file.


You are creating the folder under blockdata and some way it's linked to alladdresses.
I copied it there to show it works fine on another subdomain:
I think that can't be the problem, because it works for other virtual hosts. I copied the files:
Code:
cp -a test* ../../blockdata.loyce.club/public_html/
They show up on http://blockdata.loyce.club/ as expected.
I've deleted them from "blockdata" again.

Another solution is to build a site for that subdomain. That way you can manipulate all the links without problems.
FML! I feel sooooooooooooooooooooooo stupid now
I used wget to transfer files from the old server to the new server, and as you can see in my terminal screenshot, that created an index.html file. So instead of getting a fresh listing from Apache, it shows the old one. That explains everything, no scorcery involved, just my own stupidity.



Updates work again!
I've moved this data to a (kindly donated) dedicated server. The large files are updated each Tuesday. Enjoy!
legendary
Activity: 2982
Merit: 2681
Top Crypto Casino
Ok, looks like i found something mate:

Code:
http://blockdata.loyce.club/
It show the test2 folder with the same modification time.



I have no idea why, but i know this is a nice hint for the solution Wink

You are creating the folder under blockdata and some way it's linked to alladdresses.

-----------------------


Another solution is to build a site for that subdomain. That way you can manipulate all the links without problems.
legendary
Activity: 2758
Merit: 6830
I'm far from being an expert with Apache, but maybe this is related?

https://cwiki.apache.org/confluence/display/httpd/DirectoryListings

More specificially, "Directory Listings" and "Some files aren't listed".
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Code:
chmod 0755 test2
That only reduced permissions (and didn't work).
legendary
Activity: 2982
Merit: 2681
Top Crypto Casino
Ok, lets try with this one. It worked in my local server:

Code:
chmod 0755 test2

I hope this one do the magic.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
And now we are 2 going crazy, lol.
Lol.

Quote
Did you try restarting the apache service?
I did:
Code:
systemctl status apache2

Quote
Code:
sudo service apache2 restart
I tried this one too, just in case. No improvement.
legendary
Activity: 2982
Merit: 2681
Top Crypto Casino
...
That's how it should be indeed, hence the "I'm going crazy" It looks as if http://alladdresses.loyce.club/ still runs on my old server, but that can't be (otherwise hi.txt wouldn't be visible).

And now we are 2 going crazy, lol. As you mention, this is working in the new server, but the fact that isn't indexing the new folder doesn't have sense.

Did you try restarting the apache service?

Code:
sudo service apache2 restart
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Could you add a text file to that folder, lets see i that way it get listed.
See http://alladdresses.loyce.club/test2/hi.txt
The file is visible on http://alladdresses.loyce.club/test2/
But the directory is not visible on http://alladdresses.loyce.club/

Quote
Since you are working on a virtual host, the way to fix this is with the configuration:

Quote
/etc/apache2/apache2.conf
I think that can't be the problem, because it works for other virtual hosts. I copied the files:
Code:
cp -a test* ../../blockdata.loyce.club/public_html/
They show up on http://blockdata.loyce.club/ as expected.

Quote
I just make a test with my local server:
That's how it should be indeed, hence the "I'm going crazy" It looks as if http://alladdresses.loyce.club/ still runs on my old server, but that can't be (otherwise hi.txt wouldn't be visible).
legendary
Activity: 2982
Merit: 2681
Top Crypto Casino
Ok, then lets make some tests.

Could you add a text file to that folder, lets see i that way it get listed.

And another reason for a folder to not show up is the permissions, but your permissions are fine as we can see in the image, so, we can discard this one.

Quote
The default Ubuntu document root is /var/www/html. You can make your own virtual hosts under /var/www.

Since you are working on a virtual host, the way to fix this is with the configuration:

Quote
/etc/apache2/apache2.conf

I just make a test with my local server:

Code:
root@root:/var/www/html# ls
index.html  info.php
root@root:/var/www/html# cat index.html > index2.html
root@root:/var/www/html# rm index.html
root@root:/var/www/html# mkdir test2


And it show the empty folder, so, the problem should be your apache2 config.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
Your server must have and index.html file, but your server doesn't have it under the alladdresses subdomain, that's why it opens like a folder.
That's intentional: I want to see the files (but some files aren't showing correctly).

Quote
If we open the new folder test2 it shows an empty folder, maybe your htaccess file is configured to hide empty folders
There is no .htaccess in use.

I use the same settings for different subdomains, but they don't have this problem.
legendary
Activity: 2982
Merit: 2681
Top Crypto Casino
I need help, I may be going crazy!

I'm moving this project to a different server (a kindly donated dedicated Xeon server). I've transfered the data, updated the DNS, and updated Apache2's configuration for http://alladdresses.loyce.club/

This is what it shows:
Image loading...
However, as you can see in the console, I've updated the 2 large files: they now have a newer date. I've also added a "test" file and a "test2" directory. Both don't show up noline, but I can navigate into that directory so it exists.
It looks as if I'm viewing a cached version, except for that I'm using a private browser window. I tried Tor too, all with the same result.

What sorcery is this?

Your server must have and index.html file, but your server doesn't have it under the alladdresses subdomain, that's why it opens like a folder.

If we take a look to http://alladdresses.loyce.club/indextest.html the site looks fine. So, just rename that file to index.html and it should work fine.

---------------------

Trying to understand the problem.

If we open the new folder test2 it shows an empty folder, maybe your htaccess file is configured to hide empty folders, not sure. but the folder is there.

Pages:
Jump to: