Go to file
Cassie Heart 28401ee960 Merge branch 'agostbiro/fix-docs' into 'v1.4.19'
Fix docs and release build commands

See merge request quilibrium/ceremonyclient!8
2024-06-08 11:32:25 +00:00
client feat: go 1.22 support 2024-06-07 06:25:43 +00:00
crates Switch to Rust VDF 2024-06-07 03:52:16 +00:00
docker Switch to Rust VDF 2024-06-07 03:52:16 +00:00
go-libp2p feat: go 1.22 support 2024-06-07 06:25:43 +00:00
go-libp2p-blossomsub feat: go 1.22 support 2024-06-07 06:25:43 +00:00
go-libp2p-gostream feat: go 1.22 support 2024-06-07 06:25:43 +00:00
nekryptology v1.4.18-patch-2 (#230) 2024-05-29 12:51:47 -05:00
node remove binaries 2024-06-08 06:31:02 -05:00
pebble v1.2.0 (#31) 2024-01-03 01:31:42 -06:00
signers create docker image based on release binaries 2024-06-07 00:50:15 +00:00
vdf Switch to Rust VDF 2024-06-07 03:52:16 +00:00
.dockerignore build, binaries, signatory #13 2024-06-08 04:40:32 -05:00
.env.example v1.4.18-patch-1 (#216) 2024-05-27 00:10:15 -05:00
.gitignore Switch to Rust VDF 2024-06-07 03:52:16 +00:00
Cargo.lock Switch to Rust VDF 2024-06-07 03:52:16 +00:00
Cargo.toml Switch to Rust VDF 2024-06-07 03:52:16 +00:00
CONTRIBUTING.md Fix docs and release build commands 2024-06-08 13:07:00 +02:00
DOCKER-README.md create docker image based on release binaries 2024-06-07 00:50:15 +00:00
Dockerfile.release create docker image based on release binaries 2024-06-07 00:50:15 +00:00
Dockerfile.source Fix docs and release build commands 2024-06-08 13:07:00 +02:00
go.mod tests pass, let's go 2024-06-08 03:38:53 -05:00
LICENSE move readme, add license 2023-09-30 02:04:57 -05:00
README.md Fix docs and release build commands 2024-06-08 13:07:00 +02:00
Taskfile.yaml Fix docs and release build commands 2024-06-08 13:07:00 +02:00

Quilibrium - Betelgeuse

Quilibrium is a decentralized alternative to platform as a service providers. This release is part of the phases of the Dusk release, which finalizes with the full permissionless mainnet in version 2.0. Documentation for the underlying technology can be found at https://www.quilibrium.com/

Quick Start

Running production nodes from source is no longer recommended given build complexity. Please refer to our release information to obtain the latest version.

Running From Source

Builds are now a hybrid of Rust and Go, so you will need both go 1.22 and latest Rust + Cargo.

VDF

The VDF implementation is now in Rust, and requires GMP to build. On Mac, you can install GMP with brew (brew install gmp). On Linux, you will need to find the appropriate package for your distro.

Install the go plugin for uniffi-rs:

cargo install uniffi-bindgen-go --git https://github.com/NordSecurity/uniffi-bindgen-go --tag v0.2.1+v0.25.0

Be sure to follow the PATH export given by the installer.

Build the Rust VDF implementation by navigating to the vdf folder, and run ./generate.sh.

Node

Because of the Rust interop, be sure you follow the above steps for the VDF before proceeding to this. Navigate to the node folder, and run (making sure to update the path for the repo):

CGO_LDFLAGS="-L/path/to/ceremonyclient/target/release -lvdf -ldl -lm" \
    CGO_ENABLED=1 \
    GOEXPERIMENT=arenas \
    go run ./... --signature-check=false

gRPC/REST Support

If you want to enable gRPC/REST, add the following entries to your config.yml:

listenGrpcMultiaddr: <multiaddr> 
listenRESTMultiaddr: <multiaddr>

Please note: this interface, while read-only, is unauthenticated and not rate- limited. It is recommended that you only enable if you are properly controlling access via firewall or only query via localhost.

Token Balance

In order to query the token balance of a running node, execute the following command from the node/ folder:

./node-$version-$platform -balance

The accumulated token balance will be printed to stdout in QUILs.

Note that this feature requires that gRPC support is enabled.

Community Section

This section contains community-built clients, applications, guides, etc

Disclaimer: Because some of these may contain external links, do note that these are unofficial every dependency added imparts risk, so if another project's github account were compromised, for example, it could lead people down a dangerous or costly path. Proceed with caution as always and refer to reliable members of the community for verification of links before clicking or connecting your wallets

1. The Q Guide - Beginners Guide

  • A detailed beginners' guide for how to setup a Quilibrium Node, created by @demipoet - link

Development

Please see the CONTRIBUTING.md file for more information on how to contribute to this repository.

License + Interpretation

Significant portions of Quilibrium's codebase depends on GPL-licensed code, mandating a minimum license of GPL, however Quilibrium is licensed as AGPL to accomodate the scenario in which a cloud provider may wish to coopt the network software. The AGPL allows such providers to do so, provided they are willing to contribute back the management code that interacts with the protocol and node software. To provide clarity, our interpretation is with respect to node provisioning and management tooling for deploying alternative networks, and not applications which are deployed to the network, mainnet status monitors, or container deployments of mainnet nodes from the public codebase.