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

# Token Factory

Example code snippets to query the chain for token factory module related data.

## Using gRPC

### Fetch all denoms created by *creator*

```ts lines highlight={1} theme={null}
import { getNetworkEndpoints, Network } from "@injectivelabs/networks";
import { ChainGrpcTokenFactoryApi } from "@injectivelabs/sdk-ts/client/chain";

const endpoints = getNetworkEndpoints(Network.Testnet);
const chainGrpcTokenFactoryApi = new ChainGrpcTokenFactoryApi(endpoints.grpc);

const creator = "inj...";
const denoms = await chainGrpcTokenFactoryApi.fetchDenomsFromCreator(creator);

console.log(denoms);
```

### Fetch denom authority metadata (i.e fetch admin of a token)

```ts theme={null}
import { getNetworkEndpoints, Network } from "@injectivelabs/networks";
import { ChainGrpcTokenFactoryApi } from "@injectivelabs/sdk-ts/client/chain";

const endpoints = getNetworkEndpoints(Network.Testnet);
const chainGrpcTokenFactoryApi = new ChainGrpcTokenFactoryApi(endpoints.grpc);

const creator = "inj...";
const subdenom = "NINJA";
const metadata = await chainGrpcTokenFactoryApi.fetchDenomAuthorityMetadata(
  creator,
  subdenom
);

console.log(metadata);
```
