CoolFace
Datasetpublic

Phicoin/Phicoin_full_node_data

PHICOIN Full Node Data Pre-synced blockchain data for PHICOIN Core. Download and extract instead of syncing from the network, which takes many hours. Snapshot height: 2537439 Snapshot date: 2026-09-20 Best block hash: 0000000525f5a6093149d7dea299e06171300ac1722936e6209e50ad239bff7f Built from a stopped node, so the databases are consistent. Which file do I need There are two packages. They are not interchangeable. Pick based on whether you run a plain wallet or a… See the full description on the dataset page: https://huggingface.co/datasets/Phicoin/Phicoin_full_node_data.

sourceHugging Faceapache-2.0updated 1d agoView on Hugging Face
0likes117downloads
Dataset Card

PHICOIN Full Node Data

Pre-synced blockchain data for PHICOIN Core. Download and extract instead of syncing from the network, which takes many hours.

Snapshot height: 2537439 Snapshot date: 2026-09-20 Best block hash: 0000000525f5a6093149d7dea299e06171300ac1722936e6209e50ad239bff7f Built from a stopped node, so the databases are consistent.

Which file do I need

There are two packages. They are not interchangeable. Pick based on whether you run a plain wallet or a service that queries the chain by address or txid.

PHICOINnoindex20260920.7z (1.1 GB download, 2.1 GB on disk)

For normal wallet users. This matches the default settings of PHICOIN Core, so you do not need to add anything to phicoin.conf. Choose this one if you are unsure.

SHA256: 0da78e44ea3baa1b4a9da9c826a5bf06416df732040270bcf0026c5306da2a2b

PHICOINfullindex20260920.7z (1.8 GB download, 3.5 GB on disk)

For mining pools, block explorers, exchanges, and anything that calls getrawtransaction, address balance lookups, or timestamp queries. Requires the index options below in your config.

SHA256: 8f9aefe51de094fbbad4c5e6afb84dabea7d43d9d06dbcd02a01ab0c854938a6

Data directory location

  • Windows: %APPDATA%\PHICOIN
  • macOS: ~/Library/Application Support/PHICOIN
  • Linux: ~/.phicoin

Install

  1. 1.Close your wallet completely. Confirm phicoind and phicoin-qt are not running, otherwise the files will be locked or overwritten on exit.
  1. 1.Back up wallet.dat from your data directory. It is not part of these packages and will not be touched, but back it up anyway.
  1. 1.Delete the old chain data from your data directory:
   blocks/
   chainstate/
   assets/
   messages/
   myrestricted/
   rewards/

Leave wallet.dat and phicoin.conf in place.

  1. 1.Extract the package into the data directory. When finished you should see blocks/ and chainstate/ directly inside the data directory, not nested inside another folder.
  1. 1.If you downloaded the full index package, add these lines to phicoin.conf:
   txindex=1
   addressindex=1
   assetindex=1
   timestampindex=1
   spentindex=1

For the no index package, add nothing.

  1. 1.Start the wallet. The first start takes a few minutes while blocks are verified. Then it syncs the remaining blocks from the network.

Verify the download

sha256sum PHICOIN_noindex_20260920.7z

Compare against the hash listed above. A mismatch means the download is incomplete, so download again rather than extracting it.

Troubleshooting

"You need to rebuild the database using -reindex"

Your config does not match the package. The index settings are stored inside the database, so they must agree with phicoin.conf. Either switch to the package that matches your config, or change the config to match the package as described in step 5. Running -reindex works but rescans the whole chain and takes hours, which defeats the purpose of a snapshot.

Wallet still shows old balance or missing transactions

Start once with -rescan so the wallet re-reads the chain.

"Corrupted block database"

The download or extraction was incomplete. Verify the SHA256, then extract again.

What is included

Only the data needed to run a node:

  • blocks/ block files and block index
  • chainstate/ UTXO set
  • assets/ asset database
  • messages/, myrestricted/, rewards/ asset subsystem databases

No wallet.dat, no phicoin.conf, no peers.dat, no log files. Your wallet and settings stay yours.