winnie-fsTypically, what initial duration do NFTs in the safebox choose?
    Updated 2024-01-03
    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