This schema contains comprehensive datasets for tracking Virtuals Protocol fundamental data across multiple metrics categories, including AI agent activity, trading volume, fee distribution, token economics, and market data for the decentralized AI agent marketplace.
The total amount of fees (in USD) paid by users on Virtuals Protocol
ez_metrics
fees
The sum of all taxes, 1% fee on all trades, and agent fees (in USD) paid on Virtuals Protocol
ez_metrics
service_fee_allocation
All fees paid to AI agents on Virtuals Protocol
ez_metrics
treasury_fee_allocation
Revenue allocated to the protocol’s treasury. All taxes paid on trades first go to the treasury, then post-bond are distributed across Agent Creator (30%), Agent Affiliates (20%), and Agent subDAO (50%)
ez_metrics
fee_fun_usd
Agent fees collected in USD (legacy naming)
ez_metrics
fee_fun_native
Agent fees collected in native tokens (legacy naming)
-- Pull fundamental activity data for Virtuals ProtocolSELECT date, daily_agents, spot_dau, spot_volume, spot_fees, fees, priceFROM art_share.virtuals.ez_metricsWHERE date >= DATEADD(month, -3, CURRENT_DATE())ORDER BY date ASC
-- Analyze AI agent activity and user engagementSELECT date, daily_agents, spot_dau, spot_volume, spot_volume / NULLIF(spot_dau, 0) as avg_volume_per_user, spot_volume / NULLIF(daily_agents, 0) as avg_volume_per_agent, spot_dau / NULLIF(daily_agents, 0) as avg_users_per_agentFROM art_share.virtuals.ez_metricsWHERE date >= DATEADD(month, -2, CURRENT_DATE()) AND daily_agents > 0ORDER BY date ASC