All Projects → qwertycoin-org → qwertycoin

qwertycoin-org / qwertycoin

Licence: MIT License
Qwertycoin is a decentralized peer-to-peer protocol for safe payments worldwide.

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects
Raku
181 projects
assembly
5116 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to qwertycoin

open-coinomi-android
The final open source (GPL 3.0) release of Coinomi's cryptocurrency wallet for Android
Stars: ✭ 33 (-10.81%)
Mutual labels:  altcoin
xmrigCC
RandomX, CryptoNight, AstroBWT, Argon2 and GhostRider CPU/GPU miner with Command&Control (CC) Server and Monitoring
Stars: ✭ 262 (+608.11%)
Mutual labels:  cryptonight
cdc
Repository gathering basic modules for CDC purpose
Stars: ✭ 30 (-18.92%)
Mutual labels:  asic
vivo
Official VIVO Repository
Stars: ✭ 25 (-32.43%)
Mutual labels:  altcoin
foxfolio-desktop
Cryptocurrency portfolio management application which automatically retrieves balances and trades using exchange APIs
Stars: ✭ 63 (+70.27%)
Mutual labels:  altcoin
node-cryptonight
node bindings for cryptonight hashing
Stars: ✭ 15 (-59.46%)
Mutual labels:  cryptonight
tradeview
A platform for trading crypto currency pairs on crypto exchanges and running crypto currency pair strategies.
Stars: ✭ 69 (+86.49%)
Mutual labels:  altcoin
DFiant
DFiant: A Dataflow Hardware Descripition Language
Stars: ✭ 21 (-43.24%)
Mutual labels:  asic
ccapi
A header-only C++ library for interacting with crypto exchanges. Binding for Python is provided. A spot market making application is also provided as an end-to-end solution for liquidity providers.
Stars: ✭ 227 (+513.51%)
Mutual labels:  altcoin
ara
The PULP Ara is a 64-bit Vector Unit, compatible with the RISC-V Vector Extension Version 0.10, working as a coprocessor to CORE-V's CVA6 core
Stars: ✭ 116 (+213.51%)
Mutual labels:  asic
pygears
HW Design: A Functional Approach
Stars: ✭ 122 (+229.73%)
Mutual labels:  asic
charnapool
High performance Node.js (with native C addons) mining pool for Cryptonote based coins, optimized for Charnacoin.
Stars: ✭ 25 (-32.43%)
Mutual labels:  cryptonight
OpenLane
OpenLane is an automated RTL to GDSII flow based on several components including OpenROAD, Yosys, Magic, Netgen, Fault and custom methodology scripts for design exploration and optimization.
Stars: ✭ 548 (+1381.08%)
Mutual labels:  asic
DACP
A digital asset personal portfolio for investors in the cryptosphere
Stars: ✭ 22 (-40.54%)
Mutual labels:  altcoin
PeakRDL-uvm
Generate UVM register model from compiled SystemRDL input
Stars: ✭ 25 (-32.43%)
Mutual labels:  asic
trader
a ping pong and maker/taker order bot for trading cryptocurrency on Waves Exchange, Poloniex, Bittrex, and Binance
Stars: ✭ 23 (-37.84%)
Mutual labels:  altcoin
gemmini
Berkeley's Spatial Array Generator
Stars: ✭ 290 (+683.78%)
Mutual labels:  asic
VGChips
Video Game custom chips reverse-engineered from silicon
Stars: ✭ 86 (+132.43%)
Mutual labels:  asic
FPGA CryptoNight V7
FPGA CryptoNight V7 Minner
Stars: ✭ 21 (-43.24%)
Mutual labels:  asic
marscoin
Marscoin source tree
Stars: ✭ 37 (+0%)
Mutual labels:  altcoin

image

Master Build Status

Build Status

Development Build Status

Build Status

Table of contents

  1. Project Specs
  2. How to Compile Qwertycoin
    1. Qwertycoin for Linux
    2. Qwertycoin for Windows
    3. Qwertycoin for macOS
    4. Qwertycoin for Android
    5. Qwertycoin for FreeBSD
  3. Downloads
  4. Useful Links
  5. Donate & Thanks
  6. Copyright / License

Installing

We offer binary images of the latest releases here: https://releases.qwertycoin.org

If you would like to compile yourself, read on.

Downloads

Operating System Download
Windows 32 https://releases.qwertycoin.org/get/cli/latest/win32
Windows 64 https://releases.qwertycoin.org/get/cli/latest/win64
macOS 10.8 & Later https://releases.qwertycoin.org/get/cli/latest/macos
Linux DEB https://releases.qwertycoin.org/get/cli/latest/linux/deb
Linux RPM https://releases.qwertycoin.org/get/cli/latest/linux/rpm
Android https://releases.qwertycoin.org/get/cli/latest/arm64
Other platforms https://releases.qwertycoin.org

Coin Specs

Ticker SymbolQWC
AlgorithmCryptonight
TypeProof of Work (PoW)
Block Time120 Seconds
Premine0.0 %
Decimals8 Digits
Block RewardDecrease by each block
Max Coin Supply 184,467,440,737 QWC
P2P | RPC Port8196 | 8197

More information at qwertycoin.org

How To Compile

Linux

Prerequisites
  • You will need the following packages: build-essential, cmake (3.14 or higher) and git;
  • Most of these should already be installed on your system. For example on Ubuntu by running:
sudo apt-get install build-essential cmake git
Building
  • After installing dependencies run simple script:
git clone --recurse-submodules https://github.com/qwertycoin-org/qwertycoin
cd ./qwertycoin
mkdir ./build
cd ./build
cmake -DBUILD_ALL:BOOL=TRUE ..
cmake --build . --config Release
  • If all went well, it will complete successfully, and you will find all your binaries in the ./build/src directory.

