암호화폐 지갑 (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(Hierarchical Deterministic) 지갑입니다. 시드 구문(Seed Phrase)이 모든 키를 생성합니다. 핫 지갑은 온라인에 연결되어 해킹에 취약하며, 콜드 지갑(하드웨어)은 키를 오프라인으로 유지합니다. 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.

📚 출처