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

# AssetDeployment

> Codex Grid-compat — one (network, address) deployment of an Asset.

### TypeScript shape

```ts theme={null}
interface AssetDeployment {
  id: string;
  networkId: number;
  address: string;
  standard: string | null;
  assetId: string;
  rootId: string;
  token: EnhancedToken | null;
}
```

<ResponseField name="id" type="String!">
  Deployment identifier.
</ResponseField>

<ResponseField name="networkId" type="Int!">
  Network ID this deployment lives on.
</ResponseField>

<ResponseField name="address" type="String!">
  Contract address of the deployment.
</ResponseField>

<ResponseField name="standard" type="String">
  Token standard for this deployment (e.g. ERC20, SPL).
</ResponseField>

<ResponseField name="assetId" type="String!">
  ID of the parent [Asset](/api-reference/graphql/types/Asset).
</ResponseField>

<ResponseField name="rootId" type="String!">
  Root identifier shared across all deployments of the asset.
</ResponseField>

<ResponseField name="token" type="EnhancedToken">
  The enriched token for this deployment, if resolved. See [EnhancedToken](/api-reference/graphql/types/EnhancedToken).
</ResponseField>
