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 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:
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:
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.
Deflationary Sink
Accrued fees are automatically converted via Uniswap v4 routing into the native token and transferred to 0x...dead.
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:
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
/api/v2/tokens
Returns a paginated list of tokens deployed on ZYNC, supporting filters for graduation status, fee policy, and trading volume.
{
"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
}
/api/v2/stats/platform
Fetches aggregated protocol volume, active bonding contracts, and historical fee distributions.
{
"volume_24h": 9220450.00,
"launches_24h": 31,
"trades_24h": 50820,
"creator_rewards_distributed_usd": 64530.00,
"chain_id": 4663
}
/api/v2/tokens/deploy-estimate
Simulates a multi-leg developer buy and calculates required initial USDG margin for basket allocations.