Skip to content

Instantly share code, notes, and snippets.

@2color
Last active May 22, 2024 11:31
Show Gist options
  • Save 2color/d3a45edb67da0094722be16a7630bc69 to your computer and use it in GitHub Desktop.
Save 2color/d3a45edb67da0094722be16a7630bc69 to your computer and use it in GitHub Desktop.

Libp2p Peer IDs

Peer ID Spec Multihash spec Multicodec table

Similar exploration to the one in this document

Decoding a Peer ID

According to the Peer ID spec:

If it starts with 1 or Qm, it's a bare base58btc encoded multihash. Decode it according to the base58btc algorithm.

For example, QmQCU2EcMqAqQPR2i9bChDtGNJchTbq5TbXJJ16u19uLTa is a base58btc encoded multihash.

The multihash has the following format:

<varint hash function code><varint digest size in bytes><hash function output>

QmQCU2EcMqAqQPR2i9bChDtGNJchTbq5TbXJJ16u19uLTa decodes to code 18 (0x12 in hex) which is sha2-256, size 32 (bytes) of the hash


Another example, 12D3KooWRBy97UB99e3J6hiPesre1MZeuNQvfan4gBziswrRJsNK is a base58btc encoded multihash.

Somewhat confusing is that this is an identity multihash, i.e. it's not hashed.

12D3KooWRBy97UB99e3J6hiPesre1MZeuNQvfan4gBziswrRJsNK decodes to code 0 (0x00 in hex) which is identity and has the size 36 bytes

Open questions

  • How do we actually determine that it's an Ed25519 key?
    • The js-libp2p codebase determines based on the first three characters: 12D.
    • The base58btc characters 12D map to 2 bytes, 0, 70
  • Why is the Ed25519 key length 36 bytes and not 32 bytes? The peerID spec says it follows the Ed25519 standard which says the length is 32 bytes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment