Skip to content

Commit

Permalink
fix: replaces to_ with from_ address (#1572)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccerv1 authored Jun 2, 2024
1 parent a00eb35 commit c411ea6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ all_transactions as (
LOWER(transactions.to_address) as to_artifact_name,
"CONTRACT" as to_artifact_type,
LOWER(transactions.to_address) as to_artifact_source_id,
COALESCE(to_artifacts.artifact_id, {{ oso_id("'%s'" % upper_network_name, "transactions.from_address") }}) as from_artifact_id,
COALESCE(from_artifacts.artifact_id, {{ oso_id("'%s'" % upper_network_name, "transactions.from_address") }}) as from_artifact_id,
LOWER(transactions.from_address) as from_artifact_name,
"EOA" as from_artifact_type,
LOWER(transactions.from_address) as from_artifact_source_id,
Expand Down

0 comments on commit c411ea6

Please sign in to comment.