# README
Omni Monorepo

About Omni
This monorepo contains all source code for the Omni protocol. Omni's goal is to make it easy for smart contract developers to source liquidity and users from anywhere. The protocol consists of various components including an EVM and cross-chain messaging.
The Omni Docs are the best place to get started learning about Omni.
Quickstart
Ensure go, goreleaser and docker are installed.
# Build local docker containers
make build-docker
# Run the end-to-end tests on a local devnet
MANIFEST=devnet1 make e2e-run
# Start a local devnet
make devnet-deploy
# Stop the local devnet
make devnet-clean
If any of above commands fail, see the troubleshooting section.
Directory Structure
├── contracts: Solidity contracts and related software. │ ├── core/: Core protocol smart contracts. │ ├── avs/: Eigen AVS smart contracts. │ ├── bindings/: Go smart contract bindings. │ └── allocs/: Predeploy allocations. ├── docs: Documentation resources, including images and diagrams. ├── halo: The Halo instance, including application logic and attestation mechanisms. │ ├── app: Application logic for Halo. │ └── cmd: Command-line tools and utilities. ├── lib: Core libraries for various protocol functionalities. │ ├── cchain: Consensus chain interaction utilities. │ └── xchain: Cross-chain messaging and utilities. ├── octane: Octane is a modular framework for the EVM. │ └── evmengine: The EVMEngine cosmos module. ├── relayer: Relayer service for cross-chain messages and transactions. │ └── app: Application logic for the relayer service. ├── scripts: Utility scripts for development and operational tasks. └── test: Testing suite for end-to-end, smoke, and utility testing.
Contributing
We are open to contributions, but don't currently have a formal process for contributors. If you are interested, browse through open issues, read our code of conduct, or chat with the team.
Follow these steps to set up a functional development environment:
- Install Docker Desktop.
- Create a PGP key pair and add the public key to Github.
- Run
make setup
to initialize your dev environment. SeeMakefile
for details.
Security
Please refer to SECURITY.md.
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
Command halo is the main entry point for the halo consensus client.
No description provided by the author
Command monitor is the main entry point for the monitor service.
No description provided by the author
Command relayer is the main entry point for the relayer.
Package scripts is a empty go package only used for the tools.go pattern.
Command solver is the main entry point for the solver service.