QUANTA Documentation
  • Documentation
  • Introduction
    • Fair Trading Protocol
  • Getting Started
    • Building Source Code
    • Running Quanta Node
    • Running Quanta Wallet
    • Running on Docker
  • Testnet
    • Create account
    • Transfer ETH/ERC-20
    • Become a Block Producer
  • Guides
    • Websockets
    • Trading Bot
  • SDK
    • Javascript
  • API
    • Markets
  • Advanced
    • Issuing your own QUANTA Token
    • Deploy your own exchange on AWS
Powered by GitBook
On this page
  • Building source code
  • Installing pre-built binaries

Was this helpful?

  1. Getting Started

Building Source Code

PreviousFair Trading ProtocolNextRunning Quanta Node

Last updated 6 years ago

Was this helpful?

The command line tools allows you to generate keys, and send transaction.

Building source code

sudo apt-get update
sudo apt-get install autoconf cmake make automake libtool git libboost-all-dev libssl-dev g++ libcurl4-openssl-dev

git clone https://github.com/quantadex/quanta-core.git
cd quanta-core
git checkout release # may substitute "master" with current release tag
git submodule update --init --recursive
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .
make

Installing pre-built binaries

Go to for pre-built binaries. Pick the the one appropriate your platform to download.

Linux/Unix We recommend you rename as quanta-cli and place in your $PATH.

curl -L -o /usr/local/bin/quanta-wallet https://github.com/quantadex/quanta-core/releases/download/1.0/cli_wallet.linux.amd64
chmod +x  /usr/local/bin/quanta-wallet

curl -L -o /usr/local/bin/quanta-node https://github.com/quantadex/quanta-core/releases/download/1.0/witness_node.linux.amd64
chmod +x  /usr/local/bin/quanta-node

https://github.com/quantadex/quanta-core/releases