├── .gitmodules ├── README.md ├── contracts ├── .github │ └── workflows │ │ └── test.yml ├── .gitignore ├── README.md ├── broadcast │ ├── Puzzle.deploy.mantle.s.sol │ │ └── 5001 │ │ │ ├── run-1699710359.json │ │ │ ├── run-1699710367.json │ │ │ └── run-latest.json │ ├── Puzzle.deploy.s.sol │ │ └── 5001 │ │ │ ├── run-1699710064.json │ │ │ ├── run-1699710087.json │ │ │ ├── run-1699710131.json │ │ │ ├── run-1699710233.json │ │ │ └── run-latest.json │ └── Puzzle.deploy.scroll.s.sol │ │ └── 534351 │ │ ├── run-1699774146.json │ │ ├── run-1699774153.json │ │ └── run-latest.json ├── foundry.toml ├── puzzle_input.json ├── script │ ├── Puzzle.deploy.mantle.s.sol │ └── Puzzle.deploy.scroll.s.sol ├── src │ ├── PlonkVK.sol │ └── Puzzle.sol ├── test │ └── Puzzle.t.sol └── verifier_input.json ├── frontend ├── .env.example ├── .eslintrc.json ├── .gitignore ├── next.config.js ├── package.json ├── public │ └── circuits │ │ └── turing_zero.json ├── src │ ├── components │ │ ├── Editor.tsx │ │ ├── Modal │ │ │ ├── ProofModal.tsx │ │ │ └── WitnessModal.tsx │ │ ├── Text │ │ │ └── BitText.tsx │ │ └── common │ │ │ ├── AppHeader.tsx │ │ │ ├── ChainList.tsx │ │ │ ├── DagreGraph.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── Section.tsx │ │ │ ├── Title.tsx │ │ │ └── index.ts │ ├── constants │ │ ├── config.ts │ │ ├── contracts.ts │ │ ├── currency.ts │ │ ├── texts.ts │ │ ├── turing.ts │ │ └── web3.ts │ ├── contexts │ │ └── .gitkeep │ ├── hooks │ │ ├── .gitkeep │ │ ├── useGraphNodeLink.ts │ │ ├── useProver.ts │ │ ├── useSubmitTx.ts │ │ ├── useTransactionToast.tsx │ │ └── useTuring.ts │ ├── interfaces │ │ ├── .gitkeep │ │ ├── bounty.ts │ │ ├── config.ts │ │ ├── menu.ts │ │ └── puzzle.ts │ ├── pages │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── api │ │ │ └── hello.ts │ │ ├── index.tsx │ │ └── puzzles.tsx │ ├── stores │ │ └── usePrices.ts │ ├── styles │ │ └── turing.module.css │ ├── themes │ │ ├── Button.ts │ │ ├── Card.ts │ │ ├── Code.ts │ │ ├── Skeleton.ts │ │ ├── Tooltip.ts │ │ └── index.ts │ ├── useConfig.ts │ ├── utils │ │ ├── .gitkeep │ │ ├── address.ts │ │ └── string.ts │ └── views │ │ ├── layouts │ │ └── .gitkeep │ │ └── pages │ │ ├── HomePage.tsx │ │ └── PuzzlesPage.tsx ├── tsconfig.json └── yarn.lock ├── turing_zero ├── Nargo.toml ├── Prover.toml ├── Verifier.toml ├── contract │ └── turing_zero │ │ └── plonk_vk.sol ├── proofs │ └── turing_zero.proof ├── src │ └── turing.nr └── target │ ├── debug_turing_zero.json │ └── turing_zero.json └── type5_zkevm ├── Nargo.toml ├── Prover.toml ├── Verifier.toml ├── ops.json ├── proofs └── type5_zkevm.proof ├── src └── main.nr └── target ├── debug_type5_zkevm.json └── type5_zkevm.json /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/README.md -------------------------------------------------------------------------------- /contracts/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/.github/workflows/test.yml -------------------------------------------------------------------------------- /contracts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/.gitignore -------------------------------------------------------------------------------- /contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/README.md -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.mantle.s.sol/5001/run-1699710359.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.mantle.s.sol/5001/run-1699710359.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.mantle.s.sol/5001/run-1699710367.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.mantle.s.sol/5001/run-1699710367.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.mantle.s.sol/5001/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.mantle.s.sol/5001/run-latest.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710064.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710064.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710087.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710087.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710131.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710131.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710233.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.s.sol/5001/run-1699710233.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.s.sol/5001/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.s.sol/5001/run-latest.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.scroll.s.sol/534351/run-1699774146.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.scroll.s.sol/534351/run-1699774146.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.scroll.s.sol/534351/run-1699774153.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.scroll.s.sol/534351/run-1699774153.json -------------------------------------------------------------------------------- /contracts/broadcast/Puzzle.deploy.scroll.s.sol/534351/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/broadcast/Puzzle.deploy.scroll.s.sol/534351/run-latest.json -------------------------------------------------------------------------------- /contracts/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/foundry.toml -------------------------------------------------------------------------------- /contracts/puzzle_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/puzzle_input.json -------------------------------------------------------------------------------- /contracts/script/Puzzle.deploy.mantle.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/script/Puzzle.deploy.mantle.s.sol -------------------------------------------------------------------------------- /contracts/script/Puzzle.deploy.scroll.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/script/Puzzle.deploy.scroll.s.sol -------------------------------------------------------------------------------- /contracts/src/PlonkVK.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/src/PlonkVK.sol -------------------------------------------------------------------------------- /contracts/src/Puzzle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/src/Puzzle.sol -------------------------------------------------------------------------------- /contracts/test/Puzzle.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/test/Puzzle.t.sol -------------------------------------------------------------------------------- /contracts/verifier_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/contracts/verifier_input.json -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/.env.example -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/circuits/turing_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/public/circuits/turing_zero.json -------------------------------------------------------------------------------- /frontend/src/components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/Editor.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/ProofModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/Modal/ProofModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/WitnessModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/Modal/WitnessModal.tsx -------------------------------------------------------------------------------- /frontend/src/components/Text/BitText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/Text/BitText.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/common/AppHeader.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/ChainList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/common/ChainList.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/DagreGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/common/DagreGraph.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Footer.tsx: -------------------------------------------------------------------------------- 1 | export const Footer = () => { 2 | return <>; 3 | }; 4 | -------------------------------------------------------------------------------- /frontend/src/components/common/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/common/Navbar.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/common/Section.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/common/Title.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/components/common/index.ts -------------------------------------------------------------------------------- /frontend/src/constants/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/constants/config.ts -------------------------------------------------------------------------------- /frontend/src/constants/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/constants/contracts.ts -------------------------------------------------------------------------------- /frontend/src/constants/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/constants/currency.ts -------------------------------------------------------------------------------- /frontend/src/constants/texts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/constants/texts.ts -------------------------------------------------------------------------------- /frontend/src/constants/turing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/constants/turing.ts -------------------------------------------------------------------------------- /frontend/src/constants/web3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/constants/web3.ts -------------------------------------------------------------------------------- /frontend/src/contexts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/hooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/hooks/useGraphNodeLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/hooks/useGraphNodeLink.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useProver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/hooks/useProver.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useSubmitTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/hooks/useSubmitTx.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useTransactionToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/hooks/useTransactionToast.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useTuring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/hooks/useTuring.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/interfaces/bounty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/interfaces/bounty.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/interfaces/config.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/interfaces/menu.ts -------------------------------------------------------------------------------- /frontend/src/interfaces/puzzle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/interfaces/puzzle.ts -------------------------------------------------------------------------------- /frontend/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/pages/_app.tsx -------------------------------------------------------------------------------- /frontend/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/pages/_document.tsx -------------------------------------------------------------------------------- /frontend/src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/pages/api/hello.ts -------------------------------------------------------------------------------- /frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/puzzles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/pages/puzzles.tsx -------------------------------------------------------------------------------- /frontend/src/stores/usePrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/stores/usePrices.ts -------------------------------------------------------------------------------- /frontend/src/styles/turing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/styles/turing.module.css -------------------------------------------------------------------------------- /frontend/src/themes/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/themes/Button.ts -------------------------------------------------------------------------------- /frontend/src/themes/Card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/themes/Card.ts -------------------------------------------------------------------------------- /frontend/src/themes/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/themes/Code.ts -------------------------------------------------------------------------------- /frontend/src/themes/Skeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/themes/Skeleton.ts -------------------------------------------------------------------------------- /frontend/src/themes/Tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/themes/Tooltip.ts -------------------------------------------------------------------------------- /frontend/src/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/themes/index.ts -------------------------------------------------------------------------------- /frontend/src/useConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/useConfig.ts -------------------------------------------------------------------------------- /frontend/src/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/utils/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/utils/address.ts -------------------------------------------------------------------------------- /frontend/src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/utils/string.ts -------------------------------------------------------------------------------- /frontend/src/views/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/views/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/views/pages/HomePage.tsx -------------------------------------------------------------------------------- /frontend/src/views/pages/PuzzlesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/src/views/pages/PuzzlesPage.tsx -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /turing_zero/Nargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/Nargo.toml -------------------------------------------------------------------------------- /turing_zero/Prover.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/Prover.toml -------------------------------------------------------------------------------- /turing_zero/Verifier.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/Verifier.toml -------------------------------------------------------------------------------- /turing_zero/contract/turing_zero/plonk_vk.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/contract/turing_zero/plonk_vk.sol -------------------------------------------------------------------------------- /turing_zero/proofs/turing_zero.proof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/proofs/turing_zero.proof -------------------------------------------------------------------------------- /turing_zero/src/turing.nr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/src/turing.nr -------------------------------------------------------------------------------- /turing_zero/target/debug_turing_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/target/debug_turing_zero.json -------------------------------------------------------------------------------- /turing_zero/target/turing_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/turing_zero/target/turing_zero.json -------------------------------------------------------------------------------- /type5_zkevm/Nargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/Nargo.toml -------------------------------------------------------------------------------- /type5_zkevm/Prover.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/Prover.toml -------------------------------------------------------------------------------- /type5_zkevm/Verifier.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/Verifier.toml -------------------------------------------------------------------------------- /type5_zkevm/ops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/ops.json -------------------------------------------------------------------------------- /type5_zkevm/proofs/type5_zkevm.proof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/proofs/type5_zkevm.proof -------------------------------------------------------------------------------- /type5_zkevm/src/main.nr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/src/main.nr -------------------------------------------------------------------------------- /type5_zkevm/target/debug_type5_zkevm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/target/debug_type5_zkevm.json -------------------------------------------------------------------------------- /type5_zkevm/target/type5_zkevm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tetration-Lab/turing-zero/HEAD/type5_zkevm/target/type5_zkevm.json --------------------------------------------------------------------------------