defi__joshDaily token holders for EVM compactible chains (AVAX & BSC)
    Updated 2025-03-19
    /*

    daily

    */


    --- DAILY HOLDERS OF BMT TOKEN (CA: 0x7d814b9eD370Ec0a502EdC3267393bF62d891B62)
    --- https://bscscan.com/ (BSC blockchain explorer)

    -- a list of all possible addresses
    -- a list of dates from when the token was created (2025-02-26) to 2025-03-18

    with raw as (
    select
    block_timestamp,
    from_address,
    to_address,
    amount
    from bsc.core.ez_token_transfers
    where contract_address = lower('0x7d814b9eD370Ec0a502EdC3267393bF62d891B62')
    and block_timestamp::date >= '2025-02-26'
    ),

    addresses as (
    select
    distinct to_address as address
    from raw
    ),

    all_dates as (
    select
    date_day as days
    from crosschain.core.dim_dates
    where date_day::date between '2025-02-26' and '2025-03-18'
    ),
    Last run: about 1 month ago
    day
    no of $BMT holders
    1
    2025-03-11 00:00:00.00044114
    2
    2025-03-12 00:00:00.00043412
    3
    2025-03-13 00:00:00.00042967
    4
    2025-03-14 00:00:00.00042157
    5
    2025-03-15 00:00:00.00041392
    6
    2025-03-16 00:00:00.00041130
    7
    2025-03-17 00:00:00.00039563
    8
    2025-03-18 00:00:00.00035379
    9
    2025-03-10 00:00:00.0007
    10
    2025-03-09 00:00:00.0003
    11
    2025-03-07 00:00:00.0002
    12
    2025-03-08 00:00:00.0002
    13
    2025-03-01 00:00:00.0001
    14
    2025-03-04 00:00:00.0001
    15
    2025-02-27 00:00:00.0001
    16
    2025-03-02 00:00:00.0001
    17
    2025-03-03 00:00:00.0001
    18
    2025-03-06 00:00:00.0001
    19
    2025-02-26 00:00:00.0001
    20
    2025-02-28 00:00:00.0001
    21
    663B
    8s