Skip to main content

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

import { DEFAULT_GAS_PRICE_MULTIPLIER } from '@initia/interwovenkit-react'

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

Value

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.