Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/second-state/SewUp
A library to help you sew up your Ethereum project with Rust and just like develop in a common backend
https://github.com/second-state/SewUp
Last synced: 10 days ago
JSON representation
A library to help you sew up your Ethereum project with Rust and just like develop in a common backend
- Host: GitHub
- URL: https://github.com/second-state/SewUp
- Owner: second-state
- License: apache-2.0
- Created: 2021-05-10T12:25:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-11T03:57:03.000Z (about 1 year ago)
- Last Synced: 2024-10-07T00:28:40.937Z (about 1 month ago)
- Language: Rust
- Size: 45.9 MB
- Stars: 52
- Watchers: 4
- Forks: 6
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blockchain-rust - SewUp
README
# SewUp
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/second-state/SewUp/CI)
[![Generic badge](https://img.shields.io/badge/sewup-0.1.14-green.svg)](https://crates.io/crates/sewup)
[![Generic badge](https://img.shields.io/badge/SewUpDoc-main-green.svg)](https://second-state.github.io/SewUp/sewup/)
[![Generic badge](https://img.shields.io/badge/sewup_derive-0.1.14-green.svg)](https://crates.io/crates/sewup-derive)
[![Generic badge](https://img.shields.io/badge/SewUpDeriveDoc-main-green.svg)](https://second-state.github.io/SewUp/sewup_derive/)
[![Generic badge](https://img.shields.io/badge/cargo_sewup-0.1.14-green.svg)](https://crates.io/crates/cargo-sewup)**S**econdstate **EW**asm **U**tility **P**rogram, a library helps you sew up your Ethereum project with Rust and just like development in a common backend.
Sewup is a blockchain Rust contract framwork base on ethereum webassembly, and suitable for any ethereum wabassembly blockchain.
If you have question about Rust contract framework, and about the different between these, you can check out this wiki page of [contract framework](https://github.com/second-state/SewUp/wiki/Contract-Framework).
There is an [issue](https://github.com/second-state/SewUp/issues/116) on building document on Doc.rs, please kindly use the [document](https://second-state.github.io/SewUp/sewup/) of master instead.
Furthermore, there is also [wiki site](https://github.com/second-state/SewUp/wiki) helps you work with sewup, once you got problems or confusing you can learn more on the wiki.## Slides & Demo
| Date | Event | Version | Slide | Video | Material |
|------------|-------------------------|---------|--------------|-------------------------------------------------------|---------------------------|
| 2021/12/03 | ParaState Hackathon IV | 0.1.9 | [hackthon4] | | [todo app] |
| 2021/11/12 | ParaState Hackathon III | 0.1.7 | [hackthon3] | | [utility token] |
| 2021/11/3 | ParaState Hackathon II | 0.1.6 | [hackthon2] | [record2] | [material][h2], [hangman] |
| 2021/10/30 | COSCon'21 | 0.1.4 | [coscon21] | | |
| 2021/10/26 | ParaState Hackathon | 0.1.4 | [hackthon1] | [record1] | [material][h1] |
| 2021/09/07 | Version 0.1 release | 0.1.0 | | [Hello], [KV], [RDB], [ERC-20], [ERC-721], [ERC-1155] | |
| 2021/06/19 | Rust meetup (Beijing) | 0.0.1 | [prerelease] | | |[coscon21]: https://slides.com/yanganto/coscon21-writing-ewasm-contract-in-rust
[hackthon1]: https://slides.com/yanganto/ethereum-wasm-in-rust
[hackthon2]: https://slides.com/yanganto/key-value-storage-with-sewup
[hackthon3]: https://slides.com/yanganto/writing-ethereum-webassembly-in-rust-iii-utility-token-with-sewup
[hackthon4]: https://slides.com/yanganto/writing-ethereum-webassembly-in-rust-iv-todo-app-with-sewup
[record1]: https://www.youtube.com/watch?v=DaVg5WCM2LI
[record2]: https://youtu.be/XWeOALFPJQ0
[prerelease]: https://slides.com/yanganto/sewup
[Hello]: https://youtu.be/kbe3uuxkBNQ
[KV]: https://youtu.be/LUpYIFGG36s
[RDB]: https://youtu.be/sJLOcJRheIw
[ERC-20]: https://youtu.be/sVGEuNBY1dc
[ERC-721]: https://youtu.be/ivZIqnhOAfA
[ERC-1155]: https://youtu.be/BsbAFT5rNGw
[h1]: https://docs.google.com/document/d/1CTh3whx7jRtO4UQLqkp6S8w0fthVVHaDlhgfkAdDp8Q/edit?usp=sharing
[h2]: https://docs.google.com/document/d/1qNYOFK1uCZauAJ0ghBc_ykI4RDYncdB0hiQULj5kNow/edit?usp=sharing
[hangman]: https://github.com/second-state/sewup-kv-example
[utility token]: https://github.com/second-state/sewup-token-example
[todo app]: https://github.com/second-state/sewup-rdb-example## Usage
Add `sewup` with the features and the `sewup-derive` into Cargo.toml, and setup other sections
as following, then you are ready to build contract with sewup.Features list (should select none or one of following)
- kv - for writing contract as key value database withb bucket partition
- rdb - for writing contract as relational database
- token - for writing ERC-20, ERC-721, ERC-1155 tokens
- single-bucket(working in process) - for the storage without bucket partitionBeside, we suggest you using `anyhow` to handle your result and error, but not limited to,
if you want to use other error crate please checkout `#[ewasm_main(rusty)]` and learn more.
If you want to write a contract return different type of data base on different handlers,
please checkout `#[ewasm_main(auto)]` and `EwasmAny` or the example of rdb feature to learn
how to write a flexible smart contract with ewasm.### Develop
It is easy to setup your sewup project with cargo-sewup with following commands.
- `cargo install cargo-sewup`
- `cargo sewup init`
You can use `-m ` option to initialize different type of sewup project,
and you can learn more about the project configure
from the doc of [ewasm\_main!](https://second-state.github.io/SewUp/sewup_derive/attr.ewasm_main.html)
and the wiki page of [Deploy Guide](https://github.com/second-state/SewUp/wiki/Develop-Guide).### Interact
There are so many clients can interact with contract.For ERC tokens, we provide `web3js` examples in [wiki page](https://github.com/second-state/SewUp/wiki/ERC-Testing).
The example of clients interacting with contract with [kv](https://github.com/second-state/SewUp/blob/main/examples/kv-contract/src/client.rs) or [rdb](https://github.com/second-state/SewUp/blob/main/examples/rdb-contract/src/client.rs) features.
You can in the example projects for kv and rdb, then `Cargo run` to interact with the contract after modified the contract address.### Testing
Run `cargo build --release --target=wasm32-unknown-unknown`, then the contract will build in `target/wasm32-unknown-unknown/release/*.wasm`
Besides, you can run deploy the ewasm contract on [WasmEdge](https://github.com/WasmEdge/WasmEdge) and run tests on it with `cargo test`,
furthermore the constructor will also run when the contract deploying on [WasmEdge](https://github.com/WasmEdge/WasmEdge).
If you want to learn more details about the testing flow, please check out [Test the contract](https://github.com/second-state/SewUp/wiki/Develop-Guide#test-the-contract) section of develop guide wiki page.### Debugging
Furthermore, you can debug your ewasm contract with debug macro `sewup::ewasm_dbg!`.
Besides, it easy to know the exactly detail of storage with `ewasm_storage_debug!`.
And all these debug method should run test of the contract with message output by `cargo test -- --nocapture`.
To learn more about the usage, you check out the examples in the [example](./examples/) folder.### Deployment
Once you want to deploy your contract to any network which support Ewasm by sweup command line tool, please read the [Deploy Guide](https://github.com/second-state/SewUp/wiki/Deploy-Guide) wiki page.## SewUp Development
There are two projects and several examples in the workspace, the contract project should build with target
`wasm32-unknown-unknown` and the flag `-C link-arg=--export-table`.
You can run `cargo test` in each example folder to check on the test your modification.It is easy to participate with [help want issues](https://github.com/second-state/SewUp/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) and the [good first issues](https://github.com/second-state/SewUp/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22).
Less but not least, please feel free to open any issue on this project.