Windows 10

Prerequisites
  • Install Visual Studio 2019 Community Edition;
  • When installing Visual Studio, it is required that you install Desktop development with C++ and the VC++ v141 toolchain when selecting features. The option to install the v141 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;
  • Make sure that bundled cmake version is 3.14 or higher.
Building

Visual Studio 2019

  • From the start menu, open "x64 Native Tools Command Prompt for vs2017";
  • And the run the following commands:
git clone https://github.com/qwertycoin-org/qwertycoin
cd qwertycoin
md build
cd build
cmake -G "Visual Studio 16 2019" -A x64 -DBUILD_ALL:BOOL=TRUE ..
cmake --build . --config Release
  • If all went well, it will complete successfully, and you will find all your binaries in the .\build\src\Release directory;
  • Additionally, a .sln file will have been created in the build directory. If you wish to open the project in Visual Studio with this, you can.

Apple macOS

Prerequisites
  • Install Xcode and Developer Tools;
  • Install cmake. See here if you are unable to call cmake from the terminal after installing;
  • Install git.
Building
  • After installing dependencies run simple script:
git clone https://github.com/qwertycoin-org/qwertycoin
cd ./qwertycoin
mkdir ./build
cd ./build
cmake -DBUILD_ALL:BOOL=TRUE ..
cmake --build . --config Release
  • If all went well, it will complete successfully, and you will find all your binaries in the ./build/src directory.

Android (building on Linux)

Prerequisites
  • You will need the following packages: build-essential, cmake (3.10 or higher), git, unzip and wget;
  • Most of these should already be installed on your system. For example on Ubuntu by running:
sudo apt-get install build-essential cmake git unzip wget
  • Download and extract Android NDK:
mkdir -p "$HOME/.android"
wget -O "$HOME/.android/android-ndk-r18b-linux-x86_64.zip" "https://dl.google.com/android/repository/android-ndk-r18b-linux-x86_64.zip"
unzip -qq "$HOME/.android/android-ndk-r18b-linux-x86_64.zip" -d "$HOME/.android"
export ANDROID_NDK_r18b="$HOME/.android/android-ndk-r18b"
Building
  • After installing dependencies run simple script:
git clone https://github.com/qwertycoin-org/qwertycoin
cd ./qwertycoin
mkdir ./build
cd ./build
cmake -DCMAKE_TOOLCHAIN_FILE=cmake/polly/android-ndk-r18b-api-21-x86-clang-libcxx.cmake -DBUILD_ALL:BOOL=TRUE -DBUILD_WITH_TESTS:BOOL=FALSE -DSTATIC=ON -DBUILD_64=OFF -DANDROID=true -DBUILD_TAG="android" ..
cmake --build . --config Release
  • If all went well, it will complete successfully, and you will find all your binaries in the ./build/src directory.

FreeBSD

Prerequisites
  • You will need the following packages: cmake (3.14 or higher) and git;
  • Most of these should already be installed on your system. For example on FreeBSD by running:
sudo pkg install cmake git
Building
  • After installing dependencies run simple script:
git clone --recurse-submodules https://github.com/qwertycoin-org/qwertycoin
cd ./qwertycoin
mkdir ./build
cd ./build
cmake -DBUILD_ALL:BOOL=TRUE ..
cmake --build . --config Release
  • If all went well, it will complete successfully, and you will find all your binaries in the ./build/src directory.

Donate

QWC: QWC1K6XEhCC1WsZzT9RRVpc1MLXXdHVKt2BUGSrsmkkXAvqh52sVnNc1pYmoF2TEXsAvZnyPaZu8MW3S8EWHNfAh7X2xa63P7Y
BTC: 1DkocMNiqFkbjhCmG4sg9zYQbi4YuguFWw
ETH: 0xA660Fb28C06542258bd740973c17F2632dff2517
BCH: qz975ndvcechzywtz59xpkt2hhdzkzt3vvt8762yk9
XMR: 47gmN4GMQ17Veur5YEpru7eCQc5A65DaWUThZa9z9bP6jNMYXPKAyjDcAW4RzNYbRChEwnKu1H3qt9FPW9CnpwZgNscKawX
ETN: etnkJXJFqiH9FCt6Gq2HWHPeY92YFsmvKX7qaysvnV11M796Xmovo2nSu6EUCMnniqRqAhKX9AQp31GbG3M2DiVM3qRDSQ5Vwq

Useful Links

Websitehttps://qwertycoin.org
Bitcointalk ANNhttps://bitcointalk.org/index.php?topic=2881418.0
Explorerhttps://explorer.qwertycoin.org
Pool Explorerhttps://explorer.qwertycoin.org/#network
Node Maphttps://nodes.qwertycoin.org
Walletshttps://releases.qwertycoin.org
Web Wallethttps://myqwertycoin.com
Masternode Setuphttps://github.com/qwertycoin-org/qwertycoin/wiki
Blockfoliohttps://blockfolio.com/#get-app
CoinGeckohttps://www.coingecko.com/en/coins/qwertycoin
Deltahttps://delta.app
Discordhttps://qwertycoin.org/discord
Twitterhttps://twitter.com/Qwertycoin_QWC

Thanks

Cryptonote Developers, Bytecoin Developers, Monero Developers, Karbo Developers, Qwertycoin Community

Copypasta for license when editing files

Hi Qwertycoin contributor, thanks for forking and sending back Pull Requests. Extensive docs about contributing are in the works or elsewhere. For now this is the bit we need to get into all the files we touch. Please add it to the top of the files, see src/config/CryptoNoteConfig.h for an example.

# Copyright 2018-2021 (c) The Qwertycoin Group.
# Licensed under the GNU General Public License, Version 3.
# See the file LICENSE from this package for details.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].