Skip to main content

Documentation Index

Fetch the complete documentation index at: https://initialabs-mintlify-changelog-interwovenkit-1777853576.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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.