Download Manhattan Gold Coin

Get started with the official MGC wallet for your platform

Windows
64-bit installer
  Download
Apple Intel
macOS (Intel processors)
  Download
Apple M1
macOS (Apple Silicon)
  Download
Ubuntu
Ubuntu / Debian Linux
  Download

Setup Guide (Ubuntu/Debian)

Follow these steps to build and install Manhattan Gold Coin from source on Ubuntu or Debian Linux.

1 Extract and enter directory
tar -xzf mgccoin.tar.gz cd mgccoin/
2 Install base build dependencies
sudo apt-get update sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3
3 Install SSL, event, and Boost libraries
sudo apt-get install libssl-dev libevent-dev libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev
4 Install UPnP and ZMQ libraries
sudo apt-get install libminiupnpc-dev libzmq3-dev
5 Install Qt and protobuf dependencies
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev
6 Set executable permissions
chmod +x autogen.sh share/genbuild.sh contrib/install_db4.sh
7 Install Berkeley DB 4.8
./contrib/install_db4.sh `pwd`
8 Set BDB prefix and run autogen
export BDB_PREFIX="$(pwd)/db4" ./autogen.sh
9 Configure with BDB paths
./configure BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" BDB_CFLAGS="-I${BDB_PREFIX}/include" --disable-tests
10 Compile
make -j$(nproc)
11 Install system-wide
sudo make install
12 Launch
manhattangoldcoind # Run the daemon (headless) manhattangoldcoin-qt # Run the GUI wallet

Note: If you encounter issues with line endings (e.g., \r errors), install and run dos2unix on the affected scripts before building:

sudo apt-get install dos2unix
dos2unix autogen.sh share/genbuild.sh contrib/install_db4.sh