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

NFT Gas Efficiency Rankings

Implementation Details

Class Names

Model Name
Parameters Class
Data Class

NFTGasEfficiencyRankings

NFTGasEfficiencyQueryParams

NFTGasEfficiencyData

Import Statement

pythonCopyEditfrom satoshi_terminal.models.nft_gas_efficiency_rankings import (
    NFTGasEfficiencyRankings,
    NFTGasEfficiencyQueryParams,
    NFTGasEfficiencyData,
)

Parameters

Name
Type
Description
Default
Optional

collection_name

Union[str, List[str]]

NFT collection(s) to analyze (e.g., Bored Ape Yacht Club, CryptoPunks).

None

False

time_horizon

int

Time window (in hours) for evaluating gas efficiency.

24

True

transaction_type

str

Specific transaction type to monitor (e.g., "Minting," "Trading").

None

True


Data

Name
Type
Description

collection_name

str

Name of the NFT collection analyzed.

average_gas_cost

float

Average gas cost per transaction (in ETH).

transaction_type

str

Type of transaction analyzed (e.g., "Minting").

efficiency_rank

int

Gas efficiency rank of the collection compared to peers.

timestamp

datetime

Timestamp of the analysis.


Key Features

  • Gas Efficiency Scoring: Ranks NFT collections by their average gas cost per transaction.

  • Transaction-Specific Insights: Provides gas efficiency metrics for minting, trading, and transfers.

  • Competitive Benchmarking: Compares collections to highlight cost-effective ecosystems.

Last updated