TIME | PLATFORM_NAME | NEW_USERS | |
---|---|---|---|
1 | 2024-01-01 00:00:00.000 | blur | 22833 |
2 | 2024-01-01 00:00:00.000 | rarible | 242 |
3 | 2024-01-01 00:00:00.000 | x2y2 | 638 |
4 | 2024-01-01 00:00:00.000 | looksrare | 493 |
5 | 2024-01-01 00:00:00.000 | nftx | 511 |
6 | 2024-01-01 00:00:00.000 | opensea | 25953 |
7 | 2024-01-01 00:00:00.000 | larva labs | 58 |
8 | 2024-01-01 00:00:00.000 | sudoswap | 100 |
9 | 2024-01-01 00:00:00.000 | Flooring Protocol | 2269 |
10 | 2023-12-01 00:00:00.000 | opensea | 28973 |
11 | 2023-12-01 00:00:00.000 | x2y2 | 855 |
12 | 2023-12-01 00:00:00.000 | rarible | 280 |
13 | 2023-12-01 00:00:00.000 | larva labs | 21 |
14 | 2023-12-01 00:00:00.000 | Flooring Protocol | 1216 |
15 | 2023-12-01 00:00:00.000 | sudoswap | 98 |
16 | 2023-12-01 00:00:00.000 | blur | 24982 |
17 | 2023-12-01 00:00:00.000 | looksrare | 667 |
18 | 2023-12-01 00:00:00.000 | nftx | 433 |
19 | 2023-11-01 00:00:00.000 | Flooring Protocol | 766 |
20 | 2023-11-01 00:00:00.000 | rarible | 299 |
rezarwznew users old dash fl
Updated 2024-01-29
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
›
⌄
with flooring as (
SELECT
*
from
(
with all_u as (
SELECT
TX_HASH,
BLOCK_TIMESTAMP,
ORIGIN_FROM_ADDRESS as ua
from
ethereum.core.ez_decoded_event_logs
where
contract_address in(
'0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2',
'0x49ad262c49c7aa708cc2df262ed53b64a17dd5ee'
)
UNION
all
SELECT
tx_hash,
block_timestamp,
ORIGIN_FROM_ADDRESS as ua
FROM
ethereum.defi.ez_dex_swaps
WHERE
TOKEN_IN in (
SELECT
DECODED_LOG:floorToken
from
ethereum.core.ez_decoded_event_logs
where
contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and event_name = 'NewCollectionSupported'
)
or TOKEN_out in (
Last run: about 1 year agoAuto-refreshes every 3 hours
...
328
14KB
83s