Slowlyy: A slower (safer) crypto wallet

Abstract

Slowlyy is a crypto wallet designed to mitigate the risks of wallet-draining attacks by introducing a mandatory 3–30 day transaction delay. By combining a dual-source date verification system with client-side enforcement and cryptographic validation, Slowlyy provides users a critical time window to detect unauthorized access before any crypto leaves their wallet.

Problem Statement

For newcomers to crypto, using a personal wallet on mobile phones, laptops, and desktop computers—known as self-custody—can be risky. Today’s hackers can gain remote and unauthorized access to devices through malware or other methods, making it possible to steal funds without being noticed. For those holding small amounts of crypto, a hardware wallet feels like too much—and an exchange doesn’t feel right either.

Solution: Slowlyy

A safer self-custody wallet for mobile phones, laptops, and desktop computers. Slowlyy adds a 3–30 day delay to every transaction, giving time to spot problems and stop theft—without giving up control. Just added time for safety and peace of mind.

Security Architecture

Dual Time Verification

To prevent clock tampering or spoofed timestamps, Slowlyy uses a dual-source date confirmation system:

Both APIs must agree on the date for any transaction check to pass.

Local Time Ignored

Slowlyy does not trust the device’s internal clock. All date validations happen against the above external sources. This removes the risk of attackers spoofing local time to prematurely release funds.

Tamper-Resistant Logic

Developer Integration Flow

  1. On transaction initiation, the app stores the timestamp and unlock_date = timestamp + 30 days.
  2. On app open or send attempt:
    • Request UTC date from WorldTimeAPI
    • Request /date from Slowlyy API
    • Compare both dates
    • Verify HMAC signature
  3. If both sources match, signature is valid, and current date >= unlock_date, then transaction can be broadcast to the blockchain.

Security Assumptions

Benefits

Conclusion

Slowlyy is built on a simple principle: slowing down crypto can actually make it safer. With a minimal but powerful dual-verification time lock, users gain crucial time to act in emergencies. This wallet architecture redefines digital self-custody security by prioritizing control and recovery over speed.

Appendix

WorldTimeAPI

Sample HMAC API response:

{
  "date": "2025-08-01",
  "signature": "f0e2b7234f1f..."
}

Signature generated using:

HMAC-SHA256(date + secret)