create-stablecoin-app
v0.1.2
Published
Scaffold a new Stablecoin Roadmap project
Maintainers
Readme
create-stablecoin-app
Scaffold a new Stablecoin project from public templates with the SDK, CLI, and a production-shaped config already wired in.
Use
npx create-stablecoin-app my-appGenerated Files
stablecoin.config.jsonfor template, network, currency, and compliance settings.env.examplewith the public environment variable contractpackage.jsonwired to the SDK and CLIREADME.mdinside the scaffolded project with local next steps
Next Steps
cd my-app
cp .env.example .env
npm install
npm run sandbox
npm run deployGenerated Environment Variables
| Variable | Description |
| --- | --- |
| STABLECOIN_API_KEY | Bearer token for the SDK and CLI. Treat this like a secret. |
| STABLECOIN_ENV | Environment override for sandbox or production flows. |
| STABLECOIN_BASE_URL | Optional API base URL override for local or preview environments. |
Public Docs
Security Notes
- Keep
STABLECOIN_API_KEYout of source control and CI logs. - Start in sandbox before using production credentials or live payment flows.
- Review generated contracts and deployment approvals before shipping to mainnet.
- Use least-privilege API keys and rotate them when team membership changes.
