{"id":17478233,"url":"https://github.com/tangle-network/eigensdk-rs","last_synced_at":"2025-10-26T19:07:15.098Z","repository":{"id":251408611,"uuid":"837304435","full_name":"tangle-network/eigensdk-rs","owner":"tangle-network","description":"Eigenlayer SDK for building AVS","archived":false,"fork":false,"pushed_at":"2024-09-30T15:57:00.000Z","size":993,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T05:04:07.435Z","etag":null,"topics":["avs","blockchain","cryptography","eigenlayer","eigenlayer-avs","restaking","security"],"latest_commit_sha":null,"homepage":"https://tangle.tools","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tangle-network.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-02T16:50:57.000Z","updated_at":"2024-10-15T20:54:23.000Z","dependencies_parsed_at":"2024-08-20T06:13:30.433Z","dependency_job_id":"291c49ab-e201-40f2-b698-21224d74a4e7","html_url":"https://github.com/tangle-network/eigensdk-rs","commit_stats":null,"previous_names":["webb-tools/eigensdk-rs","tangle-network/eigensdk-rs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Feigensdk-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Feigensdk-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Feigensdk-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tangle-network%2Feigensdk-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tangle-network","download_url":"https://codeload.github.com/tangle-network/eigensdk-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245462840,"owners_count":20619571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["avs","blockchain","cryptography","eigenlayer","eigenlayer-avs","restaking","security"],"created_at":"2024-10-18T20:18:23.662Z","updated_at":"2025-10-26T19:07:10.047Z","avatar_url":"https://github.com/tangle-network.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EigenSDK-RS\n\n[![Rust Version](https://img.shields.io/badge/rust-1.74.0%2B-blue.svg)](https://www.rust-lang.org)\n[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n---\n\n`eigensdk-rs` is a Rust SDK for interacting with Eigenlayer and building AVS tooling. Additionally, it incorporates features for interacting with Tangle and utilizing our [gadget](https://github.com/webb-tools/gadget), an augmented SDK for building task based AVS. Together, these two offer a comprehensive solution for building applications with both Eigenlayer and Tangle. This SDK is a high-performance, reliable, and efficient library that integrates seamlessly with Eigenlayer's ecosystem while leveraging the many advantages of Rust.\n\nIt should be noted that this SDK is still being actively developed and has not undergone a professional audit. Please use at your own risk in production.\n\n---\n## Table of Contents\n- [**Features**](#features)\n- [**Getting** Started](#getting-started)\n    - [**Installation**](#installation)\n- [**Building**](#building)\n- [**Usage**](#usage)\n  - [**Running an AVS**](#running-an-avs)\n- [**Testing**](#testing)\n    - [**Running the Included Tests**](#running-the-included-tests)\n    - [**Testing Custom Implementations**](#testing-custom-implementations)\n- [**Documentation**](#documentation)\n- [**Contributing**](#contributing)\n  - [**License**](#license)\n\n---\n## Features\n\n- **Full Eigenlayer Integration**: Provides all the robust functionalities of eigensdk-go, now with the performance benefits of Rust.\n- **Unlimited Customization**: Equipped with all the tools needed to build custom AVSs, including those that leverage our advanced Gadget capabilities.\n- **High Performance**: Developed with Rust to deliver superior efficiency and speed, ensuring your applications run optimally.\n- **Enhanced Type Safety**: Takes advantage of Rust's strong type system to create more reliable and maintainable code.\n- **Advanced Concurrency**: Utilizes Rust's concurrency model to enable safe and efficient multi-threaded operations.\n- **Go Implementation Compatibility**: Achieves full feature parity with the Go version, facilitating straightforward porting of applications from Go to Rust.\n- **Comprehensive API Access**: Provides complete access to all Eigen network functionalities, empowering developers to fully exploit the platform's potential.\n\n---\n## Getting Started\n\n### Installation\n\nClone the repository:\n\n```bash\ngit clone https://github.com/webb-tools/eigensdk-rs/\ncd eigensdk-rs\n```\n\n---\n## Usage\n\n### Building\n```bash\ncargo build --release\n```\nor to use EigenSDK-RS in your own Rust project, just add the following dependency to your `Cargo.toml`:\n```toml\n[dependencies]\neigensdk-rs = { git = \"https://github.com/webb-tools/eigensdk-rs\" }\n```\n\n### Running an AVS\nTo programmatically start an AVS operator:\n\n1. Create a new operator, supplying the necessary inputs (dependent upon the AVS you are running). The following is a general example that a real implementation would closely follow. The config is dependent upon the AVS you are running.\n```rust\nlet operator = Operator::new_from_config(\n\tconfig,\n\thttp_provider,\n\tws_provider,\n\toperator_info_service,\n\tsigner,\n)\n.await?;\n```\n2. With the operator, simply run the start function:\n```rust\noperator.start().await?;\n```\n---\n## Testing\nThis repository both contains tests for the included AVSs and provides the tools necessary to test custom AVSs you build with this SDK.\n\n### Running the included tests\nTo run the tests from the command line, you can run the following commands in the root directory:\n\n1. You can manually build all smart contracts, though there are build scripts to automatically build them.\n\n```bash\n./test-utils/scripts/build.sh\n```\n\n2. Set the environment variables for running the tests.\n\n```bash\n. ./test-utils/scripts/env_setup.sh\n```\n\n3. Run the test for the AVS you would like to test.\n\nIncredible Squaring AVS\n```bash\ncargo test -p test-utils test_incredible_squaring_full\n```\n\nThe full test starts a local Anvil testnet, deploys all the required contracts to it, and then starts an operator.\n\n### Running the Testnets as binaries\n\n1. Build\n```bash\ncargo build --release -p test-utils\n```\n\n2. Run\n\nIncredible Squaring AVS's Testnet\n```bash\n./target/release/incredible-squaring\n```\n\n---\n## Contributing\n\nTo contribute:\n\n1. Fork the repository.\n2. Create a new branch.\n3. Make your changes and ensure tests pass.\n4. Submit a pull request with a detailed description of your changes.\n\n## License\nGadget is licensed under either of the following:\n* Apache License, Version 2.0\n  ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n* MIT license\n  ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangle-network%2Feigensdk-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftangle-network%2Feigensdk-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangle-network%2Feigensdk-rs/lists"}