# Transfer Value

## Contents

* [Xfer'd Val, Adj](#txtfrvaladj)
* [Xfer'd by Contract Calls](#txtfrvalcontcallmtv)
* [Xfer'd Days Destroyed](#txtfrvaldaydst)
* [Mean Xfer'd Days Destroyed](#txtfrvaldaydstmean)
* [Mean Tx Size](#txtfrvalmean)
* [Median Tx Size](#txtfrvalmed)
* [Xfer'd Val](#txtfrval)
* [Payments Above/Below X Amount (Count)](#txtfrvalcnt)
* [Sum Value of Payments Above/Below X Amount](#txtfrvalabbel)
* [Xfer'd Val among MEV transactions](#xferd-val-among-mev-txs)
* [MEV Transfers Above/Below X Amount (Count)](#mev-transfers-above-below-x-amount-count)
* [Sum Value of Payments among MEV Above/Below X Amount](#txtfrvalabbel-1)

## Xfer'd Val, Adj <a href="#txtfrvaladj" id="txtfrvaladj"></a>

#### Definition

The sum of native units or USD transferred that interval removing noise and certain artifacts. Also known as Adjusted Transfer Value.

| Name                           | MetricID       | Unit         | Interval |
| ------------------------------ | -------------- | ------------ | -------- |
| Xfer'd Val, Adj (native units) | TxTfrValAdjNtv | Native units | 1 day    |
| Xfer'd Val, Adj (USD)          | TxTfrValAdjUSD | USD          | 1 day    |

#### Details

* For UTXO chains, the heuristics used are:
  * Early spend: outputs spent one hour or less after being created are not counted
  * Round numbers: if one output has much more precision than the other outputs in the same transaction, it’s not counted. For example, if a transaction creates 2 outputs, one of 1.00000000 BTC and one of 0.2561278 BTC, the second one would not be counted.
  * Self churn: outputs that have the same address as any of the inputs addresses are discounted
  * Also removed are cold wallet shuffles (when an exchange changes their cold wallet addresses) and other artifacts such as noise generated by early Bitcoin applications like Satoshi Dice
* For account chains, this metric is computed as the sum number of native units received by accounts, whose net balance did change in that hour.

#### Asset-Specific Details

* For assets that have opt-in privacy features, like ZCash, it only takes the non-private activity.

#### Example

* If in the same hour:
  * \*\* Account A sends 50 units to B
  * \*\* Account C sends 50 units to A
  * \*\* Account B sends 50 units to E
  * \*\* Account D sends 49 units to B
* Then:
  * \*\* Account A has a net balance change of 0, received 50
  * \*\* Account B has a net balance change of -1, received 99
  * \*\* Account C has a net balance change of -50, received 0
  * \*\* Account D has a net balance change of -49, received 0
  * \*\* Account E has a net balance change of +50, received 50
* \*\*\* Unadjusted volume is 199
* \*\*\* Adjusted volume is 149 (B: 99, E: 50)

#### Release History

* Released in the 1.0 release of NDP

#### Availability for Assets

* [TxTfrValAdjNtv](https://coverage.coinmetrics.io/search-results?query=TxTfrValAdjNtv)
* [TxTfrValAdjUSD](https://coverage.coinmetrics.io/search-results?query=TxTfrValAdjUSD)

## Xfer'd by Contract Calls <a href="#txtfrvalcontcallmtv" id="txtfrvalcontcallmtv"></a>

#### Definition

The sum of all native units or USD transferred by contract calls on that interval. A contract call is the invocation of a contract’s code by another contract or non-contract address. Only successful calls are considered.

| Name                                    | MetricID            | Unit         | Interval |
| --------------------------------------- | ------------------- | ------------ | -------- |
| Xfer'd by Contract Calls (native units) | TxTfrValContCallNtv | Native units | 1 day    |
| Xfer'd by Contract Calls (USD)          | TxTfrValContCallUSD | Native units | 1 day    |

#### Details

* `TxTrfValContCallNtv` is computed as TxTfrValAdjNtv / BlkSizeByte
* `TxTrfValContCallUSD` is computed as TxTfrValAdjUSD / BlkSizeByte
* This metric estimates the economical density of an asset.

#### Asset Specific Details

* For SOL this metric measures the value transferred by instructions which sent value to program-derived accounts. Excludes vote accounts and externally-owned accounts.

#### Release History

* Released in the 4.2 release of NDP

#### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValContCallNtv>" %}

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValContCallUSD>" %}

## Xfer'd Days Destroyed <a href="#txtfrvaldaydst" id="txtfrvaldaydst"></a>

#### Definitions

The sum of all native units transferred that interval multiplied by the sum of days since those native units were last transferred.

| Name                  | MetricID       | Unit          | Interval       |
| --------------------- | -------------- | ------------- | -------------- |
| Xfer'd Days Destroyed | TxTfrValDayDst | Dimensionless | 1 day, 1 block |

#### Details

* Days destroyed is a measure of time \* money.
* When an unspent output is spent, the time it stayed unspent (in days) is multiplied by its value, this metric measures the sum of these coin days spent in a given day.
* Only full days are taken into account (2.5 days count as 2 days)

#### Asset-Specific Details

* Only available for UTXO chains.
* For assets that have opt-in privacy features, like ZCash, it only takes the non-private activity.

#### Release History

* Released in the 1.0 release of NDP

#### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValDayDst>" %}

## Mean Xfer'd Days Destroyed <a href="#txtfrvaldaydstmean" id="txtfrvaldaydstmean"></a>

#### Definition

The mean per transaction of the sum of all native units transferred multiplied by the sum of days since those native units were last transferred that interval.

| Name                       | MetricID           | Unit          | Interval |
| -------------------------- | ------------------ | ------------- | -------- |
| Mean Xfer'd Days Destroyed | TxTfrValDayDstMean | Dimensionless | 1 day    |

#### Details

* Computed as TxTfrValDayDst / TxCnt

#### Asset-Specific Details

* Only available for UTXO chains
* For assets that have opt-in privacy features, like ZCash, it only takes the non-private activity.

#### Release History

* Released in the 1.0 release of NDP

#### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValDayDstMean>" %}

## Mean Tx Size <a href="#txtfrvalmean" id="txtfrvalmean"></a>

#### Definition

The sum value of native units or USD transferred divided by the count of transfers (i.e., the mean size of a transfer) between distinct addresses that interval.

| Name                        | MetricID        | Unit         | Interval      |
| --------------------------- | --------------- | ------------ | ------------- |
| Mean Tx Size (native units) | TxTfrValMeanNtv | Native units | 1 day, 1 hour |
| Mean Tx Size (USD)          | TxTfrValMeanUSD | USD          | 1 day, 1 hour |

#### Details

* TxTfrValMeanNtv is computed as TxTfrValNtv / TxTfrCnt
* TxTfrValMeanNtv is computed as TxTfrValMeanNtv \* PriceUSD

#### Asset-Specific Details

* For assets that have opt-in privacy features, like ZCash, it only takes the non-private activity.

#### Release History

* Released in the 1.0 release of NDP

#### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValMeanNtv>" %}

## Median Tx Size <a href="#txtfrvalmed" id="txtfrvalmed"></a>

#### Definition

The median count of native units or USD transferred per transfer (i.e., the median "size" of a transfer) that interval.

#### Dictionary

| Name                          | MetricID       | Unit         | Interval      |
| ----------------------------- | -------------- | ------------ | ------------- |
| Median Tx Size (native units) | TxTfrValMedNtv | Native units | 1 day, 1 hour |
| Median Tx Size (USD)          | TxTfrValMedUSD | USD          | 1 day, 1 hour |

#### Details

* Transfers are movement of native units.
* Only non-zero value, successful, transfers with distinct sender/recipient, are considered.

#### Asset-Specific Details

* For assets that have opt-in privacy features, like ZCash, it only takes the non-private activity.

#### Release History

* Released in the 1.0 release of NDP

#### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValMedNtv>" %}

## Xfer'd Val <a href="#txtfrval" id="txtfrval"></a>

#### Definition

The sum of native units or USD transferred (i.e., the aggregate "size" of all transfers) that interval. Also known as Transfer Value (native units).

| Name                      | MetricID    | Unit         | Interval      |
| ------------------------- | ----------- | ------------ | ------------- |
| Xfer'd Val (native units) | TxTfrValNtv | Native units | 1 day, 1 hour |
| Xfer'd Val (USD)          | TxTfrValUSD | USD          | 1 day, 1 hour |

**Details**

* Transfers are movement of native units.
* Only non-zero value, successful, transfers with distinct sender/recipient, are considered.
* Failed transactions are not considered in TxTfrValNtv
* For ETH, the fees sent from the original sender to the miner for the failed transaction are not considered
* This metric counts transfers between two addresses, exluding transfers from or to the null account (issuance account) as those would be considered mints (transfers from) and burns (transfers to). These would be counted in our [SplyCur](https://gitbook-docs.coinmetrics.io/network-data/network-data-overview/supply/current-supply) metric as an increase or decrease in the supply.

#### Asset-Specific Details

* For assets that have opt-in privacy features, like ZCash, it only takes the non-private activity.

#### Release History

* Released in the 1.0 release of NDP

#### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValNtv>" %}
TxTfrValNtv Coverage
{% endembed %}

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValUSD>" %}
TxTfrValUSD Coverage
{% endembed %}

## Payments Above/Below X Amount (Count) <a href="#txtfrvalcnt" id="txtfrvalcnt"></a>

The sum count of payments (transfers) above or below X worth of a cryptoasset at the time the transfer took place.

| Name                       | MetricID               | Unit      | Interval |
| -------------------------- | ---------------------- | --------- | -------- |
| Payments Above $100M Cnt   | TxTfrValAbUSD100MCnt   | Transfers | 1 day    |
| Payments Above $10M Cnt    | TxTfrValAbUSD10MCnt    | Transfers | 1 day    |
| Payments Above $1M Cnt     | TxTfrValAbUSD1MCnt     | Transfers | 1 day    |
| Payments Above $100k Cnt   | TxTfrValAbUSD100kCnt   | Transfers | 1 day    |
| Xfers Below $10,000, Count | TxTfrValBelUSD10000Cnt | Transfers | 1 day    |
| Xfers Below $1,000, Count  | TxTfrValBelUSD1000Cnt  | Transfers | 1 day    |
| Xfers Below $500, Count    | TxTfrValBelUSD500Cnt   | Transfers | 1 day    |
| Xfers Below $100, Count    | TxTfrValBelUSD100Cnt   | Transfers | 1 day    |
| Xfers Below $50, Count     | TxTfrValBelUSD50Cnt    | Transfers | 1 day    |
| Xfers Below $20, Count     | TxTfrValBelUSD20Cnt    | Transfers | 1 day    |
| Xfers Below $10, Count     | TxTfrValBelUSD10Cnt    | Transfers | 1 day    |
| Xfers Below $5, Count      | TxTfrValBelUSD5Cnt     | Transfers | 1 day    |

**Details**

* For these metrics, the bands are inclusive of one another. This means that, for example, all transactions included in the TxTfrValBelUSD5Cnt are also included in the TxTfrValBelUSD10Cnt. To get the value for a specific band exclusive of the lower/higher bands, these need to be excluded.
  * If you want to only get transfers between $20-$50 you would need to calculate this as TxTfrValBelUSD50Cnt - TxTfrValBelUSD20Cnt
* This metrics shows the incidence (count) of payments above/below each of the supported thresholds.
* Payments are defined as transfers (xfers) and represent the individual asset transfers *within* a transaction.
* A transaction may be a collection of transfers which, specially in UTXO-based blockchains, may represent several P2P payments.
* A cryptoasset exchange, for example, may engage in *transaction batching* whereby user withdraws are aggregated in a single transaction comprised of multiple outputs.
* Each of the outputs represents a transfer. And while each transfer (output) may be going to different users, they are all processed within the same transaction.
* For this reason, this metric is calculated at the transfer-level so all individual payments are accounted for.
* In this version of this metric, change outputs are not adjusted. This means not only peer-to-peer tranfers are accounted for, but also when a user sends fund to their own wallets.
  * For example, if after paying each of the users withdrawing, the exchange still has a remaining balance, the change output is still accounted for in this metric if it falls below the metric's threshold.
  * In other words, if the recipients listed in a transaction's output require payments that, when added together, have a value that is *lower* than the input, a change output that goes back to the sender must be created. In such circumstances, this metric would also account for the change output if it fell under the measuring threshold.

**Interpretation**

* This thresholds in this metric can be used to better understand the type of users interacting with a cryptoasset network.
* For example, if a network is predominantly being used for retail transactions, one would expect payments under $100 to occur more frequently than payments above $10,000.
* If a network is predominantly being used for retail payments use cases, one would expect transfers under $20 or $10 to occur more frequently than payments above $1000
* Similarly, it can show the predominance of different types of investors, such the balance between retail and institutional investors within a network.

**Availability for Assets**

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValAbUSD100kCnt>" %}
TxTfrValAb/BelUSDXCnt Coverage
{% endembed %}

## Sum Value of Payments Above/Below X Amount (native units) <a href="#txtfrvalabbel" id="txtfrvalabbel"></a>

The sum of all payments (transfers) that have occurred in the measuring interval above or below X worth of a cryptoasset, displayed in native units (e.g. BTC).

<table data-header-hidden><thead><tr><th width="278">Name</th><th>MetricID</th><th>Unit</th><th>Interval</th></tr></thead><tbody><tr><td>Name</td><td>MetricID</td><td>Unit</td><td>Interval</td></tr><tr><td>Sum Value of Payments Above $100M (native units)</td><td>TxTfrValAbUSD100MNtv</td><td>Ntv</td><td>1 day</td></tr><tr><td>Sum Value of Payments Above $10M (native units)</td><td>TxTfrValAbUSD10MNtv</td><td>Ntv</td><td>1 day</td></tr><tr><td>Sum Value of Payments Above $1M (native units)</td><td>TxTfrValAbUSD1MNtv</td><td>Ntv</td><td>1 day</td></tr><tr><td>Sum Value of Payments Above $100k (native units)</td><td>TxTfrValAbUSD100kNtv</td><td>Ntv</td><td>1 day</td></tr><tr><td>Sum Value of Payments Above $100M (USD)</td><td>TxTfrValAbUSD100MUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Above $10M (USD)</td><td>TxTfrValAbUSD10MUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Above $1M (USD)</td><td>TxTfrValAbUSD1MUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Above $100k (USD)</td><td>TxTfrValAbUSD100kUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $10k (native units)</td><td>TxTfrValBelUSD10000Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $1k (native units)</td><td>TxTfrValBelUSD1000Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $500 (native units)</td><td>TxTfrValBelUSD500Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $100 (native units)</td><td>TxTfrValBelUSD100Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $50 (native units)</td><td>TxTfrValBelUSD50Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $20 (native units)</td><td>TxTfrValBelUSD20Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $10 (native units)</td><td>TxTfrValBelUSD10Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $5 (native units)</td><td>TxTfrValBelUSD5Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $10k (USD)</td><td>TxTfrValBelUSD10000USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $1k (USD)</td><td>TxTfrValBelUSD1000USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $500 (USD)</td><td>TxTfrValBelUSD500USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $100 (USD)</td><td>TxTfrValBelUSD100USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $50 (USD)</td><td>TxTfrValBelUSD50USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $20 (USD)</td><td>TxTfrValBelUSD20USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $10 (USD)</td><td>TxTfrValBelUSD10USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Below $5 (USD)</td><td>TxTfrValBelUSD5USD</td><td>USD</td><td>1 day</td></tr></tbody></table>

**Details**

* For these metrics, the bands are inclusive of one another. This means that, for example, all transactions included in the TxTfrValBelUSD5USD are also included in the TxTfrValBelUSD10USD. To get the value for a specific band exclusive of the lower/higher bands, these need to be excluded.
  * If you want to only get transfers between $20-$50 you would need to calculate this as TxTfrValBelUSD50USD - TxTfrValBelUSD20USD
* This metrics shows the sum of payments above/below each of the supported thresholds.
* Payments are defined as transfers (xfers) and represent the individual asset transfers *within* a transaction.
* A transaction may be a collection of transfers which, specially in UTXO-based blockchains, may represent several P2P payments.
* A cryptoasset exchange, for example, may engage in transaction batching whereby user withdraws are aggregated in a single transaction comprised of multiple outputs.
* Each of the outputs represents a transfer. And while each transfer (output) may be going to different users, they are all processed within the same transaction.
* For this reason, this metric is calculated at the transfer-level so all individual payments are accounted for.
* In this version of this metric, change outputs are not adjusted. This means not only peer-to-peer tranfers are accounted for, but also when a user sends fund to their own wallets.
  * For example, if after paying each of the users withdrawing, the exchange still has a remaining balance, the change output is still accounted for in this metric if it falls below the metric's threshold.
  * In other words, if the recipients listed in a transaction's output require payments that, when added together, have a value that is lower than the input, a change output that goes back to the sender must be created. In such circumstances, this metric would also account for the change output if it fell under the measuring threshold.

**Interpretation**

* The thresholds supported by this metric family can be used to better understand the type of users interacting with a cryptoasset network.
* For example, if a network is predominantly being used by whales, one would expect payments above $1M USD to occur more frequently than payments below $10 USD.
* Similarly, it can show the predominance of different types of investors, such the balance between retail and institutional investors within a network.

**Availability for Assets**

{% embed url="<https://coverage.coinmetrics.io/asset-metrics/TxTfrValAbUSD100kNtv>" %}

## Xfer'd Val among MEV TXs

<table><thead><tr><th width="177">Name</th><th width="157">MetricID</th><th width="124">Unit</th><th>Interval</th></tr></thead><tbody><tr><td>Xfer'd Val among MEV txs (native units)</td><td>MevTfrValNtv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Xfer'd Val among MEV txs (USD)</td><td>MevTfrValUSD</td><td>USD</td><td>1 day</td></tr></tbody></table>

### Definition

The sum of native units or USD value transferred (i.e., the aggregate size of all transfers) among MEV-enabled transactions between distinct addresses that interval. An MEV-enabled transaction is one that paid an MEV tip to miners/validators in exchange for specific block ordering.

### **Asset-Specific Details**

* For Solana, slots proposed by validators running the Jito-Solana client are considered as MEV slots. Further, in Solana it is possible to identify which transactions paid MEV tip in addition to simply identifying the slot. For this metric each individual transaction is evaluated to determine which are MEV-enabled and which aren't.

### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics-v2/MevTfrValNtv>" %}
MevTfrValNtv
{% endembed %}

{% embed url="<https://coverage.coinmetrics.io/asset-metrics-v2/MevTfrValUSD>" %}
MevTfrValUSD
{% endembed %}

## MEV Transfers Above/Below X Amount (Count)

<table><thead><tr><th width="215.27734375">Name</th><th width="253.7734375">MetricID</th><th width="129.83984375">Unit</th><th width="91.5859375">Interval</th></tr></thead><tbody><tr><td>Payments Among MEV Txs Above $100k Cnt</td><td>MevTfrValAbUSD100kCnt</td><td>Transfers</td><td>1 day</td></tr><tr><td>Payments Among MEV Txs Above $1M Cnt</td><td>MevTfrValAbUSD1MCnt</td><td>Transfers</td><td>1 day</td></tr><tr><td>Payments Among MEV Txs Above $10M Cnt</td><td>MevTfrValAbUSD10MCnt</td><td>Transfers</td><td>1 day</td></tr><tr><td>Payments Among MEV Txs Above $100M Cnt</td><td>MevTfrValAbUSD100MCnt</td><td>Transfers</td><td>1 day</td></tr><tr><td>Payments Among MEV Txs Below $100 Cnt</td><td>MevTfrValBelUSD100Cnt</td><td>Transfers</td><td>1 day</td></tr><tr><td>Payments Among MEV Txs Below $500 Cnt</td><td>MevTfrValBelUSD500Cnt</td><td>Transfers</td><td>1 day</td></tr><tr><td>Payments Among MEV Txs Below $1000 Cnt</td><td>MevTfrValBelUSD1kCnt</td><td>Transfers</td><td>1 day</td></tr><tr><td>Payments Among MEV Txs Below $10000 Cnt</td><td>MevTfrValBelUSD10kCnt</td><td>Transfers</td><td>1 day</td></tr></tbody></table>

### Definition

The sum count of all unique transfers in MEV-enabled transactions in that interval with a value above or below the specified value in USD terms.

### Details

* This metrics shows the incidence (count) of payments above/below each of the supported thresholds.
* Payments are defined as transfers (xfers) and represent the individual asset transfers *within* a transaction.
* A transaction may be a collection of transfers which may represent several P2P payments.
* A cryptoasset exchange, for example, may engage in *transaction batching* whereby user withdraws are aggregated in a single transaction comprised of multiple outputs.
* Each of the outputs represents a transfer. And while each transfer (output) may be going to different users, they are all processed within the same transaction.
* For this reason, this metric is calculated at the transfer-level so all individual payments are accounted for.
* In this version of this metric, change outputs are not adjusted. This means not only peer-to-peer tranfers are accounted for, but also when a user sends fund to their own wallets.
  * For example, if after paying each of the users withdrawing, the exchange still has a remaining balance, the change output is still accounted for in this metric if it falls below the metric's threshold.
  * In other words, if the recipients listed in a transaction's output require payments that, when added together, have a value that is *lower* than the input, a change output that goes back to the sender must be created. In such circumstances, this metric would also account for the change output if it fell under the measuring threshold.

### **Interpretation**

* This thresholds in this metric can be used to better understand the type of users interacting with a cryptoasset network.
* For example, if a network is predominantly being used for retail transactions, one would expect payments under $100 to occur more frequently than payments above $10,000.
* Similarly, it can show the predominance of different types of investors, such the balance between retail and institutional investors within a network.

### **Asset-Specific Details**

* For Solana, slots proposed by validators running the Jito-Solana client are considered as MEV slots. Further, in Solana it is possible to identify which transactions paid MEV tip in addition to simply identifying the slot. For this metric each individual transaction is evaluated to determine which are MEV-enabled and which aren't.

### Availability for Assets

{% embed url="<https://coverage.coinmetrics.io/asset-metrics-v2/MevTfrValAbUSD1MCnt>" %}
MevTfrValAbUSD1MCnt - representative for coverage of all metrics in this section
{% endembed %}

## Sum Value of Payments among MEV Txs Above/Below X Amount <a href="#txtfrvalabbel" id="txtfrvalabbel"></a>

<table data-header-hidden><thead><tr><th width="278">Name</th><th>MetricID</th><th width="98.21875">Unit</th><th width="96.76171875">Interval</th></tr></thead><tbody><tr><td>Sum Value of Payments Among MEV Txs Above $100M (native units)</td><td>MevTfrValAbUSD100MNtv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Above $10M (native units)</td><td>MevTfrValAbUSD10MNtv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Above $1M (native units)</td><td>MevTfrValAbUSD1MNtv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Above $100k (native units)</td><td>MevTfrValAbUSD100kNtv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Above $100M (USD)</td><td>MevTfrValAbUSD100MUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Above $10M (USD)</td><td>MevTfrValAbUSD10MUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Above $1M (USD)</td><td>MevTfrValAbUSD1MUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Above $100k (USD)</td><td>MevTfrValAbUSD100kUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $10000 (native units)</td><td>MevTfrValBelUSD10kNtv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $1000 (native units)</td><td>MevTfrValBelUSD1kNtv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $500 (native units)</td><td>MevTfrValBelUSD500Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $100 (native units)</td><td>MevTfrValBelUSD100Ntv</td><td>Native Units</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $10000 (USD)</td><td>MevTfrValBelUSD10kUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $1000 (USD)</td><td>MevTfrValBelUSD1kUSD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $500 (USD)</td><td>MevTfrValBelUSD500USD</td><td>USD</td><td>1 day</td></tr><tr><td>Sum Value of Payments Among MEV Txs Below $100 (USD)</td><td>MevTfrValBelUSD100USD</td><td>USD</td><td>1 day</td></tr></tbody></table>

### **Definition**

The sum of all native units or USD transferred that interval by transfers in MEV-enabled transactions with a value above or below the specified USD threshold.

### **Details**

* This metrics shows the sum of payments above/below each of the supported thresholds.
* Payments are defined as transfers (xfers) and represent the individual asset transfers *within* a transaction.
* A transaction may be a collection of transfers which may represent several P2P payments.
* A cryptoasset exchange, for example, may engage in transaction batching whereby user withdraws are aggregated in a single transaction comprised of multiple outputs.
* Each of the outputs represents a transfer. And while each transfer (output) may be going to different users, they are all processed within the same transaction.
* For this reason, this metric is calculated at the transfer-level so all individual payments are accounted for.
* In this version of this metric, change outputs are not adjusted. This means not only peer-to-peer tranfers are accounted for, but also when a user sends fund to their own wallets.
  * For example, if after paying each of the users withdrawing, the exchange still has a remaining balance, the change output is still accounted for in this metric if it falls below the metric's threshold.
  * In other words, if the recipients listed in a transaction's output require payments that, when added together, have a value that is lower than the input, a change output that goes back to the sender must be created. In such circumstances, this metric would also account for the change output if it fell under the measuring threshold.

### **Interpretation**

* The thresholds supported by this metric family can be used to better understand the type of users interacting with a cryptoasset network.
* For example, if a network is predominantly being used by whales, one would expect payments above $1M USD to occur more frequently than payments below $10 USD.
* Similarly, it can show the predominance of different types of investors, such the balance between retail and institutional investors within a network.

### **Asset-Specific Details**

* For Solana, slots proposed by validators running the Jito-Solana client are considered as MEV slots. Further, in Solana it is possible to identify which transactions paid MEV tip in addition to simply identifying the slot. For this metric each individual transaction is evaluated to determine which are MEV-enabled and which aren't.

### **Availability for Assets**

{% embed url="<https://coverage.coinmetrics.io/asset-metrics-v2/MevTfrValAbUSD100kNtv>" %}
MevTfrValAbUSD100kNtv, representative coverage for all metrics in this section
{% endembed %}

### API Endpoints

Token Transaction metrics can be accessed using these endpoints:

* `timeseries/asset-metrics`

and by passing in the metric ID's `TxTfrVal*` in the `metrics` parameter.

{% openapi src="<https://2398817338-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MO23j33wWGzm0NrZseN%2Fuploads%2Fgit-blob-1522f16027d90845f8750dd9c51c03b8e7aab67f%2Fopenapi.yaml?alt=media>" path="/timeseries/asset-metrics" method="get" %}
[openapi.yaml](https://2398817338-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MO23j33wWGzm0NrZseN%2Fuploads%2Fgit-blob-1522f16027d90845f8750dd9c51c03b8e7aab67f%2Fopenapi.yaml?alt=media)
{% endopenapi %}

{% tabs %}
{% tab title="Shell" %}

```shell
curl --compressed "https://api.coinmetrics.io/v4/timeseries/asset-metrics?metrics=TxTfrValAdjNtv&assets=eth&pretty=true&api_key=<your_key>"
```

{% endtab %}

{% tab title="Python" %}

```python
import requests
response = requests.get('https://api.coinmetrics.io/v4/timeseries/asset-metrics?metrics=TxTfrValAdjNtv&assets=eth&pretty=true&api_key=<your_key>').json()
print(response)
```

{% endtab %}

{% tab title="Python Client" %}

```python
from coinmetrics.api_client import CoinMetricsClient

api_key = "<API_KEY>"
client = CoinMetricsClient(api_key)

print(
    client.get_asset_metrics(
        metrics="TxTfrValAdjNtv", 
        assets="eth",
    ).to_dataframe()
)
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gitbook-docs.coinmetrics.io/network-data/network-data-overview/transactions/transfer-value.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
