An EVM compatible Substrate chain, powered by StorageHub and secured by EigenLayer
Find a file
Gonza Montiel 5e0ad4a59c
style(node): 🎨 fix cargo clippy (#30)
I noticed `cargo clippy` was failing in CI, I fixed it. I still think we
should tweak the lints.
For example, clippy complains at things like `1 * HOURS ` because it's
redundant to multiply by 1, buy maybe we want it explicitly that way, so
it's more evident it can be changed. In this PR I don't tweak the rule
but try to make clippy happy.
2025-04-04 16:14:05 +02:00
.github/workflows misc: remove cargo fmt setup action as it is already available (#15) 2025-03-31 14:46:03 -03:00
contracts chore(contracts): 🗑️ Remove unused contracts (#29) 2025-04-03 14:43:25 -03:00
docker chore: 🏗️ Structure repo 2025-03-06 11:44:55 -03:00
operator style(node): 🎨 fix cargo clippy (#30) 2025-04-04 16:14:05 +02:00
resources chore: 🏗️ Structure repo 2025-03-06 11:44:55 -03:00
test chore: 🏗️ Structure repo 2025-03-06 11:44:55 -03:00
.gitignore ci: 👷 Improve CI job for rust tests and format (#9) 2025-03-19 20:30:03 -03:00
.gitmodules build: Change Snowbridge contracts dependency from upstream to fork (#18) 2025-03-28 15:49:43 -03:00
README.md chore: 🏗️ Structure repo 2025-03-06 11:44:55 -03:00

DataHaven 🫎

An EVM compatible Substrate chain, powered by StorageHub and secured by EigenLayer.

Repo Structure

datahaven/
├── .github/ # GitHub Actions workflows.
├── contracts/ # Implementation of the DataHaven AVS (Autonomous Verifiable Service) smart contracts to interact with EigenLayer.
├── docker/ # Docker build files.
├── operator/ # DataHaven node based on Substrate. The "Operator" in EigenLayer terms.
├── test/ # Integration tests for the AVS and Operator.
├── resources/ # Miscellaneous resources for the DataHaven project.
└── README.md