-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36faf39
commit d31f16b
Showing
33 changed files
with
188 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { useTranslation } from "@/app/i18n" | ||
|
||
interface AnchorListProps { | ||
lang: string | ||
} | ||
|
||
const AnchorList = ({ lang }: AnchorListProps) => { | ||
const { t } = useTranslation(lang, "resources-page") | ||
|
||
return <div></div> | ||
} | ||
|
||
AnchorList.displayName = "AnchorList" | ||
|
||
export { AnchorList } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,28 @@ | ||
import { ProjectInterface } from "@/lib/types"; | ||
import { ProjectInterface } from "@/lib/types" | ||
|
||
export const PerpetualPowersOfTau: ProjectInterface = { | ||
id: "perpetual-powers-of-tau", | ||
image: "", | ||
section: "pse", | ||
image: "powers-of-tau.png", | ||
name: "Perpetual Powers of Tau", | ||
tldr: 'An ongoing (since 2019) zk-SNARK trusted setup ceremony for circuits up to 2^28 constraints.', | ||
description: "The Perpetual Powers of Tau is a multi-party trusted setup ceremony, rooted in the Zcash Powers of Tau. Its primary objective is the secure generation of zk-SNARK parameters for circuits accommodating up to 2^28 (260+ million) constraints. This translates to the creation of over 530 million powers of tau. The ceremony's integrity hinges on the principle that as long as one participant acts honestly and remains uncompromised, the entire setup remains trustworthy. It's a pivotal step for zk-SNARK projects, ensuring the security and privacy of the system. Those who can handle a 100Gb download and many hours of compute time are invited to join by contacting [@glamperd on Twitter](https://twitter.com/glamperd) or Telegram, or asking questions via the PSE [Discord](https://discord.com/invite/sF5CT5rzrR).", | ||
projectStatus: 'active', | ||
tldr: "An ongoing (since 2019) zk-SNARK trusted setup ceremony for circuits up to 2^28 constraints.", | ||
description: | ||
"The Perpetual Powers of Tau is a multi-party trusted setup ceremony, rooted in the Zcash Powers of Tau. Its primary objective is the secure generation of zk-SNARK parameters for circuits accommodating up to 2^28 (260+ million) constraints. This translates to the creation of over 530 million powers of tau. The ceremony's integrity hinges on the principle that as long as one participant acts honestly and remains uncompromised, the entire setup remains trustworthy. It's a pivotal step for zk-SNARK projects, ensuring the security and privacy of the system. Those who can handle a 100Gb download and many hours of compute time are invited to join by contacting [@glamperd on Twitter](https://twitter.com/glamperd) or Telegram, or asking questions via the PSE [Discord](https://discord.com/invite/sF5CT5rzrR).", | ||
projectStatus: "active", | ||
tags: { | ||
keywords: ['scaling'] | ||
keywords: ["scaling"], | ||
}, | ||
links: { | ||
github: 'https://github.com/privacy-scaling-explorations/perpetualpowersoftau', | ||
website: 'https://perpetualpowersoftau.com/' | ||
github: | ||
"https://github.com/privacy-scaling-explorations/perpetualpowersoftau", | ||
website: "https://perpetualpowersoftau.com/", | ||
}, | ||
extraLinks: { | ||
learn: [{ | ||
label: 'Announcing the Perpetual Powers of Tau Ceremony', | ||
url: 'https://medium.com/coinmonks/announcing-the-perpetual-powers-of-tau-ceremony-to-benefit-all-zk-snark-projects-c3da86af8377' | ||
}], | ||
learn: [ | ||
{ | ||
label: "Announcing the Perpetual Powers of Tau Ceremony", | ||
url: "https://medium.com/coinmonks/announcing-the-perpetual-powers-of-tau-ceremony-to-benefit-all-zk-snark-projects-c3da86af8377", | ||
}, | ||
], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
import { ProjectInterface } from "@/lib/types"; | ||
import { ProjectInterface } from "@/lib/types" | ||
|
||
export const ZKKit: ProjectInterface = { | ||
id: "zk-kit", | ||
image: "zk-kit.svg", | ||
name: "ZK-kit", | ||
tldr: "A monorepo of reusable libraries for zero-knowledge technologies.", | ||
description: "ZK-kit is a set of libraries (plugins, algorithms or utility functions) that can be reused in different projects and zero-knowledge protocols, making it easier for developers to access user-friendly, tested, and documented libraries.", | ||
projectStatus: 'active', | ||
links: { | ||
website: 'https://zkkit.pse.dev', | ||
github: 'https://github.com/privacy-scaling-explorations/zk-kit', | ||
}, | ||
tags: { | ||
keywords: ['Education', 'Toolkits', 'Anonymity/Privacy', 'Algorithms'], | ||
themes: ["build"], | ||
types: ["Legos/dev tools"], | ||
builtWith: ["Circom", "JavaScript", "Solidity", "Noir"] | ||
} | ||
id: "zk-kit", | ||
section: "pse", | ||
image: "zk-kit.svg", | ||
name: "ZK-kit", | ||
tldr: "A monorepo of reusable libraries for zero-knowledge technologies.", | ||
description: | ||
"ZK-kit is a set of libraries (plugins, algorithms or utility functions) that can be reused in different projects and zero-knowledge protocols, making it easier for developers to access user-friendly, tested, and documented libraries.", | ||
projectStatus: "active", | ||
links: { | ||
website: "https://zkkit.pse.dev", | ||
github: "https://github.com/privacy-scaling-explorations/zk-kit", | ||
}, | ||
tags: { | ||
keywords: ["Education", "Toolkits", "Anonymity/Privacy", "Algorithms"], | ||
themes: ["build"], | ||
types: ["Legos/dev tools"], | ||
builtWith: ["Circom", "JavaScript", "Solidity", "Noir"], | ||
}, | ||
} |
Oops, something went wrong.