hessMint Transactions (Sorted Based on NFT Numbers ASC)
Updated 2024-03-20
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 hash as ( select DISTINCT tx_id
from sei.core.fact_msg_attributes
where attribute_value = 'sei1g2a0q3tddzs7vf7lk45c2tgufsaqerxmsdr2cprth3mjtuqxm60qdmravc'
and attribute_key = 'collection'
and block_timestamp::date >= '2023-12-29'
and tx_id in (select tx_id from sei.core.fact_msg_attributes
where attribute_value = 'mint'
and attribute_key = 'action'
and block_timestamp::date >= '2023-12-29'))
,
nfts as (select block_timestamp,
tx_id,
attribute_value as nft
from sei.core.fact_msg_attributes
where tx_id in (select tx_id from hash)
and block_timestamp::date >= '2023-12-29'
and attribute_key = 'token_id'
)
,
final as (select DISTINCT nft,
a.block_timestamp,
a.tx_id,
attribute_value as user
from sei.core.fact_msg_attributes a join nfts b on a.tx_id = b.tx_id
where attribute_key = 'fee_payer'
and a.block_timestamp::date >= '2023-12-29'
)
select nft,
block_timestamp,
tx_id,
user
from final
order by CAST(nft AS INTEGER) ASC
limit 9001
QueryRunArchived: QueryRun has been archived