hbd1994Delete Bidding for NFTs v2
Updated 2023-12-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
select
BLOCK_NUMBER,
BLOCK_TIMESTAMP,
VERSION,
TX_HASH,
EVENT_ADDRESS,
'Mercato' as marketplace,
EVENT_DATA:bid_buyer as buyer,
EVENT_DATA:bid:inner as bid_inner,
to_timestamp(EVENT_DATA:timestamp) as bidding_timestamp,
EVENT_DATA:price/pow(10,8) as prcie,
EVENT_DATA:token:inner as token_inner
from aptos.core.fact_events
where event_address in ('0xe11c12ec495f3989c35e1c6a0af414451223305b579291fc8f3d9d0575a23c26')
and EVENT_MODULE = 'biddings_v2'
and EVENT_RESOURCE = 'DeleteTokenBidEvent'
and SUCCESS = 'true'
and TX_TYPE = 'user_transaction'
order by 2 desc
limit 100
Run a query to Download Data