Zync

ZYNC Documentation

ZYNC Protocol is an autonomous liquidity deployment infrastructure on Robinhood Chain. The V2 launch engine pairs custom synthetic assets against liquid tokenized equities and indices, locking deterministic reserve curves into Uniswap v4 singleton hooks upon graduation.

Architecture Status: Launch V2 is active on Robinhood Chain. All token pairs clear atomically through sovereign vault contracts. ZYNC maintains zero custodial access to deposited margin.
ZYNC V2 PROTOCOL FLOW DIAGRAM
ZYNC LAUNCH HOOK Uniswap v4 Singleton VAULT LP & ROUTER Permit2 Settlement POINTORACLE FEED Chainlink / Pyth Feeds GRADUATION DISPERSAL ENGINE 100% Locked Liquidity Pool Migration

Architecture at a glance

COMPONENT ROLE
Launch V2 Launchpad and Hook Manages initial bonding curve launches, verifies constituent asset weights, and prevents unpermitted LP extraction prior to canonical graduation.
PolyToken (ERC-20) Fixed 1,000,000,000 token supply with immutable zero-mint, zero-owner, and zero-pause guarantees.
Uniswap V4 Pools Houses concentrated singleton liquidity pools, routing multi-leg trades through specialized hooks.
ZYNC LP Vault & Policy Holds creator fees, manages buyback & burn sinks, and orchestrates periodic policy epochs without discretionary administrative keys.
Multi-Asset Aggregator Splits complex basket entries atomically across underlying stock pools using USDG intermediate routing.
Canonical Registry Maintains on-chain verified state mappings for graduated pairs, ticker deduplication, and historical volumes.
PointOracle Feed High-frequency Chainlink & Pyth oracle router calculating 30-minute TWAPs to insulate contracts from sandwich attacks.

Supported stock tokens

The following synthetic equities and indices are registered for pairing inside the ZYNC Launchpad on Robinhood Chain:

SPY QQQ NVDA AAPL TSLA MSFT AMZN GOOGL META AMD NFLX COIN BABA GME AMC PLTR GLD SLV USO INTC

Launch V2 Engine

Token deployment on ZYNC V2 executes in a single atomic transaction. The deployer establishes constituent basket targets, uploads immutable metadata, and optionally executes an atomic developer buy without front-running exposure.

Mixed-Paired Baskets

Launches can configure custom weights across multiple equity tokens (up to 5 assets per basket). The smart contract automatically derives real-time asset pricing through the multi-pool aggregator, preventing portfolio imbalance during volatile market open sequences.

Fees & Policy Epochs

Every token deployed on ZYNC V2 specifies one of three immutable fee policies during contract initialization:

CREATOR FEES

70% to Deployer

1.00% gross trading fee: 70% of swap fees accrue directly to the verified creator address, claimable in USDG at any block interval.

BUYBACK & BURN

Deflationary Sink

Accrued fees are automatically converted via Uniswap v4 routing into the native token and transferred to 0x...dead.

HOLDER DISTRIBUTION

Pro-Rata Yield

Trading fees distribute proportionally to token holders based on on-chain snapshot epochs, bypassing discretionary staking locks.

Launch Protection Window

To neutralize malicious MEV bots and bundle snipers, ZYNC implements a deterministic 5-minute launch protection schedule:

  • Block-Rate Limit: Maximum buy of 1.00% of bonding capacity per transaction during the first 10 blocks.
  • Anti-Sniper Cooldown: Enforces a 1-block delay between sequential transactions from the same originating EOA.
  • Max Wallet Ceiling: No single address can accumulate more than 5.00% of circulating supply until bonding curve completion.

Continuous V3 Markets

Upon achieving $50,000 in bonding liquidity, the contract triggers automated graduation into canonical Uniswap v4 liquidity pools. LP tokens are burned in the constructor transaction, rendering the liquidity 100% permanent and immutable.

Contract Addresses

All canonical contracts are deployed natively on Robinhood Chain (Chain ID: 4663). Verify every interaction with these verified addresses:

ZYNC Launch Hook (v4) 0x00b477A53E917ad07F10400bB2B34ef2fCAA6980
ZYNC Vault & Fee Receiver 0xF5692C78b14f634a239e8E3605439B2ea63f0010
PointOracle Relayer 0xc1c7679e3edA3D0949AB79e125765ddeA302E6a3

API Reference

The ZYNC Indexer provides public REST endpoints for token metrics, bonding curve progress, and real-time prices. Base URL: https://api.zync.fund/v2

GET /api/v2/tokens

Returns a paginated list of tokens deployed on ZYNC, supporting filters for graduation status, fee policy, and trading volume.

Example Response (200 OK)
{
  "tokens": [
    {
      "address": "0x6b1d42927b1a84ec28fa88d4fc6fa7af404966be",
      "symbol": "ZYNC",
      "name": "ZYNC Protocol",
      "graduated": true,
      "mcap_usd": 29175028.00,
      "volume_24h_usd": 8658479.00,
      "paired_assets": ["SPY"]
    }
  ],
  "total": 107,
  "page": 1
}
GET /api/v2/stats/platform

Fetches aggregated protocol volume, active bonding contracts, and historical fee distributions.

Example Response (200 OK)
{
  "volume_24h": 9220450.00,
  "launches_24h": 31,
  "trades_24h": 50820,
  "creator_rewards_distributed_usd": 64530.00,
  "chain_id": 4663
}
POST /api/v2/tokens/deploy-estimate

Simulates a multi-leg developer buy and calculates required initial USDG margin for basket allocations.