# StarknetConfig

```
type StarknetConfig = object;
```

Defined in: [atomiq-chain-starknet/src/starknet/chain/StarknetChainInterface.ts:22](https://github.com/atomiqlabs/atomiq-chain-starknet/blob/697277c430597a8514a43540ef8b9a10e2b6a595/src/starknet/chain/StarknetChainInterface.ts#L22)

Configuration options for Starknet chain interface

## Properties

### getLogChunkSize?

```
optional getLogChunkSize: number;
```

Defined in: [atomiq-chain-starknet/src/starknet/chain/StarknetChainInterface.ts:28](https://github.com/atomiqlabs/atomiq-chain-starknet/blob/697277c430597a8514a43540ef8b9a10e2b6a595/src/starknet/chain/StarknetChainInterface.ts#L28)

Limit of the number of events retrieved by a single `starknet_getEvents` RPC call.

Defaults to 100 events

***

### getLogForwardBlockRange?

```
optional getLogForwardBlockRange: number;
```

Defined in: [atomiq-chain-starknet/src/starknet/chain/StarknetChainInterface.ts:35](https://github.com/atomiqlabs/atomiq-chain-starknet/blob/697277c430597a8514a43540ef8b9a10e2b6a595/src/starknet/chain/StarknetChainInterface.ts#L35)

When fetching events in the forward direction, sets the limit on the number of blocks to fetch in a single `starknet_getEvents` RPC call.

Defaults to 2000 blocks

***

### maxGetLogKeys?

```
optional maxGetLogKeys: number;
```

Defined in: [atomiq-chain-starknet/src/starknet/chain/StarknetChainInterface.ts:41](https://github.com/atomiqlabs/atomiq-chain-starknet/blob/697277c430597a8514a43540ef8b9a10e2b6a595/src/starknet/chain/StarknetChainInterface.ts#L41)

Maximum numbers of keys allowed to be specified in a single `starknet_getEvents` RPC call

Defaults to 64 keys

***

### maxParallelCalls?

```
optional maxParallelCalls: number;
```

Defined in: [atomiq-chain-starknet/src/starknet/chain/StarknetChainInterface.ts:45](https://github.com/atomiqlabs/atomiq-chain-starknet/blob/697277c430597a8514a43540ef8b9a10e2b6a595/src/starknet/chain/StarknetChainInterface.ts#L45)

Maximum number of parallel contract calls to execute in batch functions
