stylus_sdk/deploy/mod.rs
1// Copyright 2023-2024, Offchain Labs, Inc.
2// For licensing, see https://github.com/OffchainLabs/stylus-sdk-rs/blob/main/licenses/COPYRIGHT.md
3
4//! Deploy other contracts.
5//!
6//! Currently this module only supports low-level contract creation via [`RawDeploy`],
7//! but work is being done to introduce high-level deployment patterns.
8
9pub use raw::RawDeploy;
10
11mod raw;