Portefeuille Crypto (Wallet)
Un programme logiciel ou appareil physique qui stocke des clés privées, permettant de signer des transactions et d'interagir avec la blockchain.
La fonction principale d'un wallet est la signature de transactions (ECDSA). Différence majeure : non-custodial (vous possédez les clés) vs custodial (une bourse possède les clés).
graph LR
Center["Portefeuille Crypto (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;
🧒 Explique-moi comme si j'avais 5 ans
Imaginez la [blockchain](/fr/terms/blockchain) comme un mur géant de coffres-forts transparents. Tout le monde voit à l'intérieur, mais vous seul avez la clé du vôtre. Le [wallet](/fr/terms/wallet) crypto n'est pas un porte-monnaie, c'est votre trousseau de clés numérique qui ouvre le coffre pour envoyer des fonds.
🤓 Expert Deep Dive
Les wallets modernes sont hiérarchiques déterministes (HD) via BIP-32/39. Une phrase de récupération (seed phrase) génère toutes les clés. Les Hot Wallets sont en ligne (risqués), les Cold Wallets (matériels) gardent les clés hors ligne. L'Account Abstraction (ERC-4337) introduit les [smart contract wallets](/fr/terms/smart-contract-wallets).
❓ Questions fréquentes
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.