Skip to main content

Ecosystem Metrics (ecosystem)

Pre-computed network statistics. See Hedera Stats for each metric's methodology.

7 queryable tables. Every table supports the standard Hasura query arguments — where, order_by, limit, offset, distinct_on — plus an _aggregate field.

Access: All plans, including Free

Tables

_nft_collection_sales_volume

ColumnPostgres typeGraphQL type
token_idbigintbigint
collection_nametextString
nft_periodtimestamp without time zonetimestamp
totalbigintbigint
query Get_nftCollectionSalesVolume {
ecosystem__nft_collection_sales_volume(limit: 10) {
token_id
collection_name
nft_period
total
}
}

_nft_collection_sales_volume_total

ColumnPostgres typeGraphQL type
token_idbigintbigint
collection_nametextString
totalbigintbigint
query Get_nftCollectionSalesVolumeTotal {
ecosystem__nft_collection_sales_volume_total(limit: 10) {
token_id
collection_name
total
}
}

_top_fungible_tokens_hts

ColumnPostgres typeGraphQL type
rankintegerInt
market_cap_rankintegerInt
volume_rankintegerInt
token_symboltextString
token_nametextString
token_idbigintbigint
composite_scorenumericnumeric
market_cap_contributionnumericnumeric
volume_contributionnumericnumeric
tx_contributionnumericnumeric
price_usdnumericnumeric
pct_change_24hnumericnumeric
market_cap_usdnumericnumeric
volume_usdnumericnumeric
transaction_countbigintbigint
unique_accountsbigintbigint
liquidity_usdnumericnumeric
normalized_market_capnumericnumeric
normalized_volumenumericnumeric
normalized_transactionsnumericnumeric
price_as_oftimestamp with time zonetimestamptz
bound_min_ln_mcapnumericnumeric
bound_max_ln_mcapnumericnumeric
bound_min_ln_volnumericnumeric
bound_max_ln_volnumericnumeric
bound_min_ln_txnumericnumeric
bound_max_ln_txnumericnumeric
query Get_topFungibleTokensHts {
ecosystem__top_fungible_tokens_hts(limit: 10) {
rank
market_cap_rank
volume_rank
token_symbol
}
}

active_nft_account_cohorts

ColumnPostgres typeGraphQL type
periodtextString
cohorttimestamp without time zonetimestamp
timestamp_rangeint8rangeint8range
totalbigintbigint
query GetActiveNftAccountCohorts {
ecosystem_active_nft_account_cohorts(limit: 10) {
period
cohort
timestamp_range
total
}
}

metric

ColumnPostgres typeGraphQL type
nametextString
periodtextString
timestamp_rangeint8rangeint8range
totalbigintbigint
query GetMetric {
ecosystem_metric(limit: 10) {
name
period
timestamp_range
total
}
}

metric_description

ColumnPostgres typeGraphQL type
nametextString
descriptiontextString
methodologytextString
query GetMetricDescription {
ecosystem_metric_description(limit: 10) {
name
description
methodology
}
}

transaction_count_by_type

ColumnPostgres typeGraphQL type
typesmallintsmallint
totalbigintbigint
query GetTransactionCountByType {
ecosystem_transaction_count_by_type(limit: 10) {
type
total
}
}