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

# Installation

> Install Stellar Address Kit in your language of choice.

## Language Support

Stellar Address Kit is available for the three most common environments in the Stellar ecosystem.

<Tabs>
  <Tab title="TypeScript">
    ```bash theme={null}
    npm install stellar-address-kit
    ```

    <Note>
      Works alongside `stellar-sdk` or `stellar-base`. It handles the extraction logic that the base SDKs leave to the developer.
    </Note>
  </Tab>

  <Tab title="Go">
    ```bash theme={null}
    go get github.com/Boxkit-Labs/stellar-address-kit/packages/core-go
    ```

    <Note>
      Designed to be embedded in high-throughput deposit routing services. Fully compatible with `github.com/stellar/go`.
    </Note>
  </Tab>

  <Tab title="Dart">
    ```bash theme={null}
    dart pub add stellar_address_kit
    ```

    <Note>
      Optimized for Flutter apps. Includes specialized handling for BigInt on Flutter Web to avoid precision loss.
    </Note>
  </Tab>
</Tabs>
