Skip to content

Commit

Permalink
Create labs Zeto
Browse files Browse the repository at this point in the history
Signed-off-by: Enrique Lacal <[email protected]>
  • Loading branch information
EnriqueL8 authored and nidhi-singh02 committed Jul 4, 2024
1 parent 306a94f commit 04d74bd
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions labs/zeto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: default
title: Zeto
parent: Labs
---

# Lab Name

Zeto

# Short Description

Zeto is a UTXO based privacy-preserving token toolkit for EVM using Zero Knowledge Proofs.

# Scope of Lab

This project hosts the multiple patterns to implement privacy preserving tokens on EVM. The patterns all share the same basic architectural concepts:

- **Transaction model**: the UTXO model is adopted instead of the account model, for better support of parallel processing. Due to the necessity of maintaining private states offchain in order to achieve privacy, the client must continuously keep their private states in sync with the smart contract. Using an account model makes it more difficult to achieve this because incoming transfers from other parties would invalidate an account's state, making the account owner unable to spend from its account unless the private state has been sync'ed again. Solutions to this issue, often referred to as front-running, typically involve a spending window with a pending queue, which result in limited parallel processing of transactions from the same spending account. With a UTXO model, each state is independent of the others, so parallel processing is better achieved.
- **Commitments**: each UTXO is tracked by the smart contract as a hash, or commitment, of the following components: value, salt and owner public key
- **Finality**: each transaction's validity is verified by the smart contract before allowing the proposed input UTXOs to be nullified and the output UTXOs to come into existence. In other words, this is not an optimistic design and as such does not rely on a multi-day challenge period before a transaction is finalized. Every transaction is immediately finalized once it's mined into a block.

# Initial Committers

- https://github.com/awrichar
- https://github.com/EnriqueL8
- https://github.com/jimthematrix

# Sponsor

https://github.com/jimthematrix - Jim Zhang, member of the Hyperledger Technical Oversight Committee

# Pre-existing repositories

- https://github.com/kaleido-io/zeto

0 comments on commit 04d74bd

Please sign in to comment.