use blob for mobile

This commit is contained in:
zramsay 2025-02-02 14:13:43 -05:00
parent aedeb63d13
commit 2520ad601d

View File

@ -17,9 +17,9 @@ export async function uploadToIpfs(imageBuffer: Buffer, filename: string): Promi
const formData = new FormData()
// Create file from buffer
const file = new File([imageBuffer], filename, { type: 'image/jpeg' })
formData.append('file', file)
// Create file from buffer using Blob
const blob = new Blob([imageBuffer], { type: 'image/jpeg' })
formData.append('file', blob, filename)
// Add metadata
const pinataMetadata = JSON.stringify({