Production data flow
Your application orchestrates these writes before users submit operations, keeping prepare reliable.SDK method × typical source
What runs automatically on execute
After a successful operation, the SDK updates local state without manual calls:- mark spent records as consumed
- insert output and change records
- refresh pool commitment snapshot
- record delivery metadata when configured
Stellar preset examples
For the shipped Stellar preset, production wiring typically looks like:Minimal Stellar production checklist
- Asset catalog synced from backend before showing balances
- Pool Merkle state kept current via scanner or post-tx sync
- Wallet private-address and scalar created through wallet UX, not hardcoded
- Registry status fetched before registered-recipient transfers
- Deliveries indexer populates
upsertPrivateRecordsfor incoming notes - Environment variables set for pool, registry, application ID, audit public key
Related
Domain model
What each state entity represents.
Operations
Which entities each operation consumes.
Deposit how-to
Fixture seed state example.
State integration
Adapter libraries for persisting SDK state.