From question to dashboard
A single question that triggers schema discovery, SQL, execution, visualization, and sharing.Schema search
The assistant searches for relevant tables and finds
crosschain.dex.trades. It checks documentation for best practices on stablecoin analysis.SQL generation and validation
EXPLAIN before asking you to confirm execution.Dashboard creation
After execution, the assistant:
- Creates a dashboard with an area chart showing stablecoin volume share over time
- Adds a summary table with total volume by issuer
- Makes the dashboard public and returns a share link
Real-time portfolio analysis
Using real-time APIs (no SQL) to analyze a wallet’s holdings.Address resolution
The assistant resolves
vitalik.eth to 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 and looks up the address label to confirm it’s Vitalik Buterin’s wallet.Balance lookup
Calls the real-time wallet balances API to get current token holdings across chains - no SQL query needed.
Price enrichment
Fetches current token prices for all held tokens to calculate USD values and portfolio allocation.
Cross-chain comparison
Multi-chain analysis using SQL with schema discovery.Schema discovery
The assistant searches for gas-related schemas across multiple chains. It finds
<chain>.raw.transactions tables and documentation on gas calculation differences between L2s.Cross-chain SQL
Writes a
UNION ALL query across multiple L2 chains (Arbitrum, Optimism, Base, Polygon zkEVM, etc.), calculating average gas cost in USD per simple transfer.Building on previous context
A multi-turn conversation showing how the assistant builds on earlier work.Turn 1: Initial question
ethereum.dex.trades, writes SQL filtering for Uniswap, and returns daily active wallet counts.Turn 2: Refine
Turn 3: Expand scope
WHERE clause and grouping.Turn 4: Visualize
- Line chart of daily active wallets by DEX over time
- Stacked bar chart showing version breakdown for Uniswap