mirror of
https://github.com/FlipsideCrypto/avalanche-models.git
synced 2026-02-06 11:06:55 +00:00
20 lines
391 B
SQL
20 lines
391 B
SQL
{{ config(
|
|
materialized = 'table',
|
|
unique_key = "contract_address"
|
|
) }}
|
|
|
|
SELECT
|
|
contract_address,
|
|
'avalanche' AS blockchain,
|
|
COUNT(*) AS transfers,
|
|
MIN(block_number) AS created_block
|
|
FROM
|
|
{{ ref('silver__logs') }}
|
|
WHERE
|
|
topics [0] :: STRING = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
|
|
GROUP BY
|
|
1,
|
|
2
|
|
HAVING
|
|
COUNT(*) > 25
|