mirror of
https://github.com/FlipsideCrypto/aurora-models.git
synced 2026-02-06 13:56:51 +00:00
17 lines
283 B
SQL
17 lines
283 B
SQL
{{ config (
|
|
materialized = "table",
|
|
unique_key = "contract_address"
|
|
) }}
|
|
|
|
SELECT
|
|
contract_address,
|
|
'Aurora' AS blockchain,
|
|
COUNT(*) AS events,
|
|
MAX(block_number) AS latest_block
|
|
FROM
|
|
{{ ref('silver__logs') }}
|
|
GROUP BY
|
|
1,
|
|
2
|
|
HAVING
|
|
COUNT(*) >= 25 |