https://github.com/rggh/bond
Smat contract experiments
https://github.com/rggh/bond
rust smart-contract soroban stellar
Last synced: 7 months ago
JSON representation
Smat contract experiments
- Host: GitHub
- URL: https://github.com/rggh/bond
- Owner: RGGH
- Created: 2025-01-07T15:16:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-07T16:28:52.000Z (over 1 year ago)
- Last Synced: 2025-08-30T16:29:45.789Z (9 months ago)
- Topics: rust, smart-contract, soroban, stellar
- Language: Rust
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Soroban Project
## Project Structure
This repository uses the recommended structure for a Soroban project:
```text
.
├── contracts
│ └── hello_world
│ ├── src
│ │ ├── lib.rs
│ │ └── test.rs
│ └── Cargo.toml
├── Cargo.toml
└── README.md
```
- New Soroban contracts can be put in `contracts`, each in their own directory. There is already a `hello_world` contract in there to get you started.
- If you initialized this project with any other example contracts via `--with-example`, those contracts will be in the `contracts` directory as well.
- Contracts should have their own `Cargo.toml` files that rely on the top-level `Cargo.toml` workspace for their dependencies.
- Frontend libraries can be added to the top-level directory as well. If you initialized this project with a frontend template via `--frontend-template` you will have those files already included.