MacOSx
Last updated
Last updated
Note: In this Bitcoin Core GUI (a.k.a. Bitcoin QT) setup, the blockchain data is set to be stored on an external drive named ‘Bitcoin’, in a folder named ‘Bitcoin’. With this non-standard configuration, many command line actions require the use of additional arguments to tell the binaries where to find required files. These arguments may not be required if upon installation you accept the default location for your blockchain data.
Go to and download the Mac .dmg of Bitcoin Core (select ARM if your Mac has an M1 or M2 chip)
Install Bitcoin Core and run it from the Applications menu
Follow the prompts including configuring the data store to use an external drive as desired
Bitcoin core indexing is intensive with disk i.o. If possible, use an SSD for noticeably better results (faster and fewer corrupt file events). In this example, an external SSD was used.
Build the full blockchain index
Preferences > Main: Check to Enable RPC server
Open Configuration File: Enter ‘txindex=1’ (without quotes)
Close to save the config file and click OK
Quit Bitcoin Core and restart it.
Wait as many days as it takes to complete the index. This indexing process can be stopped and restarted as desired.
Note: This process places the bitcoin.conf file in the folder where you told Bitcoin Core to store your blockchain data (i.e. =/Volumes/Bitcoin/Bitcoin). To check the status of the index, open the Console and enter getindexinfo. If the result is "True:, the data is fully sync’d.
The daemon is a version of Bitcoin Core that can runs in terminal mode, giving you additional capabilities.
Install Homebrew
From Terminal, enter ‘Brew’ to confirm ‘command not found’. This indicates Homebrew is not already installed.
Go to and run the install curl command as shown on the site. Note that after installing, Homebrew shows you 2 additional commands to enter into terminal. These are critical as they will put Brew in your path variable.
Install Bitcoin daemon from Terminal (Utilities > Terminal)
Note: Bitcoin binaries are placed in the hidden path /opt/homebrew/opt/bitcoin/bin/ (In Finder, use Command-Shift-Dot to see hidden files and folders).
Edit the Config file entry to share the previously acquired blockchain data. This step is done for the unlikely case you have a reason to run the Bitcoin service instead of the daemon.
Navigate to Go > Home > Library > Application Support
On the Go menu hit Option to see the Library folder
At any time use Command-Shift-Dot to see hidden folders (e.g. Library)
If a Bitcoin folder does not already exist, create it under the Application Support folder
Copy the bitcoin.conf file from the blockchain data created earlier to this new folder
Edit the file so that before the txindex=1 entry, the first line of the file reads: datadir=your/path (i.e. datadir=/Volumes/Bitcoin/Bitcoin)
Test daemon with a simple version check command
When needed, run bitcoin daemon from Terminal. The following command is to manually start bitcoind while telling it where to find your blockchain data
If instead of on-demand, you want to start bitcoin as a service
Stop bitcoin service
Restart the service after an upgrade
Get Blockchain data status where inititialblockdownload=false means the initial download was completed
Help
Important: At this stage you have both the Bitcoin Core GUI and Bitcoin Core daemon installed. These cannot be run simultaneously as they share local blockchain data. The GUI is an easy way to just run the core. The daemon runs the core while also providing command line capabilities that are helpful, especially when troubleshooting. Just close/stop one before opening/starting the other.
Get Block Count (Note that also shows the latest block when you hover the cursor over the center of the clock.)