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

# GenericNetwork

An object representing a generic network, such as an EVM or Solana L2.

Exported by `@dynamic-labs/sdk-api-core`.

```typescript
type GenericNetwork = {
  blockExplorerUrls: Array<string>
  chainId: number | string
  chainName?: string
  iconUrls: Array<string>
  lcdUrl?: string
  name: string
  nameService?: NameService
  nativeCurrency: NativeCurrency
  networkId: number | string
  privateCustomerRpcUrls?: Array<string>
  rpcUrls: Array<string>
  vanityName?: string
}
```

See also [NameService](/react-sdk/objects/NameService) and [NativeCurrency](/react-sdk/objects/NativeCurrency).

<Note>The `lcdUrl` field is only required for Cosmos networks.</Note>
