4 releases
new 0.1.3 | Jan 17, 2025 |
---|---|
0.1.2 | Jan 9, 2025 |
0.1.1 | Nov 25, 2024 |
0.1.0 | Sep 30, 2024 |
#370 in Magic Beans
1,151 downloads per month
Used in 4 crates
(via gadget-sdk)
13MB
162K
SLoC
EigenSDK-rs
EigenSDK-rs is an initiative for rust developers to build AVSs on eigenlayer.
Installation
cargo add eigensdk --features full
Overview
List of crates in the repository :-
- eigen-client-avsregistry - Read, Write and subscribe methods for AvsRegistry
- eigen-client-elcontracts - Convenience methods to call Eigenlayer contracts
- eigen-crypto-bls - New bls key pair, sign message, conversion utilites between alloy and arkworks bn254.
- eigen-crypto-bn254 - verify message on G2, map to curve.
- eigen-metrics - performance, rpc and economic metrics
- eigen-services - Spawn tokio services for operators info, bls aggregation
- eigen-types - Common types
- eigen-utils - Publicly exportable
mainnet rewards v0.4.3
compatible alloy bindings. - eigen-testing-utils - Contains publicly exportable anvil, holesky, mainnet addresses for eigen contracts.
- eigen-cli - ECDSA, BLS keystore cli
- eigen-nodeapi - NodeApi implementation for EigenLayer.
- eigen-logging - Logging utilities
- eigen-common - Common utilities like provider and signer getters.
Examples
You can run any example using the command cargo run --example <example-name>
Example :
cargo run --example get_quorum_count
Contract Bindings
The main branch of this repo is intended to be syncronized with mainnet version of core contracts.
To update the bindings of this repo, run:
make bindings
This command will generate the bindings files in the folder: crates/utils
.
⚠️ Remember to fix all compilation warnings.
Contributor Guidelines
We are actively looking for contributors. Thank you for your interest. We have strict ci checks in place. In case of any questions and support, feel free to raise an issue.
Branches
main
- Points to the latest mainnet release of contracts.testnet
- Points to the latest testnet release of contracts.dev
- Points to the latest dev branch of the contracts.
PR
To test locally :-
You need foundry
to successfully run it.
cargo test --workspace
On Mac, you might get an error similar to:
Error starting anvil container: Client(PullImage { descriptor: "ghcr.io/foundry-rs/foundry:latest", err: DockerStreamError { error: "no matching manifest for linux/arm64/v8 in the manifest list entries" } })
In that case, you'll need to pull the foundry image for the amd64
platform with:
docker pull --platform linux/amd64/v8 ghcr.io/foundry-rs/foundry:latest
At least 1 approving
review is required to merge the PR.
lint
make lint
To run fireblocks tests
Add the following variables to your env
- FIREBLOCKS_API_KEY
- FIREBLOCKS_PRIVATE_KEY_PATH
- FIREBLOCKS_API_URL
and then run the following command
make fireblocks-tests
Test Coverage
Test coverage should aim to be around 80%.
Here's how to generate test coverage reports:
Install llvm tools:
make deps
Run the tests with coverage instrumentations:
make coverage
Open the coverage html report in a web browser:
open target/llvm-cov/html/index.html
Supported Rust Version
Rolling MSRV
policy of 6 months. The current MSRV
is 1.79
Disclaimer
🚧 EigenSDK-rs is under active development and has not been audited. EigenSDK-rs is rapidly being upgraded, features may be added, removed or otherwise improved or modified and interfaces will have breaking changes. EigenSDK-rs should be used only for testing purposes and not in production. EigenSDK-rs is provided "as is" and Eigen Labs, Inc. does not guarantee its functionality or provide support for its use in production. 🚧
Credits
Security Bugs
Please report security vulnerabilities to security@eigenlabs.org. Do NOT report security bugs via Github Issues.
Support
Join our telegram channel .
Dependencies
~0–23MB
~377K SLoC