https://github.com/clearloop/zosh
The privacy bridge
https://github.com/clearloop/zosh
Last synced: 3 months ago
JSON representation
The privacy bridge
- Host: GitHub
- URL: https://github.com/clearloop/zosh
- Owner: clearloop
- License: gpl-3.0
- Created: 2025-11-14T08:32:30.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-12-06T07:07:35.000Z (4 months ago)
- Last Synced: 2025-12-07T00:58:03.735Z (4 months ago)
- Language: Rust
- Homepage: http://docs.zosh.io/
- Size: 3.35 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Zosh - The Trustless Privacy Bridge for Solana and Zcash
The monorepo for Zosh, contains the node, program and UI service.
## Why Zosh?
| Bridge | Privacy | Open Source | Trustless | Permissionless | Scalability |
| ------------ | ------- | ----------- | --------- | -------------- | ----------- |
| Zosh | 🟢 | 🟢 | 🟢 | 🟢 | 🟢 |
| Near Intents | 🔴 | 🟡 | 🟡 | 🔴 | 🟢 |
| Zenrock | 🟢 | 🔴 | 🟡 | 🔴 | 🔴 |
## Technical Overview
Zosh is a Solana L2 built for Zcash that focus on privacy and scalability.
Zosh uses a custom consensus algorithm called [zoshBFT](./docs/src/protocol/zoshbft.md) inspired by Hotstuff and
its successors. Both the algorithm and networking stack are optimized from the ground up to
support the unique demands of the crossing chain liquidity and privacy.
```mermaid
flowchart LR
A[Zcash]
B[Solana]
C[ZorshBFT <-> State Machine]
A -.-> |Sync| C
B -.-> |Sync| C
C --> |Frost| A
C --> |Frost| B
subgraph The Privacy Bridge
direction LR
A
B
end
```
Zosh state execution is heavily based on external transactions, all confirmed output transactions
will be committed on chain and finally can be executed by anyone.
## LICENSE
GPL-3.0