0xHaM-dFlowty Total Users
Updated 2024-09-03
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
›
⌄
-- forked from New and Active Terra Users @ https://flipsidecrypto.xyz/edit/queries/6a61512f-ca15-462e-ba1e-96dda34df987
with
flowty_marketplace as (
select *
from flow.core.fact_events
where event_type in ('OfferCompleted','ListingCompleted')
and event_contract in ('A.3cdbb3d569211ff3.NFTStorefrontV2','A.b8ea91944fd51c43.OffersV2')
and tx_succeeded = 'true'
and event_data:purchased = 'true'
)
,
OfferCompleted_Tb as (
select
block_timestamp,
tx_id,
EVENT_DATA:offerAddress::string as buyer,
EVENT_DATA:acceptingAddress::string as seller,
EVENT_DATA:offerAmount::float as sales_amount,
EVENT_DATA:offerType::string as collection,
EVENT_DATA:nftId::integer as nft_id,
EVENT_DATA:paymentVaultType as token
from flowty_marketplace
where event_type = 'OfferCompleted'
AND event_data::string like '%0x6590f8918060ef13%'
)
,
ListingCompleted_Tb as (
select
block_timestamp,
tx_id,
EVENT_DATA:buyer::string as buyer,
EVENT_DATA:storefrontAddress::string as seller,
EVENT_DATA:salePrice::float as sales_amount,
EVENT_DATA:nftType::string as collection,
QueryRunArchived: QueryRun has been archived