No Data to Display
rezarwz2024-01-30 02:49 PM
Updated 2024-01-30
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 ft as (
SELECT
DECODED_LOG:floorToken as floorToken,
DECODED_LOG:collection as collection
from
ethereum.core.ez_decoded_event_logs
where
contract_address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and event_name = 'NewCollectionSupported'
),
FP as (
with trades as (
SELECT
TX_HASH,
date_trunc('day', 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'
Last run: about 1 year ago
0
2B
16s