File Name ↓ | File Size ↓ | Date ↓ |
---|---|---|
bitcoin/ | - | 2019-May-29 02:28 |
namecoin/ | - | 2016-Aug-01 02:58 |
namecoin_testnet/ | - | 2019-May-29 02:58 |
testnet3/ | - | 2016-Aug-01 02:48 |
README | 1205 | 2016-May-16 14:30 |
These are PostgreSQL database dumps of the bitcoin-ruby-blockchain database generated by webbtc.com.
See the Database Schema for details on the included data.
You can import them like this:
echo "create database bitcoin" | psql wget http://dumps.webbtc.com/bitcoin/bitcoin_YYYY-MM-DD.sql.gz zcat bitcoin_YYYY-MM-DD.sql.gz | psql bitcoin
If you have a very stable connection, you can do it in one go, without saving the compressed dump locally. But you will have to restart the import if the transfer fails:
curl http://dumps.webbtc.com/bitcoin/bitcoin_YYYY-MM-DD.sql.gz | gunzip | psql bitcoin
Alternatively, the files are also available via rsync:
rsync rsync://dumps.webbtc.com/dumps/
Configure your node to connect to the database with the archive backend:
bitcoin_node -n bitcoin -s archive::postgres:/bitcoin