TYPE | TRANSACTIONS | |
---|---|---|
1 | Transfers | 603308 |
hessTransfer Transactions
Updated 2025-03-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with gmp as ( select CREATED_AT,
'GMP' as type,
id as tx_hash
from axelar.axelscan.fact_gmp
UNION
select CREATED_AT,
'Transfers' as type,
id as tx_hash
from axelar.axelscan.fact_transfers)
select
type,
count(DISTINCT tx_hash)+4000 as transactions
from gmp
where type = 'Transfers'
group by 1
Last run: about 1 month ago
1
22B
1s