seed-phrases

Kurtarma ifadesi olarak da bilinen bir tohum ifadesi, bir kripto para cüzdanı oluşturmak ve kurtarmak için kullanılan 12-24 kelimelik bir anımsatıcıdır.

Tohum ifadeleri, bir cüzdanın özel anahtarının insan tarafından okunabilir biçimidir ve bir yedekleme mekanizması sağlar. Farklı cüzdanlar arasında uyumluluk sağlayan bir BIP-39 standardı kullanılarak oluşturulurlar. Bu ifade, kullanıcıların cihazlarını veya cüzdan erişimlerini kaybetmeleri durumunda fonlarına yeniden erişmelerini sağlar.

Tohum ifadeleri, cüzdan kurtarma için çok önemlidir. Cüzdan yazılımı tarafından oluşturulan rastgele bir sayıdan türetilirler. Bu sayı daha sonra önceden tanımlanmış bir kelime listesinden bir dizi kelimeye dönüştürülür. Bu kelimelerin sırası kritiktir, çünkü özel anahtarları ve dolayısıyla ilişkili kripto para biriminin sahipliğini belirler.

Tohum ifadenizi korumak çok önemlidir. Ona erişimi olan herkes fonlarınızı kontrol edebilir. Dijital cihazlardan ve meraklı gözlerden uzakta, güvenli bir şekilde çevrimdışı olarak saklanmalıdır. Gelişmiş güvenlik için bir donanım cüzdanı kullanmayı düşünün.

        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;

      

🧠 Bilgi testi

1 / 3

🧒 5 yaşındaki gibi açıkla

📝 Your [seed phrase](/tr/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.

🔗 İlgili terimler

Ön koşullar:
Daha fazla bilgi:

📚 Kaynaklar