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

# List supported chains and tokens

> Returns all chains supported by the deposit service, with their tokens and whether they support deposits, bridging destinations, or both



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /chains
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /chains:
    get:
      tags:
        - Info
      summary: List supported chains and tokens
      description: >-
        Returns all chains supported by the deposit service, with their tokens
        and whether they support deposits, bridging destinations, or both
      responses:
        '200':
          description: Supported chains with their tokens
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChainsResponse'
components:
  schemas:
    ChainsResponse:
      type: object
      additionalProperties:
        type: object
        properties:
          name:
            type: string
          testnet:
            type: boolean
          deposit:
            type: boolean
          destination:
            type: boolean
          supportedTokens:
            anyOf:
              - type: string
                enum:
                  - all
              - type: array
                items:
                  type: object
                  properties:
                    symbol:
                      type: string
                    address:
                      type: string
                    decimals:
                      type: number
                  required:
                    - symbol
                    - address
                    - decimals
        required:
          - name
          - testnet
          - deposit
          - destination
          - supportedTokens

````