tkvresearchbetter-amber
    Updated 2025-02-09
    --0x9b911b5e (create_token_function)


    select datetime,
    count(distinct tx_hash) as tx_cnt,
    count(distinct CONTRACT_ADDRESS) as token_cnt,
    count(distinct TO_ADDRESS) as creator_cnt,
    sum(count(distinct tx_hash)) over (order by datetime) as cumsum_tx_cnt,
    sum(count(distinct CONTRACT_ADDRESS)) over (order by datetime) as cumsum_token_cnt,
    sum(count(distinct TO_ADDRESS)) over (order by datetime) as cumsum_creator_cnt
    from
    (select date(BLOCK_TIMESTAMP) as datetime,
    TX_HASH,
    CONTRACT_ADDRESS,
    TO_ADDRESS
    from bsc.core.ez_token_transfers
    where ORIGIN_FUNCTION_SIGNATURE = '0x470d871e'
    and
    to_address != '0xec4549cadce5da21df6e6422d448034b5233bfbc'
    )
    group by 1

    Last run: 3 months ago
    DATETIME
    TX_CNT
    TOKEN_CNT
    CREATOR_CNT
    CUMSUM_TX_CNT
    CUMSUM_TOKEN_CNT
    CUMSUM_CREATOR_CNT
    1
    2024-07-20 00:00:00.000444125125106
    2
    2024-08-14 00:00:00.000444182182160
    3
    2024-08-05 00:00:00.000222173173151
    4
    2024-07-07 00:00:00.000221888872
    5
    2024-08-28 00:00:00.000919175418841883236
    6
    2024-07-02 00:00:00.000443886
    7
    2024-07-03 00:00:00.000666654747460
    8
    2024-08-22 00:00:00.000167216721203299829982260
    9
    2024-07-05 00:00:00.000111848469
    10
    2024-07-10 00:00:00.000111909074
    11
    2024-07-22 00:00:00.000887135135115
    12
    2024-07-26 00:00:00.000333149149129
    13
    2024-08-25 00:00:00.000175175133385538552953
    14
    2024-07-15 00:00:00.00099710010082
    15
    2024-08-15 00:00:00.000222184184162
    16
    2024-07-16 00:00:00.00055510510587
    17
    2024-08-11 00:00:00.000111178178156
    18
    2024-08-31 00:00:00.000393935440144013415
    19
    2024-08-02 00:00:00.000222167167147
    20
    2024-07-18 00:00:00.00033311111193
    55
    3KB
    4s