Transaction Count
Contents
ETF Tx Cnt (TxEtfCnt)
ETF Tx Cnt
Definition
The sum count of transactions that involved any address belonging to an exchange, as a sender or recipient of a non-zero transfer of native units, in that interval. If a transaction involves multiple exchanges, it is only counted once.
Name
ID
Unit
Interval
Exchange Traded Fund Tx Cnt
TxEtfCnt
Transactions
1 day
Details
Coinbase (i.e., miner reward) transactions are not counted.
Only ETFs and their addresses that Coin Metrics has identified are included so this metric should be thought of as a minimum potential value.
Availability for Assets
API Endpoints
Exchange Transaction Count metrics can be accessed using these endpoints:
timeseries/asset-metrics
and by passing in the metric ID's TxEtfCnt in the metrics parameter.
curl --compressed "https://api.coinmetrics.io/v4/timeseries/asset-metrics?metrics=TxEtfCnt&assets=btc&pretty=true&api_key=<your_key>"import requests
response = requests.get('https://api.coinmetrics.io/v4/timeseries/asset-metrics?metrics=TxEtfCnt&assets=btc&pretty=true&api_key=<your_key>').json()
print(response)from coinmetrics.api_client import CoinMetricsClient
api_key = "<API_KEY>"
client = CoinMetricsClient(api_key)
print(
client.get_asset_metrics(
metrics="TxEtfCnt",
assets="btc",
).to_dataframe()
)Last updated
Was this helpful?