Skip to content

Commit

Permalink
fix name error of avalanche source
Browse files Browse the repository at this point in the history
  • Loading branch information
lequangphu committed Nov 24, 2024
1 parent 1addb58 commit 8c51ec5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ with source_data as (
json_extract_scalar(bridgeData, '$.minAmount') as minAmount,
json_extract_scalar(bridgeData, '$.destinationChainId') as destinationChainId,
'avalanche' as source_chain
from {{ source('lifi_avalanche', 'LiFiDiamond_v2_evt_LiFiTransferStarted') }}
from {{ source('lifi_avalanche_c', 'LiFiDiamond_v2_evt_LiFiTransferStarted') }}
),
transactions as (
select
Expand All @@ -34,5 +34,5 @@ select
s.*,
t.sender
from source_data s
inner join transactions t
left join transactions t
on s.evt_tx_hash = t.tx_hash

0 comments on commit 8c51ec5

Please sign in to comment.