> ## 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.

# NetworkConfigType

> Enum of network config kinds: EVM, SOLANA, SUI, APTOS, STARKNET.

### TypeScript shape

```ts theme={null}
type NetworkConfigType =
  | 'SOLANA'
  | 'EVM'
  | 'SUI'
  | 'APTOS'
  | 'STARKNET';
```

<ResponseField name="EVM" type="enum">
  EVM-compatible chain (Ethereum, Base, Arbitrum, etc.).
</ResponseField>

<ResponseField name="SOLANA" type="enum">
  Solana.
</ResponseField>

<ResponseField name="SUI" type="enum">
  Sui.
</ResponseField>

<ResponseField name="APTOS" type="enum">
  Aptos.
</ResponseField>

<ResponseField name="STARKNET" type="enum">
  Starknet.
</ResponseField>
