Created
February 21, 2025 09:52
-
-
Save 2color/133b5a7bb6c3b40d89e7413bff5d992e to your computer and use it in GitHub Desktop.
How to use Verified Fetch with BLAKE3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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