🌳
pt0/gamesapp/sharedF/stackResponseHelpersF.mts
1type StackResponse = {
2 lastDescription?: string
3 lastFinishedTrails?: unknown[]
4 lastImageDataUrl?: string
5 lastIpfsCid?: string
6}
8export const respHasDrawing = (resp: StackResponse) => !!(resp.lastFinishedTrails || resp.lastImageDataUrl || resp.lastIpfsCid)
10export const ipfsProxyUrl = (cid: string) => `/ipfs/${cid}.bin`