├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── assets └── banner.png ├── bin ├── client │ ├── Cargo.toml │ ├── README.md │ ├── configs │ │ └── rollup.json │ ├── justfile │ └── src │ │ ├── hana.rs │ │ ├── lib.rs │ │ └── single.rs └── host │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── bin │ └── host.rs │ ├── celestia │ ├── cfg.rs │ ├── handler.rs │ ├── mod.rs │ ├── online_provider.rs │ └── providers.rs │ └── lib.rs ├── crates ├── blobstream │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── blobstream.rs │ │ └── lib.rs ├── celestia │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── celestia.rs │ │ ├── lib.rs │ │ ├── source.rs │ │ └── traits.rs ├── oracle │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── hint.rs │ │ ├── lib.rs │ │ ├── payload.rs │ │ └── provider.rs └── proofs │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── blobstream_inclusion.rs │ └── lib.rs └── docs └── audits └── Celestia Q2 2025 _ Hana Library Audit Report_Final.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/assets/banner.png -------------------------------------------------------------------------------- /bin/client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/client/Cargo.toml -------------------------------------------------------------------------------- /bin/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/client/README.md -------------------------------------------------------------------------------- /bin/client/configs/rollup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/client/configs/rollup.json -------------------------------------------------------------------------------- /bin/client/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/client/justfile -------------------------------------------------------------------------------- /bin/client/src/hana.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/client/src/hana.rs -------------------------------------------------------------------------------- /bin/client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/client/src/lib.rs -------------------------------------------------------------------------------- /bin/client/src/single.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/client/src/single.rs -------------------------------------------------------------------------------- /bin/host/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/Cargo.toml -------------------------------------------------------------------------------- /bin/host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/README.md -------------------------------------------------------------------------------- /bin/host/src/bin/host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/src/bin/host.rs -------------------------------------------------------------------------------- /bin/host/src/celestia/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/src/celestia/cfg.rs -------------------------------------------------------------------------------- /bin/host/src/celestia/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/src/celestia/handler.rs -------------------------------------------------------------------------------- /bin/host/src/celestia/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/src/celestia/mod.rs -------------------------------------------------------------------------------- /bin/host/src/celestia/online_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/src/celestia/online_provider.rs -------------------------------------------------------------------------------- /bin/host/src/celestia/providers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/src/celestia/providers.rs -------------------------------------------------------------------------------- /bin/host/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/bin/host/src/lib.rs -------------------------------------------------------------------------------- /crates/blobstream/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/blobstream/Cargo.toml -------------------------------------------------------------------------------- /crates/blobstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/blobstream/README.md -------------------------------------------------------------------------------- /crates/blobstream/src/blobstream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/blobstream/src/blobstream.rs -------------------------------------------------------------------------------- /crates/blobstream/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/blobstream/src/lib.rs -------------------------------------------------------------------------------- /crates/celestia/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/celestia/Cargo.toml -------------------------------------------------------------------------------- /crates/celestia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/celestia/README.md -------------------------------------------------------------------------------- /crates/celestia/src/celestia.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/celestia/src/celestia.rs -------------------------------------------------------------------------------- /crates/celestia/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/celestia/src/lib.rs -------------------------------------------------------------------------------- /crates/celestia/src/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/celestia/src/source.rs -------------------------------------------------------------------------------- /crates/celestia/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/celestia/src/traits.rs -------------------------------------------------------------------------------- /crates/oracle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/oracle/Cargo.toml -------------------------------------------------------------------------------- /crates/oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/oracle/README.md -------------------------------------------------------------------------------- /crates/oracle/src/hint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/oracle/src/hint.rs -------------------------------------------------------------------------------- /crates/oracle/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/oracle/src/lib.rs -------------------------------------------------------------------------------- /crates/oracle/src/payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/oracle/src/payload.rs -------------------------------------------------------------------------------- /crates/oracle/src/provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/oracle/src/provider.rs -------------------------------------------------------------------------------- /crates/proofs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/proofs/Cargo.toml -------------------------------------------------------------------------------- /crates/proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/proofs/README.md -------------------------------------------------------------------------------- /crates/proofs/src/blobstream_inclusion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/proofs/src/blobstream_inclusion.rs -------------------------------------------------------------------------------- /crates/proofs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/crates/proofs/src/lib.rs -------------------------------------------------------------------------------- /docs/audits/Celestia Q2 2025 _ Hana Library Audit Report_Final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celestiaorg/hana/HEAD/docs/audits/Celestia Q2 2025 _ Hana Library Audit Report_Final.pdf --------------------------------------------------------------------------------