maybeyonasUntitled Query
    Updated 2022-10-27
    with
    flat_logs as (
    select
    block_timestamp,
    tx_hash,
    receiver_id,
    value as log
    from near.core.fact_receipts r,
    lateral flatten(input => r.logs)
    )

    select
    tx_hash,
    log
    from flat_logs
    where tx_hash = 'FNnNFspeaJjrnmVQrwLBX6NZn8FaZHqzZpMEKVBgm4pE'
    Run a query to Download Data