Afonso_Diazovertime
Updated 2025-01-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
new_contracts as (
select
date_trunc('{{ period }}', created_at) as date,
count(distinct contract_address) as new_contract
from (
select
contract_address,
min(block_timestamp) as created_at
from
sei.core_evm.fact_event_logs
where
tx_status = 'SUCCESS'
group by 1
)
group by 1
),
main as (
select
contract_address,
tx_hash,
block_timestamp,
tx_fee,
from_address as user
from
sei.core_evm.fact_event_logs
join
sei.core_evm.fact_transactions using (tx_hash, block_timestamp)
where
tx_status = 'SUCCESS'
),
overtime as (
select
QueryRunArchived: QueryRun has been archived