├── README.md ├── circuit ├── Nargo.toml ├── contract │ └── circuit │ │ └── plonk_vk.sol ├── src │ └── main.nr └── target │ ├── circuit.json │ └── debug_circuit.json ├── contracts └── CommentVerifier.sol ├── relayer ├── .env.example ├── .gitignore ├── json_abi │ └── CommentVerifier.json ├── package-lock.json ├── package.json └── relayer.js ├── screenshot.png └── webapp ├── .env.example ├── .gitignore ├── app.js ├── index.html ├── json_abi └── CommentVerifier.json ├── package-lock.json ├── package.json └── vite.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/README.md -------------------------------------------------------------------------------- /circuit/Nargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/circuit/Nargo.toml -------------------------------------------------------------------------------- /circuit/contract/circuit/plonk_vk.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/circuit/contract/circuit/plonk_vk.sol -------------------------------------------------------------------------------- /circuit/src/main.nr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/circuit/src/main.nr -------------------------------------------------------------------------------- /circuit/target/circuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/circuit/target/circuit.json -------------------------------------------------------------------------------- /circuit/target/debug_circuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/circuit/target/debug_circuit.json -------------------------------------------------------------------------------- /contracts/CommentVerifier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/contracts/CommentVerifier.sol -------------------------------------------------------------------------------- /relayer/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/relayer/.env.example -------------------------------------------------------------------------------- /relayer/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /relayer/json_abi/CommentVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/relayer/json_abi/CommentVerifier.json -------------------------------------------------------------------------------- /relayer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/relayer/package-lock.json -------------------------------------------------------------------------------- /relayer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/relayer/package.json -------------------------------------------------------------------------------- /relayer/relayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/relayer/relayer.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/screenshot.png -------------------------------------------------------------------------------- /webapp/.env.example: -------------------------------------------------------------------------------- 1 | CHAIN_ID = "534351" 2 | COMMENT_VERIFIER_ADDRESS = "0x123abc" -------------------------------------------------------------------------------- /webapp/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /webapp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/webapp/app.js -------------------------------------------------------------------------------- /webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/webapp/index.html -------------------------------------------------------------------------------- /webapp/json_abi/CommentVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/webapp/json_abi/CommentVerifier.json -------------------------------------------------------------------------------- /webapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/webapp/package-lock.json -------------------------------------------------------------------------------- /webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/webapp/package.json -------------------------------------------------------------------------------- /webapp/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turupawn/PrivacyDAppDemo/HEAD/webapp/vite.config.js --------------------------------------------------------------------------------