An invoice-based escrow protocol for freelancers, built on Stellar using Soroban smart contracts.
StarInvoice lets freelancers create on-chain invoices and receive payment through a trustless escrow flow. The client funds the invoice, the freelancer marks work as delivered, and funds are released upon approval — no intermediaries needed.
This project is intentionally minimal. The create_invoice function is implemented. All other escrow functions are stubbed with TODO comments and open GitHub issues for contributors to pick up.
create_invoice → fund_invoice → mark_delivered → approve_payment → release_payment
| Function | Status |
|---|---|
create_invoice |
✅ Implemented |
fund_invoice |
🚧 TODO |
mark_delivered |
🚧 TODO |
approve_payment |
🚧 TODO |
release_payment |
🚧 TODO |
contracts/
invoice/
src/
lib.rs # Contract entry point and function definitions
storage.rs # Invoice data structures and on-chain storage helpers
events.rs # Contract event emitters
- Rust (stable)
- Soroban CLI
cargo install --locked soroban-clicargo build --target wasm32-unknown-unknown --releasecargo testSee CONTRIBUTING.md for how to get involved.
MIT