PLATFORM_NAME | USD_VOLUME | # of transactions | # of Traders | |
---|---|---|---|---|
1 | Floor Protocol | 14768233.1 | 3234 | 372 |
2 | rarible | 208595.400222571 | 166 | 123 |
3 | opensea | 25650503.1934603 | 48003 | 24512 |
4 | larva labs | 2914507.3527134 | 11 | 7 |
5 | sudoswap | 184792.737650742 | 189 | 81 |
6 | blur | 135322231.011244 | 42064 | 14800 |
7 | x2y2 | 3347506.26595177 | 841 | 481 |
8 | looksrare | 274466.880384322 | 211 | 155 |
9 | nftx | 193381.442297451 | 185 | 101 |
rezarwzpast 7 days fp
Updated 2024-02-03
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
›
⌄
with FP as (
with trades as (
SELECT
TX_HASH,
BLOCK_TIMESTAMP as date,
ORIGIN_FROM_ADDRESS as ua,
CASE
when TOKEN_IN in (
SELECT
DECODED_LOG:floorToken
from
ethereum.core.ez_decoded_event_logs
where
contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and event_name = 'NewCollectionSupported'
) then SYMBOL_IN
else SYMBOL_OUT
end as Floor_token,
CASE
when TOKEN_IN in (
SELECT
DECODED_LOG:floorToken
from
ethereum.core.ez_decoded_event_logs
where
contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and event_name = 'NewCollectionSupported'
) then AMOUNT_IN
else AMOUNT_OUT
end as Floor_token_amount,
CASE
when TOKEN_IN in (
SELECT
DECODED_LOG:floorToken
from
ethereum.core.ez_decoded_event_logs
Last run: about 1 year ago
9
336B
31s