alitaslimiBRC-20 Transactions Over Time
Updated 2024-03-05
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
raw as (
select
block_timestamp::date as date,
count(distinct block_number) as total_blocks,
count(distinct tx_id) as total_transactions,
sum(size) as total_size
from
bitcoin.core.fact_transactions
where
block_number > 767429
group by
date
),
brcs as (
select
block_timestamp,
block_number,
tx_id,
fee, -- BTC
input_value,
output_value,
size, -- Byte
virtual_size, -- vByte
fee * pow(10, 8) / virtual_size as fee_rate, -- sat/vB,
outputs[0]:scriptPubKey:address as minter,
hex
from
bitcoin.core.fact_transactions
where
block_number > 779831
and hex like '%0063036f726401%'
and hex like '%6272632d3230%'
)
select
block_timestamp::date as "Date",
QueryRunArchived: QueryRun has been archived