snowbridge_ethereum/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
3#![cfg_attr(not(feature = "std"), no_std)]
4
5pub mod mpt;
6pub use alloy_consensus::{Receipt, ReceiptEnvelope, ReceiptWithBloom, RlpDecodableReceipt};
7pub use alloy_primitives::Log;
8pub use alloy_rlp::{Decodable, Encodable};