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

# Tempo

> Build on Tempo's high-performance chain

<Warning>
  **Looking for Contributors!** This Skill needs an implementation.

  Contributing a Skill involves:

  1. Writing a reference implementation with full functionality
  2. Adding comprehensive tests
  3. Writing documentation with usage examples

  See the [ethers-provider Skill](https://github.com/evmts/voltaire/tree/main/examples/ethers-provider) for an example of a complete Skill implementation.

  Interested? Open an issue or PR at [github.com/evmts/voltaire](https://github.com/evmts/voltaire).
</Warning>

<Info>
  **Skill** — Copyable reference implementation. Use as-is or customize. See [Skills Philosophy](/concepts/skills).
</Info>

Build applications on Tempo's high-throughput chain.

## Planned Implementation

### Provider Setup

```typescript theme={null}
import { Tempo } from './Tempo.js';

const tempo = Tempo({
  rpcUrl: 'https://rpc.tempo.xyz',
});

// Standard EVM interactions work
const balance = await tempo.getBalance(address);
const block = await tempo.getBlockNumber();
```

### Chain-Specific Features

```typescript theme={null}
// Tempo-specific precompiles or features
// (Implementation details TBD based on Tempo's architecture)
```

### Bridge Integration

```typescript theme={null}
// Bridge assets to/from Tempo
// (Implementation details TBD)
```

## Resources

* [Tempo Documentation](https://docs.tempo.xyz/)

## Related

* [arbitrum](/skills/arbitrum) — Arbitrum L2
* [op-stack](/skills/op-stack) — OP Stack chains
