0xtableauRSOP_Sales
Updated 2022-11-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
tx_id,
block_timestamp as tx_date,
event_type,
token_id,
tx_currency,
event_from as from_wallet,
event_to as to_wallet,
round(price,5) as price,
round(price_usd,5) as price_usd,
round(platform_fee,5) as platform_fee
from ethereum.nft_events
where lower(contract_address) = lower('0xB159F1a0920A7f1D336397A52D92da94b1279838')
order by 2 desc nulls last
Run a query to Download Data