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

# ExplorerConfig

> Block explorer metadata: name, url, icon, checksummed. Used in all NetworkConfig member types.

### TypeScript shape

```ts theme={null}
interface ExplorerConfig {
  checksummed: boolean;
  icon: string;
  name: string;
  url: string;
}
```

<ResponseField name="name" type="String!">Explorer display name.</ResponseField>

<ResponseField name="url" type="String!">Base URL for the block explorer.</ResponseField>

<ResponseField name="icon" type="String!">URL of the explorer icon.</ResponseField>

<ResponseField name="checksummed" type="Boolean!">Whether addresses are checksummed.</ResponseField>
