Skip to content

Commit

Permalink
fix(long_tail_assets): README
Browse files Browse the repository at this point in the history
  • Loading branch information
akhercha committed Jul 28, 2024
1 parent bd96775 commit 532d83d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It then processes the data and computes the following metrics:
- `price_deviation{network, pair, source, type}`: Deviation of the price from a reference price (DefiLlama API) given source and pair. (in percents)
- `price_deviation_source{network, pair, source, type}`: Deviation of the price from the on-chain aggregated median price given source and pair. (in percents)
- `long_tail_asset_threshold{pair, type}`: Deviation threshold configuration for long tail assets. Type can be either "low" for when the pair has less than 7 sources else "high".
- `long_tail_asset_deviating_sources{network, pair, type}`: Deviation between two sources for long tail assets.
- `long_tail_asset_source_deviation{network, pair, type}`: Deviation of a source from the on-chain aggregated median price given source and pair. (in percents)
- `long_tail_asset_total_sources{network, pair, type}`: Current number of sources available for a given pair.
- `publisher_balance{network, publisher}`: Balance of a publisher. (in ETH)
- `vrf_balance{network}`: Balance of the VRF contract. (in ETH)
Expand Down
2 changes: 1 addition & 1 deletion src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ lazy_static! {
pub static ref LONG_TAIL_ASSET_SOURCE_DEVIATION: GaugeVec = register_gauge_vec!(
opts!(
"long_tail_asset_source_deviation",
"Deviation of each source from our price for long tail assets"
"Deviation of each source from our onchain aggregated price for long tail assets"
),
&["network", "pair", "type", "source"]
).unwrap();
Expand Down

0 comments on commit 532d83d

Please sign in to comment.