messariSolana NFT Trading Activity by Marketplace - Last 90 Days copy
Updated 2024-03-26
999
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 marqu / Solana NFT Trading Activity by Marketplace - Last 90 Days @ https://flipsidecrypto.xyz/marqu/q/NSptqNRkwc90/solana-nft-trading-activity-by-marketplace---last-90-days
with
cnft_sales_txs as (
select
block_timestamp
, tx_id
, 'tensorswap' as marketplace
, case
when event_type = 'buy'
then decoded_instruction :accounts[9] :pubkey ::string
when event_type = 'takeBidFullMeta'
then decoded_instruction :accounts[12] :pubkey ::string
when event_type = 'takeBidLegacy'
then decoded_instruction :accounts[3] :pubkey ::string
when event_type = 'takeBidMetaHash'
then decoded_instruction :accounts[12] :pubkey ::string
else null
end as buyer
, case
when event_type = 'buy'
then decoded_instruction :accounts[11] :pubkey ::string
when event_type = 'takeBidFullMeta'
then decoded_instruction :accounts[2] :pubkey ::string
when event_type = 'takeBidLegacy'
then decoded_instruction :accounts[1] :pubkey ::string
when event_type = 'takeBidMetaHash'
then decoded_instruction :accounts[2] :pubkey ::string
else null
end as seller
, case
when event_type = 'buy'
then decoded_instruction :accounts[2] :pubkey ::string
QueryRunArchived: QueryRun has been archived