piperHIELO MACHINE - Daily interactions
Updated 2024-10-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
⌄
/*
FREEZERVERSE
-- https://www.freezerverse.com/
-- https://polygonscan.com/txs?a=0x4576D7C2cCee17A022da1aAB3872ac689108D1f9
-- HIELO: 0xa54392D13f319dDDEcCb1dAae9BEa285C403DAe1
-- HIELO MACHINE: 0x4576D7C2cCee17A022da1aAB3872ac689108D1f9
*/
SELECT
DATE_TRUNC('day', BLOCK_TIMESTAMP) AS date,
COUNT(DISTINCT(TX_HASH)) AS DailyInteractions
FROM
polygon.core.fact_transactions
WHERE
TO_ADDRESS = lower('0x4576D7C2cCee17A022da1aAB3872ac689108D1f9')
GROUP BY date
ORDER BY date ASC
QueryRunArchived: QueryRun has been archived