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.
0103
1---2license: apache-2.03pretty_name: PHICOIN Full Node Data4tags:5 - blockchain6 - phicoin7 - bootstrap8---9 10# PHICOIN Full Node Data11 12Pre-synced blockchain data for PHICOIN Core. Download and extract instead of13syncing from the network, which takes many hours.14 15Snapshot height: **2537439**16Snapshot date: **2026-09-20**17Best block hash: `0000000525f5a6093149d7dea299e06171300ac1722936e6209e50ad239bff7f`18Built from a stopped node, so the databases are consistent.19 20## Which file do I need21 22There are two packages. They are not interchangeable. Pick based on whether you23run a plain wallet or a service that queries the chain by address or txid.24 25### PHICOIN_noindex_20260920.7z (1.1 GB download, 2.1 GB on disk)26 27For normal wallet users. This matches the default settings of PHICOIN Core, so28you do not need to add anything to `phicoin.conf`. Choose this one if you are29unsure.30 31SHA256: `0da78e44ea3baa1b4a9da9c826a5bf06416df732040270bcf0026c5306da2a2b`32 33### PHICOIN_fullindex_20260920.7z (1.8 GB download, 3.5 GB on disk)34 35For mining pools, block explorers, exchanges, and anything that calls36`getrawtransaction`, address balance lookups, or timestamp queries. Requires the37index options below in your config.38 39SHA256: `8f9aefe51de094fbbad4c5e6afb84dabea7d43d9d06dbcd02a01ab0c854938a6`40 41## Data directory location42 43- Windows: `%APPDATA%\PHICOIN`44- macOS: `~/Library/Application Support/PHICOIN`45- Linux: `~/.phicoin`46 47## Install48 491. Close your wallet completely. Confirm `phicoind` and `phicoin-qt` are not50 running, otherwise the files will be locked or overwritten on exit.51 522. Back up `wallet.dat` from your data directory. It is not part of these53 packages and will not be touched, but back it up anyway.54 553. Delete the old chain data from your data directory:56 57 ```58 blocks/59 chainstate/60 assets/61 messages/62 myrestricted/63 rewards/64 ```65 66 Leave `wallet.dat` and `phicoin.conf` in place.67 684. Extract the package into the data directory. When finished you should see69 `blocks/` and `chainstate/` directly inside the data directory, not nested70 inside another folder.71 725. If you downloaded the full index package, add these lines to73 `phicoin.conf`:74 75 ```76 txindex=177 addressindex=178 assetindex=179 timestampindex=180 spentindex=181 ```82 83 For the no index package, add nothing.84 856. Start the wallet. The first start takes a few minutes while blocks are86 verified. Then it syncs the remaining blocks from the network.87 88## Verify the download89 90```91sha256sum PHICOIN_noindex_20260920.7z92```93 94Compare against the hash listed above. A mismatch means the download is95incomplete, so download again rather than extracting it.96 97## Troubleshooting98 99**"You need to rebuild the database using -reindex"**100 101Your config does not match the package. The index settings are stored inside the102database, so they must agree with `phicoin.conf`. Either switch to the package103that matches your config, or change the config to match the package as described104in step 5. Running `-reindex` works but rescans the whole chain and takes hours,105which defeats the purpose of a snapshot.106 107**Wallet still shows old balance or missing transactions**108 109Start once with `-rescan` so the wallet re-reads the chain.110 111**"Corrupted block database"**112 113The download or extraction was incomplete. Verify the SHA256, then extract114again.115 116## What is included117 118Only the data needed to run a node:119 120- `blocks/` block files and block index121- `chainstate/` UTXO set122- `assets/` asset database123- `messages/`, `myrestricted/`, `rewards/` asset subsystem databases124 125No `wallet.dat`, no `phicoin.conf`, no `peers.dat`, no log files. Your wallet126and settings stay yours.127 