Interface ChainGasInfo

Represents the gas information for a specific Sei network, including the default minimum gas price and module-specific adjustments.

interface ChainGasInfo {
    denom: string;
    min_gas_price: number;
    module_adjustments: ModuleAdjustments;
}

Properties

denom: string

The denomination of the gas fee.

min_gas_price: number

The minimum gas price required for transactions on the network.

module_adjustments: ModuleAdjustments

Gas price adjustments for specific modules.