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

# DEFAULT_GAS_PRICE_MULTIPLIER

## Overview

* Default gas price multiplier used for non-INIT fee tokens on Layer 1 chains.
* Reference only if you need to reproduce InterwovenKit's fee calculation logic.

## Quickstart

```ts theme={null}
import { DEFAULT_GAS_PRICE_MULTIPLIER } from '@initia/interwovenkit-react'

// Reproduce InterwovenKit's fee calculation logic
const adjustedPrice = baseGasPrice * DEFAULT_GAS_PRICE_MULTIPLIER
```

## Value

```ts theme={null}
const DEFAULT_GAS_PRICE_MULTIPLIER: number // 1.05
```

## Notes

* InterwovenKit applies this automatically when suggesting fees.
* Reference only if building custom fee calculation logic that needs to match
  InterwovenKit's behavior.
