Skip to content

Commit

Permalink
Remove Ton dex volume data from redoubt (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyyim authored Oct 29, 2024
1 parent 03956ea commit 5c11611
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 41 deletions.
8 changes: 0 additions & 8 deletions models/projects/ton/core/ez_ton_metrics.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@ with
),
price_data as ({{ get_coingecko_metrics("the-open-network") }}),
defillama_data as ({{ get_defillama_metrics("ton") }}),
dex_data as (
select
date,
dex_volumes
from {{ ref("fact_ton_dex_volumes") }}
),
stablecoin_data as ({{ get_stablecoin_metrics("ton") }}),
github_data as ({{ get_github_metrics("ton") }}),
rolling_metrics as ({{ get_rolling_active_address_metrics("ton") }})
Expand All @@ -58,7 +52,6 @@ select
market_cap,
fdmc,
tvl,
dex_data.dex_volumes,
weekly_commits_core_ecosystem,
weekly_commits_sub_ecosystem,
weekly_developers_core_ecosystem,
Expand All @@ -76,7 +69,6 @@ from ton_apps_fundamental_data as ton
left join price_data on ton.date = price_data.date
left join defillama_data on ton.date = defillama_data.date
left join github_data on ton.date = github_data.date
left join dex_data on ton.date = dex_data.date
left join fundamental_data on ton.date = fundamental_data.date
left join stablecoin_data on ton.date = stablecoin_data.date
left join rolling_metrics on ton.date = rolling_metrics.date
Expand Down
1 change: 0 additions & 1 deletion models/staging/ton/__ton__sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ sources:
- name: raw_ton_gas
- name: raw_ton_revenue
- name: raw_ton_txns
- name: raw_ton_dex_volumes
- name: raw_ton_stablecoin_transfers
- name: raw_ton_apps_openleague
- name: raw_ton_tokens_openleague
Expand Down
32 changes: 0 additions & 32 deletions models/staging/ton/fact_ton_dex_volumes.sql

This file was deleted.

0 comments on commit 5c11611

Please sign in to comment.