mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-09 13:07:59 -05:00
migrate docs website + improved docs (#389) * Update README.md (#385) * refactor * refactor * refactor * rename task * update codespell * multi gpu docs (#391) * Refactor * refacotr * fix typo * Apply suggestions from code review * refactor * refactor --------- Co-authored-by: ImmanuelSegol <3ditds@gmail.com> Co-authored-by: DmytroTym <dmytrotym1@gmail.com> Co-authored-by: ChickenLover <Romangg81@gmail.com>
135 lines
2.9 KiB
JavaScript
135 lines
2.9 KiB
JavaScript
module.exports = {
|
|
GettingStartedSidebar: [
|
|
{
|
|
type: "doc",
|
|
label: "Introduction",
|
|
id: "introduction",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "ICICLE",
|
|
link: {
|
|
type: `doc`,
|
|
id: 'icicle/overview',
|
|
},
|
|
collapsed: false,
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
label: "Getting started",
|
|
id: "icicle/introduction"
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "ICICLE Provers",
|
|
id: "icicle/integrations"
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "Golang bindings",
|
|
id: "icicle/golang-bindings",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Rust bindings",
|
|
link: {
|
|
type: `doc`,
|
|
id: "icicle/rust-bindings",
|
|
},
|
|
collapsed: true,
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
label: "Multi GPU Support",
|
|
id: "icicle/rust-bindings/multi-gpu",
|
|
}
|
|
]
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Primitives",
|
|
link: {
|
|
type: `doc`,
|
|
id: 'icicle/primitives/overview',
|
|
},
|
|
collapsed: true,
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
label: "MSM",
|
|
id: "icicle/primitives/msm",
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "Poseidon Hash",
|
|
id: "icicle/primitives/poseidon",
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "NTT",
|
|
id: "icicle/primitives/ntt",
|
|
}
|
|
],
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "Multi GPU Support",
|
|
id: "icicle/multi-gpu",
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "Supporting additional curves",
|
|
id: "icicle/supporting-additional-curves",
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "Google Colab Instructions",
|
|
id: "icicle/colab-instructions",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "ZK Containers",
|
|
id: "ZKContainers",
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "Ingonyama Grant program",
|
|
id: "grants",
|
|
},
|
|
{
|
|
type: "doc",
|
|
label: "Contributor guide",
|
|
id: "contributor-guide",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Additional Resources",
|
|
collapsed: false,
|
|
items: [
|
|
{
|
|
type: "link",
|
|
label: "YouTube",
|
|
href: "https://www.youtube.com/@ingo_ZK"
|
|
},
|
|
{
|
|
type: "link",
|
|
label: "Ingonyama Blog",
|
|
href: "https://www.ingonyama.com/blog"
|
|
},
|
|
{
|
|
type: "link",
|
|
label: "Ingopedia",
|
|
href: "https://www.ingonyama.com/ingopedia"
|
|
},
|
|
{
|
|
href: 'https://github.com/ingonyama-zk',
|
|
type: "link",
|
|
label: 'GitHub',
|
|
}
|
|
]
|
|
}
|
|
],
|
|
};
|