Windows

64-bit Installer

Download for Windows

Apple Intel

macOS (x86_64)

Download for Mac Intel

Apple M1

macOS (ARM / Apple Silicon)

Download for Mac M1

Ubuntu / Linux

Linux 64-bit Binary

Download for Linux

Mobile Wallets

Native iOS wallet apps for iPhone & iPad — send, receive, and manage your coins on the go

Manhattan Gold Coin

ManhattanGoldCoin

MGC

iPhone, iPad & Android
Self-custody gold-backed wallet

Send & Receive QR Scanner 12 Fiat Rates PIN & Face ID Live Price
TriviaCoin

TriviaCoin

TVC

iPhone, iPad & Android
Silver-standard companion wallet

Send & Receive QR Scanner 12 Fiat Rates PIN & Face ID Live Price

How to install on your iPhone

Follow these steps to sideload the wallet app — no App Store required

1
Install AltStore on your PC or Mac AltStore is a free tool that lets you install .ipa files directly to your iPhone. Download it at altstore.io
2
Connect your iPhone via USB Plug in your iPhone, open iTunes (Windows) or Finder (Mac), and trust the computer on your device when prompted.
3
Download the .ipa file above Click “Download Here” on the wallet you want. Save the .ipa file to your computer.
4
Sideload with AltStore Open AltStore on your computer, click My Apps → +, and select the downloaded .ipa file. The app installs to your iPhone.
5
Trust the developer on your iPhone Go to Settings → General → VPN & Device Management, find the app certificate, and tap Trust.
Video Tutorial — How to Sideload iOS Apps with AltStore

Replace the video above with your own tutorial once uploaded — or link any helpful sideloading guide.

Linux Build from Source

Follow these steps to build Manhattan Gold Coin from source on Ubuntu / Debian

1
Become root and extract the source
sudo su ls unzip mgtcoin.zip cd mgtcoin/
2
Make build scripts executable
chmod +x ./autogen.sh chmod +x share/genbuild.sh
3
Install build dependencies
sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3 -y sudo apt-get install libssl-dev libevent-dev libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev -y sudo apt-get install libminiupnpc-dev -y sudo apt-get install libzmq3-dev -y sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler -y sudo apt-get install libqrencode-dev -y
4
Run autogen and initial configure
./autogen.sh ./configure --disable-tests
5
Install BerkeleyDB 4.8
chmod +x contrib/install_db4.sh ./contrib/install_db4.sh `pwd`
6
Configure with BerkeleyDB flags
./configure --disable-tests export BDB_PREFIX='/home/user/mgtcoin/db4' ./configure BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" BDB_CFLAGS="-I${BDB_PREFIX}/include" --disable-tests
7
Compile and install
make make install