mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-14 00:28:28 -05:00
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import { ProjectContent, ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
const content: ProjectContent = {
|
|
en: {
|
|
tldr: "Content discovery through community contributions, using state channels to reward users for popular posts.",
|
|
description: `Channel 4 is a community-driven platform where users can submit and discover content. It uses state channels to incentivize user engagement. When a user likes the content you've submitted, a state channel closes and rewards are dropped into their wallet. This approach combines entertainment with the power of state channels, enabling community members to earn while they engage.`,
|
|
},
|
|
}
|
|
|
|
export const channel4: ProjectInterface = {
|
|
id: "channel-4",
|
|
section: "archived",
|
|
content,
|
|
projectStatus: ProjectStatus.INACTIVE,
|
|
image: "channel4.svg",
|
|
name: "Channel 4",
|
|
links: {
|
|
github: "https://github.com/State-Channel-4",
|
|
website: "https://channel4.wtf/",
|
|
discord: "https://discord.gg/76UrYgVyEx",
|
|
},
|
|
tags: {
|
|
keywords: ["Scaling"],
|
|
themes: ["play"],
|
|
types: ["Application"],
|
|
builtWith: ["state channel", "smart contract"],
|
|
},
|
|
}
|