ウォレットアドレス

一意の口座番号。

翻訳待ちのコンテンツです。英語版を表示しています。

## Technical Deep Dive: Address Formats and Evolution

Blockchain addresses have evolved to improve security and efficiency:

### Bitcoin Specifics
- Legacy (P2PKH): Starts with 1. (e.g., 1A1zP1eP5...)
- Pay-to-Script-Hash (P2SH): Starts with 3. Used for multi-sig. (e.g., 3J98t1Wp...)
- SegWit (Bech32): Starts with bc1q. Cheaper fees, more efficient. (e.g., bc1qar0s...)
- Taproot (Bech32m): Starts with bc1p. Improved privacy and smart contract capabilities.

### Ethereum Specifics
- Hexadecimal (ERC-20): Starts with 0x. Case-insensitive but uses checksums via capitalization (EIP-55).

### Security Note
Always verify the first and last characters of an address before sending funds. Malware can sometimes swap addresses in your clipboard (Clipboard Hijacking).

        graph LR
  Center["ウォレットアドレス"]:::main
  Pre_public_keys["public-keys"]:::pre --> Center
  click Pre_public_keys "/terms/public-keys"
  Pre_hashing["hashing"]:::pre --> Center
  click Pre_hashing "/terms/hashing"
  Rel_private_keys["private-keys"]:::related -.-> Center
  click Rel_private_keys "/terms/private-keys"
  Rel_crypto_wallet["crypto-wallet"]:::related -.-> Center
  click Rel_crypto_wallet "/terms/crypto-wallet"
  Rel_decentralized_identifier_did["decentralized-identifier-did"]:::related -.-> Center
  click Rel_decentralized_identifier_did "/terms/decentralized-identifier-did"
  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歳でもわかるように説明

💳 Think of it as your digital mailbox number. Anyone can drop money in, but only you have the key to take it out.

🤓 Expert Deep Dive

## Technical Deep Dive: Address Formats and Evolution

Blockchain addresses have evolved to improve security and efficiency:

### Bitcoin Specifics
- Legacy (P2PKH): Starts with 1. (e.g., 1A1zP1eP5...)
- Pay-to-Script-Hash (P2SH): Starts with 3. Used for multi-sig. (e.g., 3J98t1Wp...)
- SegWit (Bech32): Starts with bc1q. Cheaper fees, more efficient. (e.g., bc1qar0s...)
- Taproot (Bech32m): Starts with bc1p. Improved privacy and smart contract capabilities.

### Ethereum Specifics
- Hexadecimal (ERC-20): Starts with 0x. Case-insensitive but uses checksums via capitalization (EIP-55).

### Security Note
Always verify the first and last characters of an address before sending funds. Malware can sometimes swap addresses in your clipboard (Clipboard Hijacking).

🔗 関連用語

前提知識:

📚 出典