This repository uses the recommended structure for a Soroban project:
.
├── contracts
│ └── hello_world
│ ├── src
│ │ ├── lib.rs
│ │ └── test.rs
│ └── Cargo.toml
├── Cargo.toml
└── README.md
contracts
, each in their own directory. There is already a hello_world
contract in there to get you started.--with-example
, those contracts will be in the contracts
directory as well.Cargo.toml
files that rely on the top-level Cargo.toml
workspace for their dependencies.--frontend-template
you will have those files already included.