Inter-Chain Fee Analysis

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

InterChainFeeAnalysis

InterChainFeeQueryParams

InterChainFeeData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.inter_chain_fee_analysis import (
    InterChainFeeAnalysis,
    InterChainFeeQueryParams,
    InterChainFeeData,
)

Parameters

Name
Type
Description
Default
Optional

source_chain

str

Source blockchain for transactions.

None

False

target_chain

str

Target blockchain for transactions.

None

False

transaction_type

str

Type of transaction to analyze (e.g., "Bridging," "Swapping").

"Bridging"

True

time_horizon

int

Time window (in hours) for analyzing inter-chain fees.

24

True


Data

Name
Type
Description

source_chain

str

Source blockchain analyzed.

target_chain

str

Target blockchain analyzed.

average_transaction_fee

float

Average fee for the specified transaction type (in USD).

fee_variation

float

Percentage variation in fees across chains.

timestamp

datetime

Timestamp of the fee analysis.


Key Features

  • Cross-Chain Fee Comparisons: Highlights fee discrepancies for similar transactions across chains.

  • Activity-Specific Insights: Focuses on specific transaction types like bridging and swaps.

  • Fee Trend Analysis: Tracks how inter-chain fees evolve over time.

Last updated