winnie-fsTypically, what initial duration do NFTs in the safebox choose?
Updated 2024-01-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 all_t as (
SELECT
TX_HASH,
ORIGIN_FROM_ADDRESS as ua,
BLOCK_TIMESTAMP as date,
DECODED_LOG:collection as collection,
DECODED_LOG:tokenIds as tokenIds,
'SafeBox' as position,
1 as point,
EVENT_NAME
FROM
ethereum.core.ez_decoded_event_logs
where
contract_Address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and EVENT_NAME = 'LockNft'
union
all
SELECT
TX_HASH,
ORIGIN_FROM_ADDRESS as ua,
BLOCK_TIMESTAMP as date,
DECODED_LOG:collection as collection,
DECODED_LOG:tokenIds as tokenIds,
'SafeBox' as position,
-1 as point,
EVENT_NAME
FROM
ethereum.core.ez_decoded_event_logs
where
contract_Address = '0x3eb879cc9a0ef4c6f1d870a40ae187768c278da2'
and EVENT_NAME = 'UnlockNft'
union
all
SELECT
TX_HASH,
ORIGIN_FROM_ADDRESS as ua,
QueryRunArchived: QueryRun has been archived