This is the Heliobond backend — a Stellar indexer, REST API, and the oracle that scores projects on credit quality and green impact. TypeScript on Express, run with bun. Thanks for helping out.
Browse open issues. Issues tagged good first issue are scoped for newcomers; help wanted are ready for anyone. Each issue has scope, acceptance criteria, and file pointers. Comment to claim it before you start.
bun install
bun run dev # start the API with the hourly cron
bun run test # jest suite
bun run build # tsc- Fork and branch from
main(feat/…,fix/…,test/…). - Make your change. Keep it scoped to one issue.
- Run the quality gate locally before pushing:
bun run build # must type-check bun run test # all tests must pass
- Open a PR with
Closes #<issue>. CI runsbun install,bun run build, andbun run test— all must be green.
- Type-safe —
bun run build(tsc) must pass; noanyescape hatches without a reason. - Tested — new routes and logic need tests. We use jest + supertest; see
src/__tests__/. - Validated input — validate request bodies and params at the boundary; return structured JSON errors, never raw stack traces.
- No secrets in code — keys and RPC URLs come from the environment (
.env), never committed.
Bugs and ideas: open an issue. Security problems: see SECURITY.md — report privately, not in a public issue.
By contributing you agree your work is licensed under Apache-2.0, and you agree to the Code of Conduct.