> ## Documentation Index
> Fetch the complete documentation index at: https://docs.caldera.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# What is Metalayer

Metalayer is Caldera's comprehensive interoperability solution that transforms fragmented blockchain networks into a unified Internet of Chains. Built specifically for the rollup-centric future, Metalayer provides the infrastructure needed to move value and execute actions seamlessly across multiple networks.

## The Challenge

The multi-rollup ecosystem faces critical fragmentation:

* **Complex bridging experiences** with multiple providers, varying security models, and confusing UX
* **Asset isolation** where tokens remain trapped on their origin chains
* **Developer overhead** requiring integration with numerous point solutions
* **Liquidity fragmentation** across hundreds of separate networks

## The Solution

Metalayer solves these challenges through two core solutions:

### Bridge Aggregation

A unified interface that aggregates quotes from native bridges, intent-based protocols, and specialized providers to find optimal routes for any cross-chain transfer.

### Omnichain Tokens (Metatoken)

A new standard enabling tokens to exist natively across multiple chains with unified supply and the same contract address everywhere.

## Why Metalayer?

### vs Point Solutions

Rather than integrating with multiple bridge APIs that may become obsolete, Metalayer provides **future-proof infrastructure** that incorporates new bridge technologies and optimizations as they emerge. One integration gives you access to the entire ecosystem of cross-chain solutions.

### vs Other Aggregators

**Ecosystem Integration**: Unlike generic aggregators, Metalayer is deeply integrated with the Caldera rollup ecosystem, providing **day-zero connectivity** for every new rollup launch and shared liquidity across 50+ connected networks.

### Network Effects

Every integration strengthens the entire network:

* **Shared Liquidity**: Aggregated demand across all Metalayer-connected applications
* **Competitive Solver Markets**: More integrations attract more solvers, improving pricing and speed
* **Unified Developer Experience**: Consistent APIs and tools across the entire rollup ecosystem

### Developer Benefits

* **Single Integration**: One SDK replaces dozens of bridge-specific integrations
* **Automatic Updates**: New bridge providers and optimizations added without code changes
* **Unified Interface**: Consistent experience regardless of underlying bridge technology
* **Proven Infrastructure**: Built on battle-tested Hyperlane messaging with custom security enhancements

## Simple Integration

Get started with just a few lines of code:

```typescript theme={null}
import { MetalayerClient } from '@metalayer/sdk';

const client = MetalayerClient.init({
  apiKey: 'your-api-key-here',
  environment: 'mainnet',
});

// Quote from Arbitrum to ApeChain
const quoteData = await client.quote({
  sourceChainId: 42161,
  sourceTokenAddress: '0x0000000000000000000000000000000000000000',
  destinationChainId: 33139,
  destinationTokenAddress: '0x0000000000000000000000000000000000000000',
  amount: BigInt('1000000000'),
  senderAddress: '0xYourAddress',
});
```

## How It Works

Metalayer operates as a three-layer architecture:

1. **Execution Layer**: Aggregates quotes and routes transactions optimally
2. **Solver Ecosystem**: Network of specialized entities that fulfill cross-chain requests
3. **Settlement Layer**: Secure messaging backbone built on Hyperlane for final settlement

Learn more about [how Metalayer works](/metalayer/how-it-works/architecture) in our technical deep-dive.

## Explore Solutions

<CardGroup cols={2}>
  <Card title="Bridge Aggregation" icon="bridge" href="/metalayer/solutions/bridge-aggregation">
    Unified cross-chain transfers with optimal routing
  </Card>

  <Card title="Omnichain Tokens" icon="coins" href="/metalayer/solutions/omnichain-tokens">
    Universal token portability across networks
  </Card>
</CardGroup>

## Get Started

<CardGroup cols={2}>
  <Card title="SDK Integration" icon="code" href="/metalayer/sdk/getting-started">
    Add cross-chain functionality to your app
  </Card>

  <Card title="Bridge Widget" icon="window" href="/metalayer/widget/getting-started">
    Embed a complete bridge interface
  </Card>

  <Card title="How It Works" icon="gear" href="/metalayer/how-it-works/architecture">
    Learn about the technical architecture
  </Card>

  <Card title="Contract Deployments" icon="network-wired" href="/metalayer/resources/contract-deployments">
    View router locations and chain IDs
  </Card>
</CardGroup>
