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
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
https://github.com/Euno/eunowallet/releases
https://github.com/Euno/install-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
-->> Level DB
cd ~/eunowallet/src/leveldb
chmod +x build_detect_platform
make libleveldb.a libmemenv.a
-->> SECP 256
cd ~/eunowallet/src/secp256k1
chmod +x autogen.sh
./autogen.sh
./configure
make
-->> WALLET
cd ~/eunowallet/src
make -f makefile.unix
After successfully compilation binary can be found ~/eunowallet/src/eunod
Build preparation:
sudo apt-get install qt5-default qttools5-dev-tools
Compile the EUNO-QT GUI wallet:
cd ~
git clone https://github.com/euno/eunowallet.git
-->> Level DB
cd ~/eunowallet/src/leveldb
chmod +x build_detect_platform
make libleveldb.a libmemenv.a
-->> SECP 256
cd ~/eunowallet/src/secp256k1
chmod +x autogen.sh
./autogen.sh
./configure --prefix=/usr
make
sudo make install
-->> WALLET
cd ~/eunowallet/
qmake -o Makefile euno.pro
make
After successfully compilation binary can be found ~/eunowallet/euno-qt