Skip to content

AndreaRettaroli/identity-protocol-zkVerify

 
 

Repository files navigation

Galxe Identity Protocol x zkVerify

This project is developed for the zkVerify online hackathon. It's a fork of the Galxe Identity Protocol repository. You can find the original README here.

The processed files for the hackathon are:

The goal of this project is to demonstrate how to integrate zkVerify in Galxe Identity Protocol to significantly reduce verification costs without sacrificing security.

zkVerify

zkVerify is a modular blockchain focused on proof verification. It's specifically enables blockchain networks to offload the computationally heavy and expensive process of zk (zero-knowledge) proof verification, drastically reducing cost. It's support multiple verification schemes, including Groth16, Fflonk, Risc0 and more.

Galxe

Galxe is a decentralized super app and web3's largest onchain distribution platform, with over 31 million active users and trusted by top partners like Optimism, Polygon, and many more. Within its infrastructure, Galxe built Identity Protocol, a technology that utilizes privacy-preserving ZK technology to enable safe and seamless integration of digital identities across platforms. Built on top of Identity Protocol, there is another product by Galxe, the Galxe Passport, chosen by around 1 million users to share their digital identity.

What we cooked

We created a new tutorial that follows the original one published by Galxe in this repo, but instead of doing an off-chain or an expensive on-chain verification, we integrated zkVerify technology as verification layer to efficiently verify the proofs.

Note: Galxe has already integrated Nebra UPA in a tutorial, a protocol that aggregates multiple proofs for reducing the verification cost. This validates our idea of introducing zkVerify.

The process is divided in three steps:

  1. Issuer issuing a credential to the user
  2. User generating a proof to prove some statements about the credential
  3. Submitting the proof to zkVerify to verify it

We implemented the last step in two ways:

How to run it

Follow the original tutorial to initialize the repository:

# Quick start
corepack enable
corepack install
pnpm build

This will install the dependencies and build the project.

Then go to the apps/tutorial folder and install the dependencies:

cd apps/tutorial
pnpm install

Add ZKVERIFY_SIGNER_PK to the .env file with the private key of the account that will register the verification key onchain.

Finally, run the script:

npm run useZkVerify

Alternatively you can run the script:

chmod +x start.sh
./start.sh

Before to run make sure you have node latest version:

# For nvm users:
nvm install --lts
nvm use --lts

Considerations

Galxe currently serves over 31 million active users and manages more than 350k credentials, making it the perfect candidate for testing scalable verification solutions with zkVerify.

Assessed that zkVerify can reduce proof verification costs by >90% compared to native verification on Ethereum, at Galxe's scale, this translates to a significant costs dropping - a transformation that could generate millions in savings annually.

Beyond pure cost reduction, this integration opens new possibilities for Web3 identity management. With around 1 million users actively using Galxe Passport, cheaper verification enables more frequent credential checks, enhanced privacy features, and broader accessibility to trustless credential systems for smaller projects.

On a closing thought, we want to remark how specialized verification layers can solve real problems in large-scale identity systems, with the zkVerify-Galxe integration setting a new standard for efficient, accessible credential verification in Web3.

About

zkVerify x Galxe Identity Protocol

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Circom 75.5%
  • TypeScript 14.1%
  • Solidity 8.4%
  • JavaScript 1.9%
  • HTML 0.1%
  • Dockerfile 0.0%