Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 7 lines 171 B view raw
1import { createHash } from "node:crypto"; 2 3const sha256 = (text: string): string => { 4 return createHash("sha256").update(text).digest("hex"); 5}; 6 7export default sha256;