-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed unused empty crate chainio/utils #128
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ List of crates in the repository :- | |
|
||
- [eigen-client-avsregistry](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/avsregistry) - Read, Write and subscribe methods for AvsRegistry | ||
- [eigen-client-elcontracts](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/elcontracts) - Convenience methods to call Eigenlayer contracts | ||
- [eigen-chainio-utils](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/utils) | ||
- [eigen-contracts-bindings](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/contracts/bindings) - Generate ethers bindings for Eigen Layer. | ||
- [eigen-crypto-bls](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bls) - bls utilities | ||
- [eigen-crypto-bn254](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bn254) - bn254 utilities | ||
|
@@ -20,7 +19,6 @@ List of crates in the repository :- | |
- [eigen-utils](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/utils) - Publicly exportable `m2-mainnet` compatible alloy bindings. | ||
- [eigen-testing-utils](https://github.com/Layr-Labs/eigensdk-rs/tree/main/testing/testing-utils) - Contains publicly exportable anvil , holesky , mainnet addresses for eigen contracts . | ||
|
||
|
||
## Examples | ||
|
||
You can run any [example](https://github.com/Layr-Labs/eigensdk-rs/tree/main/examples) using the command cargo run --example <example-name> | ||
|
@@ -35,21 +33,23 @@ cargo run --example get_quorum_count | |
|
||
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. | ||
|
||
### PR | ||
To test locally and raise a PR :- | ||
### PR | ||
|
||
To test locally and raise a PR :- | ||
|
||
You need `foundry` , `docker` and `make` and `nightly rust` to successfully run it. Also, the `docker` engine has to be running for all the tests to execute correctly. | ||
|
||
```bash | ||
make pr | ||
``` | ||
|
||
At least 1 `approving` review is required to merge the PR. | ||
|
||
### To run fireblocks tests | ||
### To run fireblocks tests | ||
|
||
Add the following variables to your env | ||
Add the following variables to your env | ||
|
||
- FIREBLOCKS_API_KEY | ||
- FIREBLOCKS_API_KEY | ||
- FIREBLOCKS_PRIVATE_KEY_PATH | ||
- FIREBLOCKS_API_URL | ||
|
||
|
@@ -59,40 +59,49 @@ Add the following variables to your env | |
make fireblocks-tests | ||
|
||
``` | ||
Note: The tests were written using sandbox environment , you would need to modify the testing parameters according to your own asset id's , tx-id etc. | ||
|
||
Note: The tests were written using sandbox environment , you would need to modify the testing parameters according to your own asset id's , tx-id etc. | ||
|
||
### Test Coverage | ||
|
||
Test coverage should aim to be around 80%. | ||
|
||
Here's how to generate test coverage reports: | ||
|
||
Install llvm tools: | ||
|
||
```bash | ||
make deps | ||
``` | ||
|
||
Run the tests with coverage instrumentations: | ||
|
||
```bash | ||
make coverage | ||
``` | ||
|
||
Open the coverage html report in a web browser: | ||
|
||
```bash | ||
open target/llvm-cov/html/index.html | ||
``` | ||
|
||
## Supported Rust Version | ||
|
||
Rolling `MSRV` policy of 6 months. The current `MSRV` is 1.79 | ||
|
||
## Disclaimer | ||
|
||
This software is `unaudited`.This is experimental software and is provided on an "as is" and "as available" basis and may not work at all. It should not be used in production. | ||
|
||
# Credits | ||
|
||
- [Layer-labs](https://github.com/Layr-Labs/eigensdk-go/tree/master) | ||
|
||
# Security Bugs | ||
Please report security vulnerabilities to [email protected]. Do NOT report security bugs via Github Issues. | ||
|
||
Please report security vulnerabilities to <[email protected]>. Do NOT report security bugs via Github Issues. | ||
|
||
## Support | ||
Join our [telegram](https://t.me/+0_kYjD7TTCRjMjZh) channel . | ||
|
||
Join our [telegram](https://t.me/+0_kYjD7TTCRjMjZh) channel . | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ List of crates in the repository :- | |
|
||
- [eigen-client-avsregistry](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/avsregistry) - Read, Write and subscribe methods for AvsRegistry | ||
- [eigen-client-elcontracts](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/elcontracts) - Convenience methods to call Eigenlayer contracts | ||
- [eigen-chainio-utils](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/utils) | ||
- [eigen-contracts-bindings](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/contracts/bindings) - Generate ethers bindings for Eigen Layer. | ||
- [eigen-crypto-bls](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bls) - bls utilities | ||
- [eigen-crypto-bn254](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bn254) - bn254 utilities | ||
|
@@ -20,7 +19,6 @@ List of crates in the repository :- | |
- [eigen-utils](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/utils) - Publicly exportable `m2-mainnet` compatible alloy bindings. | ||
- [eigen-testing-utils](https://github.com/Layr-Labs/eigensdk-rs/tree/main/testing/testing-utils) - Contains publicly exportable anvil , holesky , mainnet addresses for eigen contracts . | ||
|
||
|
||
## Examples | ||
|
||
You can run any [example](https://github.com/Layr-Labs/eigensdk-rs/tree/main/examples) using the command cargo run --example <example-name> | ||
|
@@ -35,21 +33,23 @@ cargo run --example get_quorum_count | |
|
||
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. | ||
|
||
### PR | ||
To test locally and raise a PR :- | ||
### PR | ||
|
||
To test locally and raise a PR :- | ||
|
||
You need `foundry` , `docker` and `make` and `nightly rust` to successfully run it. Also, the `docker` engine has to be running for all the tests to execute correctly. | ||
|
||
```bash | ||
make pr | ||
``` | ||
|
||
At least 1 `approving` review is required to merge the PR. | ||
|
||
### To run fireblocks tests | ||
### To run fireblocks tests | ||
|
||
Add the following variables to your env | ||
Add the following variables to your env | ||
|
||
- FIREBLOCKS_API_KEY | ||
- FIREBLOCKS_API_KEY | ||
- FIREBLOCKS_PRIVATE_KEY_PATH | ||
- FIREBLOCKS_API_URL | ||
|
||
|
@@ -59,39 +59,49 @@ Add the following variables to your env | |
make fireblocks-tests | ||
|
||
``` | ||
Note: The tests were written using sandbox environment , you would need to modify the testing parameters according to your own asset id's , tx-id etc. | ||
|
||
Note: The tests were written using sandbox environment , you would need to modify the testing parameters according to your own asset id's , tx-id etc. | ||
|
||
### Test Coverage | ||
|
||
Test coverage should aim to be around 80%. | ||
|
||
Here's how to generate test coverage reports: | ||
|
||
Install llvm tools: | ||
|
||
```bash | ||
make deps | ||
``` | ||
|
||
Run the tests with coverage instrumentations: | ||
|
||
```bash | ||
make coverage | ||
``` | ||
|
||
Open the coverage html report in a web browser: | ||
|
||
```bash | ||
open target/llvm-cov/html/index.html | ||
``` | ||
|
||
## Supported Rust Version | ||
|
||
Rolling `MSRV` policy of 6 months. The current `MSRV` is 1.79 | ||
|
||
## Disclaimer | ||
|
||
This software is `unaudited`.This is experimental software and is provided on an "as is" and "as available" basis and may not work at all. It should not be used in production. | ||
|
||
# Credits | ||
|
||
- [Layer-labs](https://github.com/Layr-Labs/eigensdk-go/tree/master) | ||
|
||
# Security Bugs | ||
Please report security vulnerabilities to [email protected]. Do NOT report security bugs via Github Issues. | ||
|
||
Please report security vulnerabilities to <[email protected]>. Do NOT report security bugs via Github Issues. | ||
|
||
## Contact | ||
|
||
Telegram - supernovahs444 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit