KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
zama-fhe
★ 64
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
CVE-2025-25257
:
FortiWeb CVE-2025-25257 exploit
claude-for-safari
:
Give your AI Agent the power to control Safari on macOS. No extensions, no separate browser.
SRD-token-Open-Platform
:
南京斯锐德科技有限公司,ai算力开放平台
PlixMetrics
:
A self-hosted, real-time Plex network monitoring dashboard. Track multiple Tautulli instances, visualize streaming activity on a world map, and analyze viewing statistics.
ha-tado-x
:
Home Assistant custom integration for Tado X devices
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
zama-fhe
?
Download (.md)
# Zama FHE Protocol Technical Guides I regularly update this repository with detailed guides on technical tasks related to the Zama protocol. ## Environment **Linux Ubuntu OS** * **VPS**: You can use a linux VPS to follow the guide * **Windows**: Install Linux Ubuntu using WSL by following this [guide](https://github.com/0xmoei/Install-Linux-on-Windows) * **Codespace**: If you don't have VPS or Windows WSL, you can use [Github Codespace](https://github.com/codespaces), create a blank template and run your codes. ## Install Dependecies ```console # Packages: sudo apt update && sudo apt upgrade -y sudo apt install screen curl iptables build-essential git wget lz4 jq make gcc nano automake autoconf tmux htop nvme-cli libgbm1 pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev -y # Install Nodejs, npm, yarn sudo apt update sudo curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - sudo apt install -y nodejs node -v npm install -g yarn yarn -v # Install Hardhat sudo npm install -g hardhat ``` ## Deploy FHECounter contract ``` git clone https://github.com/zama-ai/fhevm-hardhat-template cd fhevm-hardhat-template ``` Install: ``` npm install ``` Replace `hardhat.config.ts` file: ``` curl -o hardhat.config.ts https://raw.githubusercontent.com/0xmoei/zama-fhe/refs/heads/main/hardhat.config.ts ``` Set Sepolia RPC: ``` npx hardhat vars set SEPOLIA_RPC_URL ``` * It prompts you to enter a Sepolia RPC, you can use `https://ethereum-sepolia-rpc.publicnode.com` Set Privatekey: ``` npx hardhat vars set PRIVATE_KEY ``` * It prompts you to enter a privatekey, enter without `0x` perfix. Verify your wallet: ``` npx hardhat accounts --network sepolia ``` Compile and Deploy: ``` # Compile npx hardhat compile # Deploy npx hardhat deploy --network sepolia ``` * It responds with your deployed contract address