https://github.com/stackman27/soroban-opt-oracle
https://github.com/stackman27/soroban-opt-oracle
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stackman27/soroban-opt-oracle
- Owner: stackman27
- Created: 2024-12-30T23:07:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-30T23:19:32.000Z (over 1 year ago)
- Last Synced: 2024-12-31T00:22:40.370Z (over 1 year ago)
- Language: Rust
- Size: 15.6 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.