Try on Testnet

Add the SDK or point your Agent at agents.md

1. Add the SDK

<script src="https://cdn.jsdelivr.net/gh/zene-network/zene-sdk/dist/zene-sdk.js"></script>

2. Initialize + sign in

// Initialize once
Zene.init({ appName: 'My App' });

// Sign in on button click
const user = await Zene.signIn();
console.log(user.address);  // EVM wallet address
console.log(user.hash);     // On-chain identity hash

3. Full-page gate (optional)

// Block access until signed in
Zene.init({ appName: 'My App', gate: true });

API

Zene.init(opts)       // Initialize SDK
Zene.signIn()         // Returns { address, hash, ... }
Zene.signOut()        // Clear session
Zene.getUser()        // Current user or null
Zene.isSignedIn()     // Boolean

Users get a smart wallet with passkey + Google two-factor auth. No MetaMask, no seed phrase. Identity is registered on-chain (Avalanche Fuji testnet).

View Full Documentation → View on GitHub

Coming Soon — Self-hosted L1 Node

Run your own Zene node on the Avalanche L1. Full decentralization, zero trust in us.

# Pull and run the Zene node
docker run -d --name zene-node \
  -p 9650:9650 \
  zene/node:latest \
  --network=mainnet

Your app verifies identities directly against the chain. No API keys, no rate limits, no SaaS dependency.

How Zene Works

Zene is a decentralized identity layer on Avalanche. Two-factor auth (passkey + Google) that creates an on-chain EVM address. No MetaMask. No seed phrases. No centralized server sees your identity.

The Two-Factor Flow:

Trustless by Design:

Why It Matters:

Traditional auth charges per user, controls your data, and requires trusting a server with your identity. Zene is free, decentralized, and verifiably trustless. Your identity is yours.

Implementation Phases

Zene launches in three phases, progressively adding features and decentralization.

Phase 1

C-Chain Fuji Testnet

  • Hosted auth nodes
  • Staking only (no self-hosting)
  • Testnet AVAX
  • Smart account creation
  • SDK available

← WE ARE HERE

Phase 2

Self-Hosted Nodes

  • Run your own auth node
  • Still Fuji testnet
  • Node staking rewards
  • Gas sponsoring
  • Multi-wallet links

Q2 2026

Phase 3

Mainnet Launch

  • Avalanche C-Chain mainnet
  • Self-hosted nodes
  • Full staking + rewards
  • Agentic wallets
  • App marketplace

Q3 2026

1
Create Passkey
2
Link Google Account