Tonium is a open-source, free and cross platform TON wallet written and developed using C++, Qt framework,TonLib and QtAseman framework and released under the MIT license.
It's a cross platform Wallet designed and developed for Desktop and Smart phones. All primary operating systems like Linux💻, Windows💻, macOS💻, iOS📱 and Android📱 are fully supported by the Tonium.
Note: To check TON contest release, please check tag 1.0.2. Because repository updated after the contest deadline.
- All v4R2, v4R1, v3R2 and v3R1 wallets are supported
- Ton Connect v2 supported
- Fully touch and gesture supported on the Desktop touch screen devices and Smart phones
- QR Scanner
- Biometric Login on the supported platforms (Android biometric will add soon)
- Auto lock, Lock timer
- blured task manager's thumbnails on iOS
- Multi Language (English, Spanish, Japanese, Chinese, Persian, Russian and ...)
- Both RTL and LTR layout directions supported
- Dark mode and Light mode
- Deep link supported (using QR scanner, Command line arguments and ...)
- Dynamic Back-end
- Currently TonLib backends developed. But technicaly Tonium support's different back-end using different libraries.
- Both Wayland and X11 are supported
You can download Tonium for Linux, Windows, macOS, iOS and Android from releases part of the github.
Target | Download | Note |
---|---|---|
Linux | X86_64 | Built using Qt5 static and gcc on Debian buster. (Tested and worked on debian and ubuntu, both wayland and x11). |
Windows | X86_64 | Built using Qt5 and MSVC. |
macOS | Universal | Built using Qt6 static for Intel and M1 processors. |
iOS | arm64 | Built using Qt5. You can install/side-load it using altstore.io |
Android | arm64 | Built using Qt5, NDK platform 23 and SDK 23 |
- Qt framework (library)
Operating System | Compiler | Qt5 | Qt6 | Note |
---|---|---|---|---|
Linux | GCC/Clang | ✔️ | ✔️ | |
Microsoft Windows | GCC/Clang | ✔️ | ✔️ | |
Microsoft Windows | MSVC | ✔️ | ❌ | Qt6 not build because of a bug |
Apple macOS | GCC/Clang | ✔️ | ✔️ | |
Apple iOS | GCC/Clang | ✔️ | ✔️ | |
Android | GCC/Clang | ✔️ | ✔️ | NDK >= 23 are supported, Qt6 is preview |
- TonLib (library)
- QtAseman (embedded)
- OpenSSL (library)
- ZLib (library)
- QZXing (embedded)
- LottieQuick (embedded)
- rlottie (embedded)
- TON desktop wallet (embed some codes)
To build Tonium you must install dependecies that not embedded on the source. like TonLib, OpenSSL and ...
First you needs Qt framework. To install Qt you could download Qt online installer from https://download.qt.io/official_releases/online_installers/ and install it using a Graphical interface. You can also install it using below commands on the Ubuntu:
sudo apt-get install qtbase5-dev qt5-default "qml-module-qt*"
There is no pre-built for all target platform and architectures binaries of the TonLib on the internet.
But I create a repository and upload some of them here.
So you must build and compile it from Documents. On the Ubuntu and many other systems you can install it using below command:
git clone "https://github.com/ton-blockchain/ton.git" --depth 1 --recursive
cd ton
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/usr -DTON_ONLY_TONLIB=1 -DBUILD_SHARED_LIBS=OFF ..
make -j4
sudo make install
There are many tutorial and documents and pre-built binaries of these libraries on the net. But you could install them using below commands on the Ubuntu:
sudo apt-get install libssl-dev libcrypt-dev zlib1g-dev
Tonium building process is easy. on the command line, clone it and build it using below commands:
git clone "https://github.com/realbardia/toncoin-wallet" --recursive --depth 1
cd toncoin-wallet
mkdir build && cd build
qmake -r .. TON_LIB_PATH=/usr TON_SOURCE_PATH=/where/tonlib/source_code/cloned OPENSSL_LIB_PATH=/usr ZLIB_PATH=/usr
make -j4
make install
Where:
TON_LIB_PATH
is root path that TonLib installedTON_SOURCE_PATH
is TonLib source-code pathOPENSSL_LIB_PATH
is root path that OpenSSL installed (No need if installed on the default location)ZLIB_PATH
is root path that ZLib installed (No need if installed on the default location)
And If you want to build Tonium using QtCreator, Just open Tonium using QtCreator, Navigate to the Projects tab on the left side of the QtCreator and on the qmake's additional arguments part, add above extra arguments.
Note: You can also set above arguments as system environment variables instead of qmake arguments.
Just run it