Skip to content

Euno/eunowallet-legacy

Repository files navigation

The old legacy wallet and blockchain will not be supported after the SWAP end date - 12.Nov.2020

EUNO - A privacy based cryptocurrency



Website: https://www.euno.co
WhitePaper https://www.euno.co/eunowhitepaper/
LightPaper https://www.euno.co/euno-lite-paper/
Governance https://www.euno.co/governance-decentralization-and-structure/
Telegram: https://t.me/EUNOofficial
Discord: https://discord.gg/VNC6V2Z
Twitter: https://twitter.com/EunoCoin
Reddit: https://www.reddit.com/r/EunoCoinOfficial
BitCoinTalk: https://bitcointalk.org/index.php?topic=4563505.0
CoinMarketCap: https://coinmarketcap.com/currencies/euno/
MasterNodesPro: https://masternodes.pro/stats/euno/statistics

Technical details

System Protocol: Hybrid - Proof-of-Work and Proof-of-Stake
Hash Algorithm: X11
Currency symbols: EUNO
Market Cap: 50 millions
Block Time: 120 seconds
Masternode Collateral: 50.000 EUNO
Masternode Rewards: 60% from PoS
RPC Port: 21333
P2P Port: 31333



Windows, MacOS and Linux QT wallets are available at:

https://github.com/Euno/eunowallet/releases

To compile Raspberry PI wallet use:

https://github.com/Euno/install-wallet



Build Linux CLI wallet

Build preparation:

sudo apt-get -y update
sudo apt-get install git
sudo apt-get install dnsutils unzip
sudo apt-get install build-essential libssl-dev libboost-all-dev git libdb5.3++-dev libminiupnpc-dev screen autoconf

Compile the EUNO cli wallet:

cd ~
git clone https://github.com/euno/eunowallet.git

-->> WALLET
cd ~/eunowallet/src
make -f makefile.unix

After successfully compilation binary can be found ~/eunowallet/src/eunod

Build Linux GUI wallet

Build preparation:

sudo apt-get -y update
sudo apt-get install git
sudo apt-get install dnsutils unzip
sudo apt-get install build-essential libssl-dev libboost-all-dev git libdb5.3++-dev libminiupnpc-dev screen autoconf    
sudo apt-get install qt5-default qttools5-dev-tools 

Compile the EUNO-QT GUI wallet:

cd ~
git clone https://github.com/euno/eunowallet.git

-->> WALLET
cd ~/eunowallet/
qmake -o Makefile euno.pro
make

After successfully compilation binary can be found ~/eunowallet/euno-qt