Skip to content

Commit 201de57

Browse files
committed
updated links
1 parent c7bd676 commit 201de57

6 files changed

+21
-0
lines changed

src/applicationszk.md

+14
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ A compilation of materials that showcase various applications of zk technology.
3737
- [Zk evm comparison guide](https://blog.jarrodwatts.com/the-ultimate-zk-evm-comparison-guide)
3838
- [BrainSTARK](https://aszepieniec.github.io/stark-brainfuck/)
3939
- [Enhancing VM efficiency in parallel envs](https://blog.lambdaclass.com/beyond-single-core-enhancing-vm-efficiency-in-parallel-environments/)
40+
- [Projects that shaped modern ZKVMS -1](https://blog.zksecurity.xyz/posts/zkvm-projects-1/)
41+
- [Glue and Coprocessor Architectures](https://vitalik.eth.limo/general/2024/09/02/gluecp.html)
42+
- [Demystifying Executable Linkable Format (ELF)](https://medium.com/@razika28/demystifying-the-elf-format-unveiling-the-secrets-of-binary-executables-2835387cc6d4)
4043

4144
- **EVM/VMs**
4245
- [Aztec protocol](https://aztec.network)
@@ -56,6 +59,15 @@ A compilation of materials that showcase various applications of zk technology.
5659
- [Miden VM program decoder](https://hackmd.io/_aaDBzbWRz6EwQQRtK1pzw)
5760
- [Memory in MidenVM](https://hackmd.io/@bobbinth/HJr56BKKt)
5861
- [u32 in MidenVM](https://hackmd.io/NC-yRmmtRQSvToTHb96e8Q#u32-operations-in-Miden-VM)
62+
- [TinyvnRAM](https://www.scipr-lab.org/doc/TinyRAM-spec-2.000.pdf)
63+
- [Succinct NIZK for VN architecture](https://eprint.iacr.org/2013/879.pdf)
64+
- [Snarks for C](https://eprint.iacr.org/2013/507.pdf)
65+
- [talk](https://www.youtube.com/watch?v=nS3smRAfUd8)
66+
- [blog](https://hackernoon.com/tiny-ram-review-architecture-design-and-assembly-instructions)
67+
- [blog](https://hackmd.io/@sin7y/rkz28TKY5)
68+
- [blog](https://blog.plan99.net/vntinyram-7b9d5b299097)
69+
- [libnsark: code](https://github.com/scipr-lab/libsnark)
70+
- [pepper project: code](https://github.com/pepper-project/tinyram)
5971
- [RISC0 ZK VM](https://www.risczero.com)
6072
- [RISC0 proof system](https://www.risczero.com/proof-system-in-detail.pdf)
6173
- [RISC0 Code](https://github.com/risc0/risc0)
@@ -69,11 +81,13 @@ A compilation of materials that showcase various applications of zk technology.
6981
- [zkWasm](http://www.delphinuslab.com/)
7082
- [Loopring](https://loopring.org/#/about)
7183
- [NexusVM](https://github.com/nexus-xyz/nexus-zkvm)
84+
- [whitepaper](https://nexus-xyz.github.io/assets/nexus_whitepaper.pdf)
7285
- [SP1](https://github.com/succinctlabs/sp1)
7386
- [book](https://succinctlabs.github.io/sp1/)
7487
- [intro to SP1 source code](https://trapdoortech.medium.com/zero-knowledge-proof-introduction-to-sp1-zkvm-source-code-d26f88f90ce4)
7588
- [Sp1 audit](https://hackmd.io/wztOd455QKWf-K8LXh_Fqw)
7689
- [whitepaper](https://drive.google.com/file/d/1aTCELr2b2Kc1NS-wZ0YYLKdw1Y2HcLTr/view)
90+
- [Ceno](https://eprint.iacr.org/2024/387.pdf)
7791

7892
## ZK bridges
7993

src/hwzk.md

+2
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,7 @@
4848

4949
- [basic computer architecture](https://www.geeksforgeeks.org/computer-organization-and-architecture-tutorials/?ref=lbp)
5050
- [RISCV manual](https://riscv.org/wp-content/uploads/2019/12/riscv-spec-20191213.pdf)
51+
- [rv8 for x86-64](https://michaeljclark.github.io)
52+
- [embedded riscv resources](https://five-embeddev.com/riscv-isa-manual/)
5153
- [VLIW introduction](https://web.archive.org/web/20110929113559/http://www.nxp.com/acrobat_download2/other/vliw-wp.pdf)
5254
- [Web Assembly](https://webassembly.github.io/spec/core/_download/WebAssembly.pdf)

src/lattice.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- [Lattice based cryptography - Micciancio and Regev](https://cims.nyu.edu/~regev/papers/pqc.pdf)
77
- [A decade of Lattice cryptography - Peikert](https://eprint.iacr.org/2015/939.pdf)
88
- [Survey of polynomial multiplications for lattice based cryptosystems](https://eprint.iacr.org/2023/1962.pdf)
9+
- [Lattice based proof systems](https://mirror.xyz/privacy-scaling-explorations.eth/4OyAht_dHsVT1MgcZTwrK2qJ-bwxpINcpBmLNfF4I2E)
910

1011
### Lecture series/Conferences
1112

src/msm.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- [Ryah Henry - Thesis](https://cacr.uwaterloo.ca/techreports/2010/cacr2010-26.pdf)
1515
- [Efficient Multi exponentiation: Bucket method - Bootle](https://jbootle.github.io/Misc/pippenger.pdf)
1616
- [MSM tricks](https://gist.github.com/mratsim/27c78c71fd423f731615a91d237162c3#file-multi-scalar-mul-md)
17+
- [Verifiable MSM](https://decentralizedthoughts.github.io/2025-02-14-verifiable-MSM/)
1718

1819
## Implementations
1920
<!-- markdown-link-check-disable -->

src/vulnerabilities.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Potential vulnerabilities and security in ZK systems
3333
- [paper](https://arxiv.org/abs/2402.15293)
3434
- [Disarming Fiat Shamir footguns](https://blog.trailofbits.com/2024/06/24/disarming-fiat-shamir-footguns/)
3535
- [Decree FS library](https://github.com/trailofbits/decree)
36+
- [VZKVM bugs](https://bugs.zksecurity.xyz)
3637

3738
## Hardware vulnerabilities
3839

src/zkbeginner.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Understanding ZK from beginner to advanced on a surface level.
2828
## Advanced
2929

3030
- [An incomplete guide to zk: why zk matters](https://mirror.xyz/fundamentalabs.eth/24i98adRylhjdcqV1TnsT8ZbkIXCulCrDTIrsrziQmY)
31+
- [Understanding the math behind ZKPs](https://zkintro.com/articles/understanding-math-behind-zkps)
3132
- [Why and how Zero knowledge works](https://arxiv.org/pdf/1906.07221.pdf)
3233
- [zk Snarks a gentle introduction](https://www.di.ens.fr/~nitulesc/files/Survey-SNARKs.pdf)
3334
- [The math behind ZkSNARK - video](https://www.youtube.com/watch?v=iRQw2RpQAVc)
@@ -46,3 +47,4 @@ Understanding ZK from beginner to advanced on a surface level.
4647
- [Misconceptions in ZK-Snarks - Thaler](https://a16zcrypto.com/posts/article/17-misconceptions-about-snarks/)
4748
- [Introduction to range proofs](https://tech.mystenlabs.com/zero-knowledge-range-proofs/)
4849
- [Whats next in programmable cryptography](https://mirror.xyz/privacy-scaling-explorations.eth)
50+
- [SOK: Understanding zk-SNARKS: gap between research and practice](https://eprint.iacr.org/2025/172)

0 commit comments

Comments
 (0)