seed-phrases
시드 구문(복구 구문이라고도 함)은 암호화폐 지갑을 생성하고 복구하는 데 사용되는 12-24단어의 니모닉입니다.
시드 구문은 지갑의 개인 키를 사람이 읽을 수 있는 형태로 제공하여 백업 메커니즘을 제공합니다. BIP-39 표준을 사용하여 생성되어 다양한 지갑 간의 호환성을 보장합니다. 이 구문을 사용하면 사용자가 장치 또는 지갑 액세스를 잃어버린 경우 자금에 다시 액세스할 수 있습니다.
시드 구문은 지갑 복구에 매우 중요합니다. 지갑 소프트웨어에서 생성된 난수에서 파생됩니다. 이 숫자는 미리 정의된 단어 목록에서 일련의 단어로 변환됩니다. 이러한 단어의 순서는 개인 키를 결정하고 결과적으로 관련 암호화폐의 소유권을 결정하므로 중요합니다.
시드 구문을 보호하는 것이 가장 중요합니다. 이에 접근할 수 있는 사람은 누구든지 귀하의 자금을 제어할 수 있습니다. 디지털 장치 및 호기심 많은 눈으로부터 멀리 떨어진 오프라인에서 안전하게 보관해야 합니다. 향상된 보안을 위해 하드웨어 지갑 사용을 고려하십시오.
graph LR
Center["seed-phrases"]:::main
Pre_private_keys["private-keys"]:::pre --> Center
click Pre_private_keys "/terms/private-keys"
Pre_hashing["hashing"]:::pre --> Center
click Pre_hashing "/terms/hashing"
Center --> Child_private_key_management["private-key-management"]:::child
click Child_private_key_management "/terms/private-key-management"
Rel_public_keys["public-keys"]:::related -.-> Center
click Rel_public_keys "/terms/public-keys"
Rel_wallet_address["wallet-address"]:::related -.-> Center
click Rel_wallet_address "/terms/wallet-address"
Rel_hardware_wallets["hardware-wallets"]:::related -.-> Center
click Rel_hardware_wallets "/terms/hardware-wallets"
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살도 이해할 수 있게 설명
📝 Your [seed phrase](/ko/terms/seed-phrase) is the master key to your digital bank. Write it on paper, hide it in a safe, and never type it into any website or app unless you are recovering your funds.
🤓 Expert Deep Dive
## Technical Deep Dive: Mnemonic Derivation
### The BIP-39 Lifecycle
1. Entropy Generation: A random number generator creates 128/256 bits of data.
2. Checksum: Append high-bits of SHA-256 hash to the entropy.
3. Mnemonic Mapping: Convert bits to words using the 2048-word dictionary.
4. Seed Derivation: The mnemonic (plus an optional passphrase) is hashed 2048 times using PBKDF2 to produce a binary seed.
### Security Best Practices
- Physical Backup: Metal seed plates are preferred over paper for fire/water resistance.
- Passphrase (The 13th/25th Word): An extra layer of security that creates a completely different wallet, protecting against physical theft of the seed phrase alone.
- Shamir's Secret Sharing (SLIP-0039): Splitting the seed phrase into multiple 'shares', where N out of M are required to recover the wallet.