UNC's purpose is to enable community-driven innovation to benefit people around the world.
To achieve this purpose, UNC provides a developer platform where developers and entrepreneurs can create apps that put users back in control of their data and assets, which is the foundation of "Open Web" movement.
One of the components of UNC is the UNC Protocol, an infrastructure for server-less applications and smart contracts powered by a blockchain. UNC Protocol is built to deliver usability and scalability of modern PaaS like Firebase at fraction of the prices that blockchains like Ethereum charge.
Overall, UNC provides a wide range of tools for developers to easily build applications:
- JS Client library to connect to UNC Protocol from your applications.
- Rust and JavaScript/TypeScript SDKs to write smart contracts and stateful server-less functions.
- Numerous examples with links to hack on them right inside your browser.
- Lots of documentation, with Tutorials and API docs.
The easiest way to join the network, is by using the make release
command, which you can install as follows:
# testnet node init
./target/release/uncd --home ~/.unc init --chain-id testnet --download-genesis --download-config
# download snapshot data (optional)
## install rclone 1.66.0 or beyond
```sh
# Mac
$ brew install rclone
# Linux
$ sudo apt install rclone
$ mkdir -p ~/.config/rclone
$ touch ~/.config/rclone/rclone.conf
## rclone config
[unc_cf]
type = s3
provider = Cloudflare
endpoint= https://ec9b597fa02615ca6a0e62b7ff35d0cc.r2.cloudflarestorage.com
access_key_id = 2ff213c3730df215a7cc56e28914092e
secret_access_key = b28609e3869b43339c1267b59cf25aa5deff4097737d3848e1491e0729c3ff6c
acl = public-read
## download data
$ rclone copy --no-check-certificate unc_cf:unc/latest ./
$ latest=$(cat latest)
$ rclone copy --no-check-certificate --progress --transfers=6 unc_cf:unc/${latest:?} ~/.unc/data
# node run
$ ./target/release/uncd --home ~/.unc run
To learn how to become validator, checkout documentation.
The workflow and details of setup to contribute are described in CONTRIBUTING.md, and security policy is described in SECURITY.md. To propose new protocol changes or standards use Specification & Standards repository.