datavortexCummulative minters and TVl
    Updated 2025-02-16
    WITH minters AS (
    SELECT
    'Ethereum' AS chain,
    DATE_TRUNC('day', block_timestamp) AS date,
    origin_from_address
    FROM ethereum.core.ez_decoded_event_logs
    WHERE
    contract_address = LOWER('0x8236a87084f8B84306f72007F36F2618A5634494')
    AND decoded_log:from = '0x0000000000000000000000000000000000000000'
    AND event_name = 'Transfer'

    UNION ALL
    SELECT
    'Base' AS chain,
    DATE_TRUNC('day', block_timestamp) AS date,
    origin_from_address
    FROM base.core.ez_decoded_event_logs
    WHERE
    contract_address = LOWER('0xecAc9C5F704e954931349Da37F60E39f515c11c1')
    AND decoded_log:from = '0x0000000000000000000000000000000000000000'
    AND event_name = 'Transfer'

    UNION ALL

    SELECT
    'BSC' AS chain,
    DATE_TRUNC('day', block_timestamp) AS date,
    origin_from_address
    FROM bsc.core.ez_decoded_event_logs
    WHERE
    contract_address = LOWER('0xecAc9C5F704e954931349Da37F60E39f515c11c1')
    AND decoded_log:from = '0x0000000000000000000000000000000000000000'
    AND event_name = 'Transfer'
    ),

    daily_minters AS (
    Last run: 3 months ago
    DATE
    CHAIN
    DAILY_UNIQUE_MINTERS
    CUMULATIVE_MINTERS
    1
    2024-06-04 00:00:00.000Ethereum11
    2
    2024-06-05 00:00:00.000Ethereum23
    3
    2024-06-06 00:00:00.000Ethereum14
    4
    2024-06-17 00:00:00.000Ethereum15
    5
    2024-06-28 00:00:00.000Ethereum16
    6
    2024-07-08 00:00:00.000Ethereum17
    7
    2024-07-11 00:00:00.000Ethereum18
    8
    2024-07-16 00:00:00.000Ethereum19
    9
    2024-07-18 00:00:00.000Ethereum110
    10
    2024-07-26 00:00:00.000Ethereum111
    11
    2024-07-29 00:00:00.000Ethereum112
    12
    2024-08-02 00:00:00.000Ethereum113
    13
    2024-08-09 00:00:00.000Ethereum114
    14
    2024-08-15 00:00:00.000Ethereum115
    15
    2024-08-16 00:00:00.000Ethereum116
    16
    2024-08-19 00:00:00.000Ethereum218
    17
    2024-08-20 00:00:00.000Ethereum220
    18
    2024-08-21 00:00:00.000Ethereum828
    19
    2024-08-22 00:00:00.000Ethereum156184
    20
    2024-08-23 00:00:00.000Ethereum146330
    ...
    375
    17KB
    44s