Skip to content

Commit

Permalink
Fixes event filtering for any_evm (#1561)
Browse files Browse the repository at this point in the history
Closes #1560
  • Loading branch information
ravenac95 committed May 31, 2024
1 parent 457ae9d commit 46066d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ with blockchain_artifacts as (
else 0
end as artifact_rank
from {{ ref('int_all_artifacts') }}
where artifact_source = "{{ upper_network_name }}"
where artifact_source in ("{{ upper_network_name }}", "ANY_EVM")
)
group by artifact_source_id
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ with blockchain_artifacts as (
else 0
end as artifact_rank
from {{ ref('int_all_artifacts') }}
where LOWER(artifact_source) = LOWER('OPTIMISM')
where UPPER(artifact_source) in ('OPTIMISM', 'ANY_EVM')
)
group by artifact_source_id
),
Expand Down

0 comments on commit 46066d2

Please sign in to comment.