Skip to main content

Hardware Requirements

These are the suggested specs. Given we are still in the testnet phase, you may decide to cut down a little.

  • 4 or more physical CPU cores
  • At least 500GB of SSD disk storage
  • At least 16GB of memory
  • At least 100mbps network bandwidth

How to Install Quasar

Compile from sources:

  1. Clone quasar preview repository: https://github.com/quasar-finance/quasar-preview/
  2. Run make build-reproducible-amd64
  3. Put the compiled binary from build folder it in your desired location (it is useful to have it in your PATH)

Binary installation

  1. Download latest binary from here: https://github.com/quasar-finance/quasar-preview/releases/
  2. Put it in your desired folder (it is useful to have it in your PATH)

Creating your keys

NOTE: This will use the testing backend (only for testing purposes). Do not use it in prod!

  1. Create the keys with the command:
    quasarnoded keys add < my_new_testing_key > --keyring-backend test
    (replace < my_new_testing_key > with whatever you like)

Cleanup environment

WARNING: Use at your own risk!

If you have pre-existing keys and a previous environment, you can remove them using:

  1. quasarnoded tendermint unsafe-reset-all
  2. quasarnoded keys list --keyring-backend test
  3. quasarnoded keys delete < my_old_key > --keyring-backend test (replace < my_old_key > accordingly.)