Skip to content

Commit

Permalink
Merge pull request #136 from Synthetixio/bug/fix-base
Browse files Browse the repository at this point in the history
Bug: Fix base models
  • Loading branch information
Tburm authored Nov 7, 2024
2 parents 84c7c29 + 05e35e2 commit b7f68a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ select
cm.contract,
cm.event_name,
synths.synth_symbol,
cm.collateral_id as synth_market_id,
cm.synth_market_id,
synths.synth_token_address,
cm.sender,
{{ convert_wei("cm.amount_delta") }} as amount_delta
from
{{ ref("perp_collateral_modified_base_mainnet") }}
as cm
inner join {{ ref('base_mainnet_synths') }} as synths
on cm.collateral_id = synths.synth_market_id
on cm.synth_market_id = synths.synth_market_id
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ select
cm.contract,
cm.event_name,
synths.synth_symbol,
cm.collateral_id as synth_market_id,
cm.synth_market_id,
synths.synth_token_address,
cm.sender,
{{ convert_wei("cm.amount_delta") }} as amount_delta
from
{{ ref("perp_collateral_modified_base_sepolia") }}
as cm
inner join {{ ref('base_sepolia_synths') }} as synths
on cm.collateral_id = synths.synth_market_id
on cm.synth_market_id = synths.synth_market_id

0 comments on commit b7f68a8

Please sign in to comment.