Cedra is the first community-owned blockchain built on the Move language that lets anyone spin up and govern their own sovereign networks. Designed as a public good, Cedra fuses protocol development, funding, and growth into open collaboration among core contributors, a non-profit foundation, and a worldwide guild of builders.
This main repository contains the core components of the Cedra Network ecosystem, including the CLI tools, node, and various modules that power the network.
Before you begin, ensure you have the following installed:
- Rust 1.86+ - Required for building from source
- Operating System: macOS, Ubuntu 22.04+, or Windows
The quickest way to get started with Cedra is by installing the CLI:
Ubuntu/Debian:
sudo add-apt-repository ppa:cedra-network/deps
sudo apt update
sudo apt install cedra-cli
# Verify installation
cedra --versionWindows (Chocolatey - recommended):
choco install cedra
# Verify installation
cedra --versionmacOS and any other OS
- Visit the Cedra CLI v1.0.1 release page: https://github.com/cedra-labs/cedra-network/releases/tag/cedra-cli-v1.0.1.
- In the Assets section, choose the file that matches your platform
- Extract the archive
- Move the
cedra(orcedra.exeon Windows) executable to a folder that is in yourPATH - Verify installation:
cedra --version
For detailed installation instructions and troubleshooting, see the CLI Installation Guide.
Build from source:
If you prefer compiling yourself or contributing to Cedra:
git clone https://github.com/cedra-labs/cedra-network
cd cedra-network
cargo build --release -p cedra
# The compiled binary will be at target/release/cedra (or .exe on Windows)
# Add it to your PATH and verify
cedra --versionFor more detailed build instructions and development setup, see our Development Setup Guide
- Documentation
- Block Explorer
- DApp Examples
- X (Twitter)
- Telegram Network Channel
- Telegram Builders Group
- Discord Server
You can learn more about contributing to the Cedra project by reading our Contribution Guide and by viewing our Code of Conduct.
Cedra Core is licensed under Apache 2.0.