Skip to content

Commit

Permalink
1/ fix dbt compile error 2/ add optional column to uniswap_v4 trades
Browse files Browse the repository at this point in the history
  • Loading branch information
agaperste committed Jan 8, 2025
1 parent 962d0a2 commit b7fefb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ SELECT
, CAST(dexs.token_sold_amount_raw AS UINT256) AS token_sold_amount_raw
, dexs.token_bought_address
, dexs.token_sold_address
, dexs.sender as router
, dexs.fee
, dexs.hooks -- if 0x00 null address then no hook, else yes hook
't.sender', 'f.fee', 'f.hooks'
, dexs.taker
, dexs.maker
, dexs.project_contract_address
Expand Down
2 changes: 1 addition & 1 deletion dbt_subprojects/dex/models/trades/dex_base_trades.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
, ref('dex_zksync_base_trades')
, ref('dex_zora_base_trades')
, ref('dex_flare_base_trades')
, ref('dex_sepolia_base_trades') -- TODO: remove after testing uni v4 sepolia
, ref('dex_sepolia_base_trades')
] %}

with base_union as (
Expand Down

0 comments on commit b7fefb9

Please sign in to comment.