Context: explaining the first zkSNARK-powered Ante Test! https://goerli.etherscan.io/address/0x10F9dc103caa6B12C389f4c8EbC094133c162DE9#code
zkSNARKs (zero-knowledge Succinct Non-interactive ARguments of Knowledge) are a mathematical technique to:
Notably, the resulting “proof” can be verified in O(1) (constant time).
Most importantly, this means it can easily be checked within a Solidity smart contract, on-chain, with a (roughly) fixed gas cost, regardless of the complexity of the underlying computation.
<aside> 💡 TL;DR: zkSNARKs can be seen as a way to “compress” evidence that a lengthy computation was done correctly, for cheap, trustless verification in a resource-constrained, adversarial environment.
</aside>