Skip to main content

View your Bridge Wrapped

Bridge Wrapped makes it easy to visualize your cross-chain bridging activity. You can access your stats by connecting your wallet or looking up any Ethereum address.
1

Visit Bridge Wrapped

Navigate to the Bridge Wrapped landing page. You’ll see the main hero section with the title “Bridge Wrapped” and the current year (2025).The page displays: “Discover your cross-chain bridging journey in 2025” with a note that data is aggregated from Across, Relay & LiFi.
2

Connect your wallet or enter an address

You have two options to view bridging stats:

Option 1: Connect your wallet

Click the Connect Wallet button in the top right corner. This uses RainbowKit and supports all major Ethereum wallets.Once connected:
  • Your wallet address appears in the header
  • Click Get Your Wrapped to fetch your stats
You can switch between different chains after connecting. Bridge Wrapped will still query your address across all supported chains.

Option 2: Look up any address

Enter an Ethereum address or ENS name in the search field:
0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb
Click Look up to fetch stats for that address.
ENS names are automatically resolved to Ethereum addresses. If resolution fails, you’ll see a helpful error message.
3

Wait for data aggregation

Bridge Wrapped queries all three bridge protocols in parallel:
  • Across Protocol API at https://app.across.to/api
  • Relay API at https://api.relay.link
  • LiFi API at https://li.quest/v1
You’ll see a loading screen with the message: “Fetching your bridging history…” and “Querying Across, Relay, and LiFi for your transactions…”This typically takes 3-10 seconds depending on your transaction count.
Transactions are deduplicated based on transaction hash and chain pair to ensure accurate counts.
4

Experience your Wrapped

If bridging activity is found, you’ll enter the interactive Wrapped experience with multiple slides:
  • Click left or right half of the screen to navigate
  • Arrow keys (← →) to move between slides
  • Spacebar to advance to next slide
  • Progress dots at the bottom show your position

Slide sequence

  1. Intro slide - “Bridge Wrapped 2025”
  2. Total bridges - Your total bridging actions count
  3. Top source chain - Most frequently used source chain (src/app/page.tsx:123)
  4. Top destination - Most popular destination chain
  5. Volume slide - Total volume in USD
  6. Top token - Most bridged token by count
  7. Busiest day - Day with most bridges and primary destination
  8. User class - Your classification based on activity (src/components/wrapped/slides/UserClassSlide.tsx:1)
  9. Avail Nexus - Special promotional slide
  10. Summary - Final recap slide
Some slides may be skipped if you don’t have data for them. For example, if you only bridged once, there won’t be a “busiest day” slide.
5

View detailed summary

After completing the Wrapped experience, you’ll see a detailed statistics summary page with:

Charts and visualizations

  • Monthly activity bar chart - Bridging count per month
  • Destination chains pie chart - Distribution across chains
  • Busiest day card - Highlighted day with transaction count

Statistics tables

  • Total bridges count
  • Total volume in USD
  • Top source chain
  • Top destination chain

Your user class

See your cross-chain classification with:
  • Class title and description
  • Rarity stars (★ rating)
  • Class-specific image
Click View Wrapped Experience at any time to replay the slides.

No bridging activity?

If no bridging transactions are found for the address in 2025, you’ll see:
  • A “No Bridges Found” message
  • Suggestion to try a different address
  • Try Another Address button to search again
This can happen if:
  • The address has no bridging activity in 2025
  • The address only used bridges not supported by Bridge Wrapped
  • You entered an invalid address or ENS name

API endpoint reference

Bridge Wrapped uses the following API endpoint defined in src/app/api/bridge-stats/[address]/route.ts:10:
GET /api/bridge-stats/{address}?year={year}

Parameters

  • address (required) - Valid Ethereum address (0x…)
  • year (optional) - Year to query, defaults to 2025

Response

Returns a BridgeWrappedStats object with:
{
  walletAddress: string;
  year: number;
  totalBridgingActions: number;
  totalVolumeUSD: number;
  mostUsedSourceChain: ChainStats | null;
  mostUsedDestinationChain: ChainStats | null;
  // ... more fields
}

View full API reference

See complete API documentation with request/response examples.

Next steps

Understand user classification

Learn how Bridge Wrapped classifies users based on activity.

Bridge aggregation

See how transactions are fetched and normalized across protocols.

Supported chains

View all supported source and destination chains.

Wallet connection

Learn about RainbowKit integration and ENS support.

Build docs developers (and LLMs) love