Skip to content

Decentralized Desktop Banking App - XF₲ wallet, Untraceable p2p msgs, Certificates of Deposit

License

Notifications You must be signed in to change notification settings

usexfg/fuego-wallet

 
 

Repository files navigation

🔥 Fuego Wallet

Privacy Desktop Banking App

Certificate Of Ledger Deposits and Untraceable Messaging

Latest Release: v4.2.0.1 (Godflame Point)

Maintained by Fuego Elder Council

macOS

Ubuntu 20.04

Ubuntu 22.04

Windows


Fuego Wallet is a decentralized blockchain banking interface with private messenger powered by 100% open source code - without involvement of corporations or financial institutions. Enabling an untraceable way to transfer funds and messages by using a distributed public ledger which keeps sender & receiver addresses hidden and transaction amounts anonymous to the public. All Fuego transactions and messages are private by default.

This GUI wallet is an extension of the Fuego ($XFG) secure peer-to-peer payment network and blockchain settlement layer based on the CryptoNote protocol. Fuego network operates with no central authority, enabling you the full freedom (and responsibility) of control over the private keys to your funds. Please write all your wallet seed phrases down and store them somewhere safe.

Resources

Compiling Fuego Desktop from source

Linux / Ubuntu

Prerequisites

Dependencies: GCC 4.7.3 or later, CMake 2.8.6 or later, Boost 1.55 or later, and Qt 5.9 or later. You may download them from:

On Ubuntu it is possible to install them using apt:

sudo apt install git gcc make cmake libboost-all-dev qt5-default

Building

To acquire the source via git and build the release version, run the following commands:

git clone https://github.com/usexfg/fuego-desktop
cd fuego-desktop
rm -rf cryptonote
git clone https://github.com/usexfg/fuego cryptonote
make 

If the build is successful the binary will be in the build/release folder.

Windows 10

Prerequisites

  • Install Visual Studio 2017 Community Edition
  • When installing Visual Studio, you need to install Desktop development with C++ and the VC++ v140 toolchain components. The option to install the v140 toolchain can be found by expanding the "Desktop development with C++" node on the right. You will need this for the project to build correctly.
  • Install CMake
  • Install Boost 1.67.0, ensuring you download the installer for MSVC 14.1.
  • Install Qt 5.11.0

Building

  • From the start menu, open 'x64 Native Tools Command Prompt for vs2017' or run "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" from any command prompt.
  • Edit the CMakeLists.txt file and set the path to QT cmake folder. For example: set(CMAKE_PREFIX_PATH "C:\Qt\5.11.0\msvc2017_64\lib\cmake\").
  • git clone https://github.com/usexfg/fuego
  • git clone https://github.com/usexfg/fuego-wallet
  • Copy the contents of fuego folder into fuego-wallet\cryptonote
  • cd fuego-wallet
  • mkdir build
  • cd build
  • cmake -G "Visual Studio 15 2017 Win64" -DBOOST_LIBRARYDIR:PATH=c:/local/boost_1_67_0 .. (Or your boost installed dir.)
  • msbuild FUEGO-GUI.sln /p:Configuration=Release

If the build is successful the binaries will be in the Release folder.

macOS

Prerequisites

First, we need to install the same dependencies as fuego.

Once fuego dependencies are installed, we need to install Qt5, open a Terminal and run the following commands:

brew install qt5
export PATH="/usr/local/opt/qt/bin:$PATH"

Building

When all dependencies are installed, build Fuego-Wallet-Desktop with the following commands:

git clone https://github.com/usexfg/fuego-wallet
cd fuego-desktop
rm -rf cryptonote
git clone https://github.com/usexfg/fuego cryptonote
make build-release

If the build is successful the binary will be build/release/FUEGO-GUI.app

It is also possible to deploy the application as a .dmg by using these commands after the build:

cd build/release
macdeployqt FUEGO-GUI.app
cpack

Special Thanks

Special thanks to developers from Cryptonote, Bytecoin, Conceal, Karbo, Monero, Forknote, XDN, TurtleCoin, Ryo, and Masari.

Packages

No packages published

Languages

  • C++ 39.1%
  • C 36.1%
  • POV-Ray SDL 8.4%
  • M4 5.6%
  • QMake 5.3%
  • Shell 2.1%
  • Other 3.4%