fp/packages/next/app/lib/ipfs.ts
Chris Grimmett d60c6ac3bb init
2024-01-20 08:16:14 -08:00

8 lines
255 B
TypeScript

export function buildIpfsUrl (urlFragment: string): string {
return `https://ipfs.io/ipfs/${urlFragment}`
}
export function buildPatronIpfsUrl (cid: string, token: string): string {
return `https://gw.futureporn.net/ipfs/${cid}?token=${token}`
}