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

# Contract Addresses

> All contract addresses for the Livepeer protocol.

<Warning>
  **This page documents a deprecated SDK version.** For current contract addresses, see:
  **[Livepeer Contract Addresses](/v2/about/resources/livepeer-contract-addresses)**
</Warning>

All contract addresses for the Livepeer protocol.

## Addresses

The addresses for the protocol contracts are provided in a simple import with
types.

<Tabs>
  <Tab title="React">
    ```tsx theme={"theme":{"light":"github-light","dark":"dark-plus"}}
    import {
      arbitrumOneAddress,
      arbitrumRinkebyAddress,
      mainnetAddress,
      rinkebyAddress,
    } from '@livepeer/react';
    ```
  </Tab>

  <Tab title="React Native">
    ```tsx theme={"theme":{"light":"github-light","dark":"dark-plus"}}
    import {
      arbitrumOneAddress,
      arbitrumRinkebyAddress,
      mainnetAddress,
      rinkebyAddress,
    } from '@livepeer/react-native';
    ```
  </Tab>
</Tabs>

These addresses will be expanded upon in a future version of Livepeer React to
include more in-depth contract interaction.

## Chain IDs

There are exports for the chain IDs the Livepeer protocol is currently deployed
on. This includes both Arbitrum One/mainnet and testnet chains.

<Tabs>
  <Tab title="React">
    ```tsx theme={"theme":{"light":"github-light","dark":"dark-plus"}}
    import {
      allChainId, mainnetChainId, testnetChainId
    } from '@livepeer/react';
    ```
  </Tab>

  <Tab title="React Native">
    ```tsx theme={"theme":{"light":"github-light","dark":"dark-plus"}}
    import {
      allChainId, mainnetChainId, testnetChainId
    } from '@livepeer/react-native';
    ```
  </Tab>
</Tabs>
