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

    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 an 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.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "active_withdrawals") {
        timeseriesData(
          slug: "ethereum"
          from: "2023-05-09T11:25:04.894Z"
          to: "2023-06-23T11:25:04.894Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer

    Withdrawal transactions are available under withdrawal_transactions and withdrawal_transactions_5m names.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    {
      getMetric(metric: "withdrawal_transactions_5m") {
        timeseriesData(
          slug: "ethereum"
          from: "2024-01-01T00:00:00.000Z"
          to: "2024-01-02T00:00:00.000Z"
          interval: "1h") {
            datetime
            value
        }
      }
    }

    Run in explorer