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

# Supported Tokens

> To check the tokens supported on a particular chain id.

The `getSupportedTokens` function in our SDK provides a utility for determining all the cryptocurrency tokens supported on a specific blockchain.

## Expected parameters:

`getSupportedTokens` accepts the following parameters:

* `chainId`: The chain id of the network&#x20;

## Function Call

```typescript theme={null}
let supportedTokens = await aarcCoreSDK.getSupportedTokens(
    137 // Chain id of the network
)
```

## Response

The response from the `getSupportedTokens` will be:

```typescript theme={null}
{
    "success": boolean,
    "result": [
        {
            "chainId": number,
            "address": string,
            "name": string,
            "symbol": string,
            "decimals": number,
            "logoURI": string
        }
    ]
}   
```

## Support

If you face any trouble, feel free to reach out to our engineers in the [Telegram support group](https://t.me/aarcxyz).
