Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fhenneke committed Dec 15, 2023
1 parent 2b2deb2 commit e5877b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions queries/dune_v2/period_slippage.sql
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ batch_meta as (
-- ETH transfers to traders are already part of USER_OUT
and not contains(traders_out, to)
)
-- sDAI emit only one transfer event for deposits and withdrawls.
-- sDAI emits only one transfer event for deposits and withdrawals.
-- This reconstructs the missing transfer from event logs.
,sdai_deposit_withdrawl_transfers as (
,sdai_deposit_withdrawal_transfers as (
-- withdraw events result in additional AMM_IN transfer
select
tx_hash,
Expand All @@ -140,7 +140,7 @@ batch_meta as (
join maker_ethereum.SavingsDai_evt_Withdraw w
on w.evt_tx_hash= bm.tx_hash
union all
-- for deposit events result in additional AMM_OUT transfer
-- deposit events result in additional AMM_OUT transfer
select
tx_hash,
0x0000000000000000000000000000000000000000 as sender,
Expand All @@ -162,7 +162,7 @@ batch_meta as (
union all
select * from eth_transfers
union all
select * from sdai_deposit_withdrawl_transfers
select * from sdai_deposit_withdrawal_transfers
) as _
order by tx_hash
)
Expand Down

0 comments on commit e5877b7

Please sign in to comment.