Krypto-Wallet

Ein Softwareprogramm oder Hardwaregerät, das private Schlüssel speichert und es Nutzern ermöglicht, Transaktionen zu signieren und mit Blockchains zu interagieren.

Die Hauptaufgabe der Wallet ist das Signieren von Transaktionen (ECDSA). Unterschieden wird zwischen non-custodial (Nutzer hält Schlüssel) und custodial (Dritte halten Schlüssel).

        graph LR
  Center["Krypto-Wallet"]:::main
  Rel_private_keys["private-keys"]:::related -.-> Center
  click Rel_private_keys "/terms/private-keys"
  Rel_custodial_wallet["custodial-wallet"]:::related -.-> Center
  click Rel_custodial_wallet "/terms/custodial-wallet"
  Rel_wallet["wallet"]:::related -.-> Center
  click Rel_wallet "/terms/wallet"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 Erkläre es wie einem 5-Jährigen

Stell dir die [Blockchain](/de/terms/blockchain) als eine riesige Wand aus transparenten Schließfächern vor. Jeder kann hineinsehen, aber nur wer den passenden Schlüssel hat, kann sein Fach öffnen. Die Krypto-[Wallet](/de/terms/wallet) ist nicht wie ein Geldbeutel, sondern wie dein digitaler Schlüsselbund, der den Schlüssel sicher aufbewahrt.

🤓 Expert Deep Dive

Moderne Wallets sind Hierarchical Deterministic (HD) basierend auf BIP-32/39/44. Eine Seed-Phrase generiert alle Schlüssel. Hot Wallets sind online und anfällig für Hacks. Cold Wallets (Hardware) speichern Schlüssel offline. Account Abstraction (ERC-4337) ermöglicht [Smart-Contract-Wallets](/de/terms/smart-contract-wallets) mit Social Recovery.

❓ Häufig gestellte Fragen

Where are my cryptocurrencies actually stored?

Your cryptocurrencies are recorded on the public blockchain ledger. Your wallet only stores the private key required to move them.

What happens if I lose my hardware wallet?

If you lose the physical device, your funds are safe as long as you still have your 12- or 24-word seed phrase backed up. You can buy a new device, enter the seed phrase, and your keys will be regenerated. If you lose the seed phrase, the funds are lost forever.

What is the difference between a hot wallet and a cold wallet?

A hot wallet is connected to the internet (like a browser extension or mobile app), making it convenient but vulnerable to hacks. A cold wallet (like a USB hardware wallet) keeps your private keys completely offline, making it much more secure.

📚 Quellen