{"id":29649928,"url":"https://github.com/wavefork/wave-verifier","last_synced_at":"2026-05-16T17:07:43.075Z","repository":{"id":274392823,"uuid":"921323510","full_name":"wavefork/wave-verifier","owner":"wavefork","description":"Wave's on-chain SVM programs that verifies ZK proofs and executes flows.","archived":false,"fork":false,"pushed_at":"2025-06-24T21:26:45.000Z","size":51,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-22T04:51:30.767Z","etag":null,"topics":["ai","circuits","ml","solana","zk"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wavefork.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-23T18:38:34.000Z","updated_at":"2025-06-24T21:38:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"85de40a2-8d76-4841-9890-5f8654912170","html_url":"https://github.com/wavefork/wave-verifier","commit_stats":null,"previous_names":["micronsh/micron-cli","flexosh/cli","wavefork/wave-verifier"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wavefork/wave-verifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavefork%2Fwave-verifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavefork%2Fwave-verifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavefork%2Fwave-verifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavefork%2Fwave-verifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wavefork","download_url":"https://codeload.github.com/wavefork/wave-verifier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wavefork%2Fwave-verifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33111500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","circuits","ml","solana","zk"],"created_at":"2025-07-22T04:36:00.573Z","updated_at":"2026-05-16T17:07:43.039Z","avatar_url":"https://github.com/wavefork.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WaveFork Verifier\r\n\r\nA Solana program suite for efficient on-chain data compression and verification. This project includes multiple programs for handling account data compression, registry management, and state verification.\r\n\r\n## Programs\r\n\r\n### Account Compression Program\r\n- Efficient on-chain data compression using multiple algorithms (LZ4, Snappy, Zstd)\r\n- Configurable compression parameters\r\n- Concurrent compression support\r\n- Data integrity verification\r\n- Compression queue management\r\n\r\n## Prerequisites\r\n\r\n- Rust 1.70.0 or later\r\n- Solana CLI tools v1.16 or later\r\n- [Anchor](https://www.anchor-lang.com/) framework\r\n- Node.js v16+ (for deployment scripts)\r\n\r\n## Installation\r\n\r\n1. Install Rust:\r\n```bash\r\ncurl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh\r\n```\r\n\r\n2. Install Solana CLI tools:\r\n```bash\r\nsh -c \"$(curl -sSfL https://release.solana.com/v1.16.0/install)\"\r\n```\r\n\r\n3. Install project dependencies:\r\n```bash\r\ncargo build\r\n```\r\n\r\n## Development Setup\r\n\r\n1. Configure your Solana cluster:\r\n```bash\r\nsolana config set --url localhost\r\n```\r\n\r\n2. Start a local validator:\r\n```bash\r\nsolana-test-validator\r\n```\r\n\r\n3. Build the programs:\r\n```bash\r\n./scripts/build.sh\r\n```\r\n\r\n## Testing\r\n\r\n### Run Integration Tests\r\n```bash\r\ncargo test --test integration_tests\r\n```\r\n\r\n### Run Performance Tests\r\n```bash\r\ncargo test --test compression_performance_tests\r\n```\r\n\r\n### Run Security Tests\r\n```bash\r\ncargo test --test security_tests\r\n```\r\n\r\n### Run Benchmarks\r\n```bash\r\ncargo bench\r\n```\r\n\r\n## Program Deployment\r\n\r\n1. Build the programs:\r\n```bash\r\n./scripts/build.sh\r\n```\r\n\r\n2. Deploy to localnet:\r\n```bash\r\n./scripts/deploy-local.sh\r\n```\r\n\r\n3. Deploy to devnet:\r\n```bash\r\n./scripts/deploy-devnet.sh\r\n```\r\n\r\n4. Deploy to mainnet:\r\n```bash\r\n./scripts/deploy-mainnet.sh\r\n```\r\n\r\n## Program Architecture\r\n\r\n### Account Compression Program\r\n- `src/lib.rs`: Main program entrypoint and instruction processing\r\n- `src/error.rs`: Custom error types\r\n- `src/state.rs`: Program state management\r\n- `src/processor.rs`: Instruction processing logic\r\n\r\n### Testing Structure\r\n- `tests/integration/`: Integration tests\r\n  - `src/lib.rs`: Main test suite\r\n  - `src/compression_performance_tests.rs`: Performance benchmarks\r\n  - `src/security_tests.rs`: Security and edge cases\r\n\r\n## Scripts\r\n\r\n- `scripts/build.sh`: Build all programs\r\n- `scripts/clean.sh`: Clean build artifacts\r\n- `scripts/test.sh`: Run all tests\r\n- `scripts/format.sh`: Format code using rustfmt\r\n- `scripts/lint.sh`: Run clippy lints\r\n- `scripts/deploy-local.sh`: Deploy to local validator\r\n- `scripts/deploy-devnet.sh`: Deploy to devnet\r\n- `scripts/deploy-mainnet.sh`: Deploy to mainnet\r\n\r\n## Configuration\r\n\r\n### Program Settings\r\nProgram configurations can be modified in their respective `src/lib.rs` files:\r\n\r\n```rust\r\npub const MAX_COMPRESSION_RATIO: f64 = 10.0;\r\npub const MIN_CHUNK_SIZE: usize = 1024;\r\npub const MAX_CHUNK_SIZE: usize = 32768;\r\npub const MAX_CONCURRENT_COMPRESSIONS: u32 = 8;\r\n```\r\n\r\n### Compression Algorithms\r\nAvailable compression algorithms:\r\n- LZ4: Fast compression/decompression\r\n- Snappy: Optimized for speed\r\n- Zstd: Better compression ratios\r\n\r\n## Contributing\r\n\r\n1. Fork the repository\r\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\r\n3. Run tests (`cargo test`)\r\n4. Run clippy (`cargo clippy`)\r\n5. Format code (`cargo fmt`)\r\n6. Commit changes (`git commit -m 'Add amazing feature'`)\r\n7. Push to branch (`git push origin feature/amazing-feature`)\r\n8. Open a Pull Request\r\n\r\n## Security\r\n\r\nFor security concerns, please open an issue or contact the maintainers directly.\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\r\n\r\n## Acknowledgments\r\n\r\n- Solana Labs for the blockchain platform\r\n- The Rust community for excellent compression libraries\r\n- Contributors and maintainers","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavefork%2Fwave-verifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwavefork%2Fwave-verifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwavefork%2Fwave-verifier/lists"}