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

# Adding Tron Extensions

> Add Tron blockchain support to your Dynamic client

Make sure you enable Tron chain in the [Dynamic dashboard](https://app.dynamic.xyz/dashboard/chains-and-networks#tron).

## Installation

```bash theme={"system"}
npm install @dynamic-labs-sdk/tron
```

## Usage

Import and call `addTronExtension` after creating your Dynamic client:

```javascript theme={"system"}
import { createDynamicClient } from "@dynamic-labs-sdk/client";
import { addTronExtension } from "@dynamic-labs-sdk/tron";

const dynamicClient = createDynamicClient({
  environmentId: "YOUR_ENVIRONMENT_ID",
});

addTronExtension();
```

## Related functions

* [getTronWeb](/javascript/reference/tron/get-tron-web) - Get the TronWeb instance from a wallet account
* [sendTransaction](/javascript/reference/tron/send-transaction) - Send a Tron transaction
* [isTronWalletAccount](/javascript/reference/tron/checking-tron-wallet-account-type) - Check if a wallet account is a Tron account
