Skip to content

Commit

Permalink
correct column reference (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwes authored Dec 6, 2024
1 parent 9af37d0 commit f9993f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/projects/trader_joe/core/ez_trader_joe_metrics.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ SELECT
sum(trading_volume) as trading_volume,
sum(trading_fees) as trading_fees,
sum(unique_traders) as unique_traders,
sum(txns) as number_of_swaps,
sum(number_of_swaps) as number_of_swaps,
sum(gas_cost_native) as gas_cost_native
FROM {{ ref("ez_trader_joe_metrics_by_chain") }}
GROUP BY 1, 2, 3

0 comments on commit f9993f0

Please sign in to comment.