Project Overview
RESEARCH CONTEXT
zFi is an active DeFi project that we have begun watching, and investing in at the start of 2026. Unlike many projects we analyze, zFi contracts have verified source code on Etherscan and a public GitHub presence, which allows for direct source-level analysis rather than bytecode decompilation.
Our research covers the source code and on-chain infrastructure that we can independently verify. We document what the code does, to better our own understanding of the zFi ecosystem of services.
⊙ generated by robots | curated by humans
NOTE TO DEVELOPERS
Please do not hesitate to reach out to us if we have documented anything inaccurately, if anything is out-of-date, or in general if there is any way that we could better support the project.
zFi describes itself as a "superdapp" consolidating multiple Decentralized Finance (DeFi) functions under a single interface at zfi.wei.is. The protocol is governed by zOrg, a DAO structure handling protocol maintenance and ownership. Revenue is generated from zAMM LP mint fees and .wei domain registrations, directed to the DAO for buybacks and staker distributions.
The protocol integrates several components:
- Swap (zRouter) - On-chain DEX Aggregator with deterministic route solving across Uniswap V2/V3/V4, SushiSwap, Curve, zAMM, and Lido. Zero protocol fees.
- Liquidity (zAMM) - Gas-efficient AMM singleton with ERC6909 fungible LP tokens and hybrid launchpad/orderbook functionality.
- Coins (DAICO Launchpad) - Fair launch token mechanism with automated liquidity provisioning.
- Predict (pAMM) - Prediction markets for YES/NO outcome share trading.
- Orderbook - On-chain limit orders for ERC20 pairs with partial fills and expiring orders.
- Domains (.wei Namespace) - IPFS-pinned dapp with
.weidomain resolution. - DAO (zOrg Governance) - Community governance for protocol maintenance and ownership.
Research Timeline
| DATE | TYPE | RESEARCH |
|---|---|---|
| 2026-02-28 | Contract Analysis | zRouter |
| 2026-02-28 | Contract Analysis | zQuoter |
Known Infrastructure
Contracts
| CONTRACT | ADDRESS | NETWORK | STATUS |
|---|---|---|---|
| zRouter | 0x00000000...F600e4 (etherscan) |
Ethereum | Verified (Exact Match) |
| zQuoter | 0x658bF1A6...6A5F (etherscan) |
Ethereum | Verified (Exact Match) |
| zAMM V0 | 0x00000000...4C860 (etherscan) |
Ethereum | Not analyzed |
| zAMM V1 | 0x00000000...616eD (etherscan) |
Ethereum | Not analyzed |
| pAMM | 0x00000000...07C0 (etherscan) |
Ethereum | Not analyzed |
| .wei Registry | 0x00000000...242EB (etherscan) |
Ethereum | Not analyzed |
Public Sites
| SITE | URL | STATUS |
|---|---|---|
| zFi | zfi.wei.is | Active |
| Twitter/X | @z_fi_ | Active |
| GitHub | z-fi/zFi | Public |
Wallets
| WALLET | ADDRESS | PURPOSE |
|---|---|---|
| Buyback & Ops | 0xd14a07B5...013aa (etherscan) |
DAO buybacks and staker distributions |
Tokenomics
zAMM functions as the protocol token. zOrg represents staked governance shares eligible for rewards. Revenue flows from zAMM LP mint fees and .wei domain registrations into the DAO, which allocates funds toward buybacks and staker distributions.
No detailed tokenomics breakdown has been independently verified at this time.
Observations
The contract addresses for zRouter, zAMM, pAMM, and the .wei registry all follow a vanity address pattern starting with 0x000000000..., suggesting deployment via CREATE2 with mined salts. This is a deliberate engineering choice for gas-efficient deterministic addressing, and is consistent across the protocol's infrastructure.
Both analyzed contracts have verified source code on Etherscan with exact match status, which is a positive signal for transparency compared to unverified bytecode-only contracts.