-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1cbb1a0
commit e864db0
Showing
13 changed files
with
280 additions
and
322 deletions.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 +1 @@ | ||
8f20288b65636659d758493805f798bb623d1a8fc83eb7dfcfefb3b39e3f0f7d | ||
f0979039df1471f9f7ecc0b55bbc49f57f26e7035fd42fba97d23ad024df4df4 |
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,5 +1,7 @@ | ||
[package] | ||
name = "smartdeploy" | ||
description = "A crate for managing and deploying smart contracts on the Soroban blockchain." | ||
documentation = "https://docs.rs/smartdeploy" | ||
version = "0.0.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# SmartDeploy | ||
|
||
`smartdeploy` is a Rust crate for managing and deploying smart contracts on the Soroban blockchain. It provides an easy-to-use interface for developers to interact with the blockchain and deploy their smart contracts without dealing with low-level implementation details. | ||
|
||
## Features | ||
|
||
- Register contract names for publishing | ||
- Publish contract binaries with version management | ||
- Fetch contract binaries and metadata | ||
- Deploy published contracts to the blockchain | ||
- Retrieve deployment statistics for contracts | ||
- Manage contract ownership and redeployment | ||
|
||
## Usage | ||
|
||
Add `smartdeploy` as a dependency in your project's `Cargo.toml` file: | ||
|
||
```toml | ||
[dependencies] | ||
smartdeploy = "0.0.0" |
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
Oops, something went wrong.