暗号資産ウォレット(Crypto Wallet)

秘密鍵を保存し、トランザクションの署名、残高管理、ブロックチェーンとの相互作用を可能にするソフトウェアまたはハードウェア。

ウォレットの主な役割はトランザクションの署名(ECDSA)です。ノンカストディアル(自分で鍵を管理)とカストディアル(取引所が鍵を管理)の違いが重要です。

        graph LR
  Center["暗号資産ウォレット(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;

      

🧒 5歳でもわかるように説明

ブロックチェーンを透明な貸金庫が並んだ巨大な壁だと想像してください。中身は誰でも見えますが、自分の金庫を開けられるのは正しい鍵を持っている人だけです。暗号資産ウォレットは、お金を入れる財布ではなく、その鍵を安全に保管し、金庫を開けるための「デジタルキーホルダー」です。

🤓 Expert Deep Dive

現代のウォレットはBIP-32/39規格に基づくHD(階層的決定性)ウォレットです。シードフレーズがすべての鍵を生成します。ホットウォレットはオンラインで便利ですがハッキングの危険があります。コールドウォレット(ハードウェア)は鍵を完全にオフラインで管理します。ERC-4337(アカウント抽象化)はスマートコントラクトウォレットを実現します。

❓ よくある質問

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.

📚 出典