Files
pse.dev/data/projects/pod2.ts
Eduard S. c8527afa09 feat: add pod2 (#296)
* feat: add pod2 in projects
2025-03-01 16:12:41 +00:00

41 lines
1.0 KiB
TypeScript

import {
ProjectCategory,
ProjectContent,
ProjectInterface,
ProjectStatus,
} from "@/lib/types"
const content: ProjectContent = {
en: {
tldr: "The second generation of the cryptographic Provable Data format from 0xPARC.",
description: `
POD2 is the next iteration of the Provable Object Datatype (POD). This new iteration introduces arbitrary computation on data via custom predicates, recursion and interoperability with other data provinance cryptographic tools. This is a 0xPARC project that PSE is collaborating on.
`,
},
}
export const pod2: ProjectInterface = {
id: "pod2",
projectStatus: ProjectStatus.ACTIVE,
category: ProjectCategory.DEVTOOLS,
section: "collaboration",
content,
image: "",
name: "POD2",
links: {
github: "https://github.com/0xPARC/pod2",
website: "https://0xparc.github.io/pod2/",
},
tags: {
keywords: [
"anonymity/privacy",
"data portability",
"social",
"identity",
"toolkits",
],
builtWith: [],
themes: ["build", "play"],
},
}