COMEBACKHERE Protocol — The Stripe for Stellar. Founded and built by dreamgene · Founder & CEO
Tooling, deployment scripts, ABIs, and integration resources for COMEBACKHERE Protocol.
abis/: committed ABI metadata consumed bycomebackhere-backendscripts/: deployment, verification, and ABI generation toolingdocs/: developer guides and deployment documentationtests/: workspace-level integration tests
Requires Docker and Docker Compose.
docker-compose up -dThis starts:
- Soroban Node: Stellar quickstart (Horizon at
http://localhost:8000) - Redis: Event consumer backing service (port 6379)
Check service health:
docker-compose ps
curl http://localhost:8000/healthcp .env.local.example .env.local
# Edit .env.local with your test keys
scripts/deploy_local.shdocker-compose down
# To also remove persistent data:
docker-compose down -vCommitted ABI metadata in abis/ is generated from contract sources. The contract sources live in COMEBACKHERE-contracts/. Before opening a PR that changes contract behavior, refresh snapshots:
make update-abi-snapshots
# or
just snapshotConfirm the tree is clean:
make check-abi-snapshots
# or
just check-snapshot
git diff --exit-code abis/cp .env.testnet.example .env.testnet
scripts/deploy_testnet.shAfter deployment, contract IDs are exported to artifacts/addresses.json (gitignored; environment-specific). See artifacts/addresses.json.example for the schema.
Mainnet deployment is intentionally manual and must go through multi-sig governance.
See docs/MAINNET_DEPLOYMENT.md for the live deployment checklist and signing ceremony.
MIT