Skip to content

Commit

Permalink
fixed stride fees and revenue (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
limzhengjie authored Dec 13, 2024
1 parent 922e8b6 commit 2edf63a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions models/projects/stride/core/ez_stride_metrics.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ select
fundamental_data.mau,
fundamental_data.tvl,
fundamental_data.tvl_net_change,
fundamental_data.fees_native,
fundamental_data.fees_usd AS fees,
fundamental_data.fees_native AS gas_fees_native,
fundamental_data.fees_usd AS gas_fees_usd,
fundamental_data.avg_txn_fee,
fundamental_data.returning_users,
fundamental_data.new_users,
Expand All @@ -32,7 +32,8 @@ select
fundamental_data.non_sybil_users,
fundamental_data.total_staking_yield_usd,
fundamental_data.total_supply_side_revenue_usd,
fundamental_data.protocol_revenue_usd,
fundamental_data.protocol_revenue_usd AS fees,
fundamental_data.protocol_revenue_usd AS revenue,
fundamental_data.operating_expenses_usd,
fundamental_data.protocol_earnings_usd
from fundamental_data

0 comments on commit 2edf63a

Please sign in to comment.