Skip to content

Commit

Permalink
fix (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinFlipside authored Nov 20, 2024
1 parent 8b916f4 commit dbda86a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions models/bronze/api_udf/bronze_api__contract_abis.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ WITH base AS (
total_interaction_count >= 1000

{% if is_incremental() %}
EXCEPT
and contract_address not in (
SELECT
contract_address
FROM
{{ this }}
WHERE
abi_data :data :result :: STRING <> 'Max rate limit reached'
abi_data :data :result :: STRING <> 'Max rate limit reached')
{% endif %}
order by total_interaction_count desc
LIMIT
25
order by total_interaction_count desc
LIMIT
25
), all_contracts AS (
SELECT
contract_address
Expand Down

0 comments on commit dbda86a

Please sign in to comment.