Skip to content

Instantly share code, notes, and snippets.

@2color
Created February 21, 2025 09:52
Show Gist options
  • Save 2color/133b5a7bb6c3b40d89e7413bff5d992e to your computer and use it in GitHub Desktop.
Save 2color/133b5a7bb6c3b40d89e7413bff5d992e to your computer and use it in GitHub Desktop.
How to use Verified Fetch with BLAKE3
import { blake3 as b3 } from '@noble/hashes/blake3'
import { from } from 'multiformats/hashes/hasher'
import { createVerifiedFetch } from '@helia/verified-fetch'
export const blake3 = from({
name: 'blake3',
code: 0x1e,
encode: (input) => b3(input),
})
const verifiedFetch = await createVerifiedFetch({
hashers: [blake3]
})
const resp = await verifiedFetch('ipfs://cid-using-blake3')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment