Skip to content

Commit

Permalink
fix: small fixes to rf4 eligibility filtering (#1553)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccerv1 committed May 29, 2024
1 parent eefffa9 commit 6ee14c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ checks as (
unique_addresses,
date_first_transaction,
days_with_onchain_activity_in_range,
ARRAY_LENGTH(eligible_repos) >= 1 as check_oss_requirements,
COALESCE(ARRAY_LENGTH(eligible_repos), 0) >= 1 as check_oss_requirements,
unique_addresses >= 420 as check_unique_addresses,
date_first_transaction < '2024-03-01' as check_date_first_transaction,
days_with_onchain_activity_in_range >= 10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,4 @@ left join {{ ref('projects_v1') }}
left join {{ ref('projects_by_collection_v1') }}
on repo_snapshot.project_id = projects_by_collection_v1.project_id
where
projects_by_collection_v1.collection_name = 'op-onchain'
and repo_snapshot.license_type != 'Unspecified'
repo_snapshot.license_type != 'Unspecified'

0 comments on commit 6ee14c8

Please sign in to comment.