Skip to content

Commit

Permalink
Mantle: Adding to final Stablecoin Models (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebMelendez01 authored Nov 25, 2024
1 parent 46885ca commit bb7ea7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ with
{% if is_incremental() %}
where date >= (select dateadd('day', -7, max(date)) from {{ this }})
{% endif %}
union all
select *
from {{ref("ez_mantle_stablecoin_metrics_by_address")}}
{% if is_incremental() %}
where date >= (select dateadd('day', -7, max(date)) from {{ this }})
{% endif %}
)
select
date
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ with stablecoin_transfers as (
{{ l30d_stablecoin_transfers('ton') }}
union all
{{ l30d_stablecoin_transfers('celo') }}
union all
{{ l30d_stablecoin_transfers('mantle') }}
)
select
stablecoin_transfers.date
Expand Down

0 comments on commit bb7ea7a

Please sign in to comment.