Interface ModuleAdjustments

Defines the gas price adjustments for specific modules within the Sei blockchain, allowing for differentiated gas pricing based on transaction type.

interface ModuleAdjustments {
    dex: {
        order_cancellation: number;
        order_placement: number;
        sudo_gas_price: number;
    };
}

Properties

Properties

dex: {
    order_cancellation: number;
    order_placement: number;
    sudo_gas_price: number;
}

Adjustments specifically for decentralized exchange (DEX) transactions.

Type declaration

  • order_cancellation: number

    The gas price for canceling orders on the DEX.

  • order_placement: number

    The gas price for placing orders on the DEX.

  • sudo_gas_price: number

    The sudo (superuser) gas price for critical operations.