For the complete documentation index, see llms.txt. This page is also available as Markdown.

Gas Fee Optimization Alerts

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

GasFeeOptimizationAlerts

GasFeeOptimizationQueryParams

GasFeeOptimizationData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.gas_fee_optimization_alerts import (
    GasFeeOptimizationAlerts,
    GasFeeOptimizationQueryParams,
    GasFeeOptimizationData,
)

Parameters

Name
Type
Description
Default
Optional

blockchain_name

str

Blockchain to monitor for gas fee optimization (e.g., Ethereum, Binance Smart Chain).

None

False

activity_type

str

Type of activity to optimize fees for (e.g., "Swaps," "Token Transfers").

None

True

monitoring_interval

int

Frequency (in minutes) for checking gas fee optimization opportunities.

10

True


Data

Name
Type
Description

blockchain_name

str

Blockchain analyzed for gas fee optimization.

recommended_time

datetime

Optimal time for executing the transaction to minimize fees.

current_gas_fee

float

Current average gas fee.

optimized_gas_fee

float

Projected gas fee savings at the recommended time.

timestamp

datetime

Timestamp of the analysis.


Key Features

  • Real-Time Fee Optimization: Alerts users to the best times for executing transactions to save on gas fees.

  • Activity-Specific Optimization: Provides tailored insights for different types of activities (e.g., swaps, minting).

  • Predictive Analysis: Uses historical data to forecast future gas fee trends.

Last updated