-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add docs for
starknet-contract
- Loading branch information
1 parent
66ac385
commit 006fbca
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
//! Library for deploying and interacting with Starknet contracts. | ||
//! | ||
//! Currently, this crate only provides a single type [`ContractFactory`] for deploying contracts | ||
//! using the Universal Deployer Contract. | ||
//! | ||
//! In the future, features like ABI-based contract binding generation will be added to allow type- | ||
//! safe interaction with Starknet smart contracts. | ||
#![deny(missing_docs)] | ||
|
||
mod factory; | ||
pub use factory::ContractFactory; | ||
pub use factory::{ContractFactory, DeploymentV1, DeploymentV3}; |