9 unstable releases (3 breaking)

new 0.5.1 Sep 19, 2024
0.5.0 Sep 13, 2024
0.4.0 Sep 7, 2024
0.3.4 Sep 4, 2024
0.1.0 Aug 26, 2024

#336 in Magic Beans

Download history 258/week @ 2024-08-22 561/week @ 2024-08-29 573/week @ 2024-09-05 381/week @ 2024-09-12

1,773 downloads per month

MIT license

115KB
267 lines

Superchain

Rust bindings for the superchain-registry.

CI License OP Stack Docs OP Stack

What's Superchain?UsageFeature FlagsCredits

What's Superchain?

The Superchain is a network of chains that share bridging, decentralized governance, upgrades, a communication layer and more.

Chain configurations for the Superchain are defined in the superchain directory. This repository provides rust bindings for the ethereum-optimism/superchain-registry.

Interface with the rust bindings through superchain, an optionally no_std crate that binds to the ethereum-optimism/superchain-registry at compile-time.

superchain

superchain is a no_std crate that exports rust type definitions for chains in the superchain-registry. Since it reads static files to read configurations for various chains into instantiated objects, the superchain crate requires serde as a dependency. To use the superchain crate, add the crate as a dependency to a Cargo.toml.

superchain = "0.5"

superchain declares lazy evaluated statics that expose ChainConfigs, RollupConfigs, and Chain objects for all chains with static definitions in the superchain registry. The way this works is the the golang side of the superchain registry contains an "internal code generation" script that has been modified to output configuration files to the crates/superchain directory in the etc folder that are read by the superchain rust crate. These static config files contain an up-to-date list of all superchain configurations with their chain configs.

There are three core statics exposed by the superchain.

  • CHAINS: A list of chain objects containing the superchain metadata for this chain.
  • OPCHAINS: A map from chain id to ChainConfig.
  • ROLLUP_CONFIGS: A map from chain id to RollupConfig.

While the op-alloy-genesis crate contains a few hardcoded RollupConfig objects, the superchain exports the complete list of superchains and their chain's RollupConfigs and ChainConfigs.

CHAINS, OPCHAINS, and ROLLUP_CONFIGS are exported at the top-level of the superchain crate and can be used directly. See the usage section below for how to work with superchain mappings.

Usage

Add the following to your Cargo.toml.

[dependencies]
superchain = "0.5"

To make superchain no_std, toggle default-features off like so.

[dependencies]
superchain = { version = "0.5", default-features = false }

Below demonstrates getting the RollupConfig for OP Mainnet (Chain ID 10).

use superchain::ROLLUP_CONFIGS;

let op_chain_id = 10;
let op_rollup_config = ROLLUP_CONFIGS.get(&op_chain_id);
println!("OP Mainnet Rollup Config: {:?}", op_rollup_config);

A mapping from chain id to ChainConfig is also available.

use superchain::OPCHAINS;

let op_chain_id = 10;
let op_chain_config = OPCHAINS.get(&op_chain_id);
println!("OP Mainnet Chain Config: {:?}", op_chain_config);

Feature Flags

  • std: Uses the standard library to pull in environment variables.

Credits

superchain-registry contributors for building and maintaining superchain types.

alloy and op-alloy for creating and maintaining high quality Ethereum and Optimism types in rust.

Dependencies

~14MB
~321K SLoC