Active Withdrawals

Definition

Active Withdrawals

Shows the number of unique withdrawal addresses that have been active on a particular day for a given asset. Refer to a withdrawal address explanation here.

Withdrawal Transactions

The withdrawal transactions metric shows the total number of all outgoing transactions involving withdrawal addresses on a particular day. Basically, this metric accounts for exchange-to-user transactions.

For exchange-specific data, please refer to that page.


Access

The metric is with restricted access.


Measuring Unit

Non-negative number of addresses


Data Type

Timeseries Data


Frequency

Daily intervals:

  • active_withdrawals
  • withdrawal_transactions

Five-Minute Intervals:

  • active_withdrawals_5m
  • withdrawal_transactions_5m

Latency

On-chain Latency


Available Assets

active_withdrawals

withdrawal_transactions

active_withdrawals_5m

withdrawal_transactions_5m


SanAPI

The metric is available under the active_withdrawals name for daily resolution and active_withdrawals_5m for intraday resolution.

{
getMetric(metric: "active_withdrawals") {
timeseriesDataJson(
slug: "ethereum"
from: "2023-05-09T11:25:04.894Z"
to: "2023-06-23T11:25:04.894Z"
interval: "1d"
)
}
}

Withdrawal transactions are available under withdrawal_transactions and withdrawal_transactions_5m names.

{
getMetric(metric: "withdrawal_transactions_5m") {
timeseriesDataJson(
slug: "ethereum"
from: "2024-01-01T00:00:00.000Z"
to: "2024-01-02T00:00:00.000Z"
interval: "1h")
}
}