The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust
James Prestwich aa4e7272f4
refactor: run_report_error now reports the name
4 years ago
..
optics-base refactor: run_report_error now reports the name 4 years ago
optics-core feature: adds name function to Common trait 4 years ago
.gitignore the last syllable of recorded time 4 years ago
Cargo.lock refactor: adds a bit more logging and error reporting to OpticsAgent 4 years ago
Cargo.toml feature: implement replica trait on replica contract abigen 4 years ago
README.md chore: adds basic instructions for making an agent 4 years ago

README.md

Optics Rust implementations

Setup

Useful cargo commands

  • cargo doc --open
    • generate documentation and open it in a web browser
  • cargo build
    • compile the project
  • cargo run
    • run the default executable for the current project
  • cargo test
    • run the tests

Architecture

The on-chain portions of optics are written in Solidity. The rust portions are exclusively off-chain. Later, there may be on-chain rust for Near/Solana/ Polkadot.

Optics will be managed by a number of small off-chain programs ("agents"). Each of these will have a specific role. We want these roles to be simple, and easily described. Each of these agents will connect to a home chain and any number of replicas. They need to be configured with chain connection details and have access to a reliable node for each chain.

Some agent sketches:

  • updater
    • Needs only a connection to the home chain
    • Signs upate attestations and submits them to the home chain
  • watcher
    • Observe the home chain
    • Observe as many replicas as possible
    • Cache updates
    • Check for fraud
    • Submit fraud to the home chain
    • if configured, issue emergency stop transactions
  • relayer
    • Relays signed updates from the home to the replica
    • Ensures updates are confirmed in a timely manner on the replica

For Ethereum and Celo connections we use ethers-rs. Please see the docs here.

We use the tokio async runtime environment. Please see the docs here.

Repo layout

  • optics-core
    • contains implementations of core primitives
    • this includes
      • traits (interfaces) for the on-chain contracts
      • model implementations of the contracts in rust
      • merkle tree implementations (for provers)
  • optics-base
    • contains shared utilities for building off-chain agents
    • this includes
      • trait implementations for different chains
      • shared configuration file formats
      • basic setup for an off-chain agent
  • TODO: other agents :)

High-level guide to building an agent

  • mkdir $AGENT_NAME && cd $AGENT_NAME
  • cargo init
  • add dependencies to the new Cargo.toml
  • create a new module in src/$AGENT_NAME.rs
    • add a new struct
    • implement optics_base::agent::OpticsAgent for your struct
    • your run function is the business logic of your agent
  • create a new settings module
    • reuse the Settings objects from optics_base::settings
    • make sure the read the docs :)
    • add your own new settings
  • in $AGENT_NAME/src/main.rs
    • add mod _____ declarations for your agent and settings modules
    • create main and setup functions
    • follow the pattern in optics-base/src/main.rs
  • make a config folder and a toml file
    • Make sure to include your own settings from above