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

# Networkish

```ts theme={null}
type Networkish: 
  | Network
  | number
  | bigint
  | string
  | {
  "chainId": number;
  "name": string;
};
```

A Networkish can be used to allude to a Network, by specifying:

* A [Network](/sdk/content/classes/Network) object
* A well-known (or registered) network name
* A well-known (or registered) chain ID
* An object with sufficient details to describe a network

## Source

[providers/network.ts:21](https://github.com/dominant-strategies/quais.js/blob/c1c12d43f9d34c6baad2b0542bd6d0acd6fefcbf/src/providers/network.ts#L21)
