mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 15:13:56 +02:00

- Split `verify-era-proof-attestation` into modular subcomponents for maintainability. - Moved client, proof handling, and core types into dedicated modules.
9 lines
170 B
Rust
9 lines
170 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright (c) 2023-2025 Matter Labs
|
|
|
|
mod fetcher;
|
|
mod parsing;
|
|
mod types;
|
|
|
|
pub use fetcher::ProofFetcher;
|
|
pub use types::Proof;
|