> ## Documentation Index
> Fetch the complete documentation index at: https://na-36-mintlify-aebde2c5.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Arbitrum Exchanges

> Where to acquire ETH (for gas) and LPT (for staking) on Arbitrum One – exchanges, bridges, and DEXs for Livepeer orchestrators.

export const CustomDivider = ({color = "var(--lp-color-border-default)", middleText = "", spacing = "default", style = {}, className = "", ...rest}) => {
  const spacingPresets = {
    default: {
      margin: "24px 0"
    },
    overlap: {
      margin: "-1rem 0 -1rem 0"
    },
    tight: {
      margin: "0 0 -1rem 0"
    },
    section: {
      margin: "0 0 -2rem 0"
    },
    sectionOverlap: {
      margin: "-1rem 0 -2rem 0"
    },
    deepOverlap: {
      margin: "-1rem 0 -1.5rem 0"
    }
  };
  const spacingStyle = spacingPresets[spacing] || spacingPresets.default;
  return <div role="separator" aria-orientation="horizontal" className={className} style={{
    display: "flex",
    alignItems: "center",
    ...spacingStyle,
    fontSize: style?.fontSize || "16px",
    height: "fit-content",
    ...style
  }} {...rest}>
      <span style={{
    marginRight: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
      </span>
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      {middleText && <>
          <Icon icon="circle" size={2} />
          <span style={{
    margin: "0 8px",
    fontWeight: "bold",
    color: color,
    opacity: 0.7
  }}>
            {middleText}
          </span>
          <Icon icon="circle" size={2} />
        </>}
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      <span style={{
    marginLeft: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <span style={{
    display: "inline-block",
    transform: "scaleX(-1)"
  }}>
          <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
        </span>
      </span>
    </div>;
};

export const TableCell = ({children, align = "left", header = false, style = {}, className = "", ...rest}) => {
  const Component = header ? "th" : "td";
  return <Component className={className} style={{
    padding: "0.75rem 1rem",
    textAlign: align,
    border: header ? "none" : "1px solid var(--lp-color-border-default)",
    ...style
  }} {...rest}>
      {children}
    </Component>;
};

export const TableRow = ({children, header = false, hover = false, style = {}, className = "", ...rest}) => {
  const rowId = `table-row-${Math.random().toString(36).substr(2, 9)}`;
  return <>
      {hover && <style>{`
          #${rowId}:hover {
            background-color: var(--lp-color-bg-card);
          }
        `}</style>}
      <tr id={rowId} className={className} style={{
    ...header && ({
      backgroundColor: "var(--lp-color-accent-strong)",
      color: "var(--lp-color-on-accent)",
      fontWeight: "bold"
    }),
    ...style
  }} {...rest}>
        {children}
      </tr>
    </>;
};

export const StyledTable = ({children, variant = "default", style = {}, className = "", ...rest}) => {
  const wrapperVariants = {
    default: {
      border: "1px solid var(--lp-color-border-default)",
      backgroundColor: "var(--lp-color-bg-card)",
      overflow: "hidden"
    },
    bordered: {
      border: "2px solid var(--lp-color-accent)",
      backgroundColor: "var(--lp-color-bg-page)",
      overflow: "hidden"
    },
    minimal: {
      border: "none",
      backgroundColor: "transparent",
      overflow: "visible"
    }
  };
  return <div data-docs-styled-table-shell className={className} style={{
    width: "100%",
    padding: 0,
    margin: 0,
    ...wrapperVariants[variant],
    ...style
  }} {...rest}>
      <table data-docs-styled-table style={{
    width: "100%",
    borderCollapse: "collapse",
    borderSpacing: 0,
    margin: 0,
    backgroundColor: "transparent"
  }}>
        {children}
      </table>
    </div>;
};

Orchestrators need two tokens on Arbitrum One:

* **ETH** – for gas (reward calls, ticket redemption, service registration, staking transactions)
* **LPT** – for staking (self-delegation to enter the active Orchestrator set)

<CustomDivider />

## ETH on Arbitrum

ETH is the gas token on Arbitrum One. Gas costs are significantly lower than Ethereum L1.

### Getting ETH to Arbitrum

<StyledTable variant="bordered">
  <TableRow header>
    <TableCell header>Method</TableCell>
    <TableCell header>Notes</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>[Arbitrum Bridge](https://bridge.arbitrum.io/)</TableCell>
    <TableCell>Official bridge from Ethereum L1 to Arbitrum One. Bridge time: \~10 minutes L1→L2, \~7 days L2→L1.</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>[Hop Protocol](https://hop.exchange/)</TableCell>
    <TableCell>Cross-chain bridge supporting Arbitrum. Faster L2→L1 withdrawals (minutes, not days).</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>[Stargate](https://stargate.finance/)</TableCell>
    <TableCell>Cross-chain bridge via LayerZero.</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>Direct withdrawal from CEX</TableCell>
    <TableCell>Many centralised exchanges (Binance, Coinbase, Kraken, OKX) support direct withdrawal to Arbitrum One – check your exchange's withdrawal network options. This avoids bridging entirely.</TableCell>
  </TableRow>
</StyledTable>

<CustomDivider />

## LPT on Arbitrum

LPT is the Livepeer Protocol token. Orchestrators stake LPT to enter the Active Set and earn inflation rewards.

### Acquiring LPT

<StyledTable variant="bordered">
  <TableRow header>
    <TableCell header>Method</TableCell>
    <TableCell header>Notes</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>[Uniswap (Arbitrum)](https://app.uniswap.org/swap?chain=arbitrum)</TableCell>
    <TableCell>Primary DEX for LPT/ETH swaps on Arbitrum One. Deepest liquidity.</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>[Arbitrum Bridge](https://bridge.arbitrum.io/)</TableCell>
    <TableCell>Bridge LPT from Ethereum L1 to Arbitrum One if you already hold LPT on L1.</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>Centralised exchanges</TableCell>
    <TableCell>Some CEXs list LPT – check whether they support Arbitrum One withdrawals directly, or only Ethereum L1 (which would require a subsequent bridge).</TableCell>
  </TableRow>
</StyledTable>

### LPT Contract Address (Arbitrum One)

```icon="terminal" theme={"theme":{"light":"github-light","dark":"dark-plus"}}
0x289ba1701C2F088cf0faf8B3705246331cB8A839
```

<Warning>
  Always verify the token contract address before swapping. Scam tokens with similar names exist on DEXs.
</Warning>

<CustomDivider />

## How Much Do You Need?

<StyledTable variant="bordered">
  <TableRow header>
    <TableCell header>Token</TableCell>
    <TableCell header>Purpose</TableCell>
    <TableCell header>Rough Estimate</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>ETH</TableCell>
    <TableCell>Gas for activation, reward calls, ticket redemption</TableCell>
    <TableCell>0.01–0.05 ETH is sufficient for weeks of operation at current Arbitrum gas prices</TableCell>
  </TableRow>

  <TableRow>
    <TableCell>LPT</TableCell>
    <TableCell>Self-stake to enter the Active Set (top 100)</TableCell>
    <TableCell>Check [Explorer](https://explorer.livepeer.org) for the current 100th Orchestrator's stake – that is the minimum threshold</TableCell>
  </TableRow>
</StyledTable>

<Note>
  The LPT required to enter the Active Set changes over time as Orchestrators join and leave. The threshold has historically ranged from a few hundred to multiple thousand LPT.
</Note>

<CustomDivider />

## See Also

<CardGroup cols={3}>
  <Card title="Arbitrum RPCs" href="/v2/orchestrators/resources/arbitrum-rpc" icon="server" />

  <Card title="Staking LPT" href="/v2/orchestrators/setup/connect-and-activate" icon="coins" />

  <Card title="Contract Addresses" href="/v2/orchestrators/resources/technical/x-contract-addresses" icon="file-contract" />
</CardGroup>
