Skip to content

Commit

Permalink
Merge pull request #4493 from santiment/add-whale-transaction-volumes…
Browse files Browse the repository at this point in the history
…-to-API

Add whale transaction volumes to API
  • Loading branch information
antisaa authored Dec 6, 2024
2 parents 438f06e + d46b111 commit c8bd57e
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1604,7 +1604,47 @@
"table": "intraday_metrics",
"has_incomplete_data": false,
"data_type": "timeseries",
"docs_links": ["https://academy.santiment.net/metrics/whale-transaction-count"]
"docs_links": ["https://academy.santiment.net/metrics/whale-transaction-volume"]
},
{
"human_readable_name": "Total USD volume of Transactions Transferring More Than 100k USD",
"name": "whale_transaction_volume_100k_usd_to_inf",
"metric": "whale_transaction_volume_more_than_100k_usd",
"version": "2019-01-01",
"access": "restricted",
"selectors": [
"slug"
],
"min_plan": {
"SANAPI": "free",
"SANBASE": "free"
},
"aggregation": "sum",
"min_interval": "5m",
"table": "intraday_metrics",
"has_incomplete_data": false,
"data_type": "timeseries",
"docs_links": ["https://academy.santiment.net/metrics/whale-transaction-volume"]
},
{
"human_readable_name": "Total USD volume of Transactions Transferring More Than 1 million USD",
"name": "whale_transaction_volume_1m_usd_to_inf",
"metric": "whale_transaction_volume_more_than_1m_usd",
"version": "2019-01-01",
"access": "restricted",
"selectors": [
"slug"
],
"min_plan": {
"SANAPI": "free",
"SANBASE": "free"
},
"aggregation": "sum",
"min_interval": "5m",
"table": "intraday_metrics",
"has_incomplete_data": false,
"data_type": "timeseries",
"docs_links": ["https://academy.santiment.net/metrics/whale-transaction-volume"]
},
{
"human_readable_name": "Price in ETH",
Expand Down
2 changes: 2 additions & 0 deletions test/sanbase/billing/metric_access_level_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,8 @@ defmodule Sanbase.Billing.MetricAccessLevelTest do
"median_transfer_5m",
"whale_transaction_count_100k_usd_to_inf",
"whale_transaction_count_1m_usd_to_inf",
"whale_transaction_volume_100k_usd_to_inf",
"whale_transaction_volume_1m_usd_to_inf",
"mvrv_usd_z_score",
"stock_to_flow",
"miners_total_supply",
Expand Down

0 comments on commit c8bd57e

Please sign in to comment.