Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cogoo/soroban-hello-world
Experimenting with Stellar
https://github.com/cogoo/soroban-hello-world
Last synced: 24 days ago
JSON representation
Experimenting with Stellar
- Host: GitHub
- URL: https://github.com/cogoo/soroban-hello-world
- Owner: cogoo
- Created: 2024-04-17T20:16:43.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-17T20:17:53.000Z (7 months ago)
- Last Synced: 2024-04-17T21:44:21.292Z (7 months ago)
- Language: Rust
- Size: 11.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.