1. What Are Cookies
Cookies are small text files stored on your device by your browser when you visit a website. We also use localStorage and sessionStorage — browser storage mechanisms that work similarly but don't get sent to the server with every request. Together, we refer to these as "storage".
2. What We Use
We use three categories of storage:
- — Required for the Service to function. Cannot be disabled.
- — Remembers your preferences and cached data to improve your experience.
- — Helps us understand how the platform is used so we can improve it. Anonymous and aggregated.
3. Cookie & Storage Reference
| Name | Type | Storage | Purpose | Expires |
|---|---|---|---|---|
deqrypto_token |
localStorage | JWT authentication token — keeps you signed in | 7 days | |
deqrypto_user |
localStorage | Cached user profile (email, tier) — avoids repeated API calls | Session | |
deqrypto_tier_features |
localStorage | Cached tier capability flags — controls feature visibility | 1 hour | |
deqrypto_last_balance |
localStorage | Last known portfolio balance — shown in header without an API call | Session | |
deqrypto_buy_prices |
localStorage | User-entered buy prices for P&L calculations | Persistent | |
| Sentry session | Cookie | Error tracking — records JavaScript errors to help us fix bugs | Session |
4. Third-Party Storage
We use Sentry for error monitoring. Sentry may set cookies to track error sessions. Sentry's data processing is governed by their own privacy policy. We do not use Google Analytics, Facebook Pixel, or any advertising-related tracking.
5. Managing Cookies
You can control cookies through your browser settings. Note that disabling essential storage (localStorage) will prevent you from staying signed in and will break core platform functionality.
To clear DeQrypto storage manually, open your browser's developer tools → Application → Local Storage → select the DeQrypto origin → clear all entries.
Browser-specific cookie management guides:
- Chrome: Settings → Privacy and security → Cookies and other site data
- Firefox: Preferences → Privacy & Security → Cookies and Site Data
- Safari: Preferences → Privacy → Manage Website Data
6. Changes to This Policy
We may update this Cookie Policy as the platform evolves. Material changes will be communicated via the platform or by email.
Questions about cookies?
Contact us at [email protected]
