mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 08:08:02 -05:00
44 lines
799 B
TypeScript
44 lines
799 B
TypeScript
import {
|
|
ProjectCategory,
|
|
ProjectContent,
|
|
ProjectInterface,
|
|
ProjectStatus,
|
|
} from "@/lib/types"
|
|
|
|
const content: ProjectContent = {
|
|
en: {
|
|
tldr: "",
|
|
description: `
|
|
|
|
`,
|
|
},
|
|
}
|
|
|
|
export const wax: ProjectInterface = {
|
|
id: "wax",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
category: ProjectCategory.DEVTOOLS,
|
|
section: "pse",
|
|
content,
|
|
image: "wax.webp",
|
|
name: "Wallet Account eXperiments - WAX",
|
|
links: {
|
|
github: "https://github.com/getwax",
|
|
},
|
|
tags: {
|
|
builtWith: [
|
|
"foundry",
|
|
"hardhat",
|
|
"node",
|
|
"solidity bls library",
|
|
"sqlite",
|
|
"docker",
|
|
"ethers.js",
|
|
"deno",
|
|
],
|
|
keywords: ["Scaling", "Key management", "WAX"],
|
|
themes: ["build"],
|
|
types: ["Prototype", "Proof of concept", "Lego sets/toolkits"],
|
|
},
|
|
}
|