stylus_core/
lib.rs

1// Copyright 2024-2025, Offchain Labs, Inc.
2// For licensing, see https://github.com/OffchainLabs/stylus-sdk-rs/blob/main/licenses/COPYRIGHT.md
3#![no_std]
4
5//! Defines host environment methods Stylus SDK contracts have access to.
6
7extern crate alloc;
8
9pub mod calls;
10pub mod host;
11pub mod sol;
12pub mod storage;
13
14pub use calls::*;
15pub use host::*;
16pub use sol::*;
17pub use storage::TopLevelStorage;