flyingfishsolana stablecoins supply
    Updated 2025-05-13
    with stable_tokens as (
    select
    *
    from (
    values
    ('EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v') -- USDC
    , ('Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB') -- USDT
    , ('2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo') -- PYUSD
    , ('USDSwr9ApdHk5bvJKMjzff41FfuX8bSxdKcR81vTwcA') -- USDS
    , ('A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6') -- usdY
    ) t(mint)
    )

    , token_details as (
    select
    token_address as mint
    , name
    , symbol
    , iff(decimals is not null, decimals, 6) as token_decimals
    from solana.price.ez_asset_metadata
    where token_address in (select mint from stable_tokens)

    )

    , first_mint as (
    select min(block_timestamp)::date as first_mint_date
    from solana.defi.fact_token_mint_actions
    where mint in (select mint from stable_tokens)
    )

    , dates_cte as (
    SELECT
    distinct date
    --, token_address-- as mint
    FROM (
    SELECT
    Last run: 21 days ago
    DATE
    USDC_DELTA
    USDT_DELTA
    PYUSD_DELTA
    USDS_DELTA
    USDY_DELTA
    STABLE_TOTAL_DELTA
    STABLE_TOTAL_SUPPLY
    USDC_TOTAL_SUPPLY
    USDT_TOTAL_SUPPLY
    PYUSD_TOTAL_SUPPLY
    USDS_TOTAL_SUPPLY
    USDY_TOTAL_SUPPLY
    1
    2021-05-01 00:00:00.000-0.000540000-0.00054975000024.21026785000019.99946190000004.2108000
    2
    2024-02-01 00:00:00.000-3300000763.92203-1.72994500300000-3299700765.651973625279859.269651734941506.731841889938352.5378100399999.999999
    3
    2024-10-01 00:00:00.000-5572854.75387692-118.594835-102052495.3170740-4.108426-107625472.7742125167659395.873082955857789.08041889937983.48278221279363.0148830100584260.295019
    4
    2023-09-01 00:00:00.000-33.538891-2.318898000-35.8577896924883353.194385034943363.049811889939990.14458000
    5
    2025-05-01 00:00:00.000-1259718302.88719-763.9515146717448.917797-7385971.390092-1302944.31272-1261690533.6237212017091319.41059204445817.821412389928593.85776155968968.875911103978348.161089162769590.694344
    6
    2023-10-01 00:00:00.000-1.999155-1.225597000-3.2247526924883349.969635034943361.050651889939988.91898000
    7
    2022-07-01 00:00:00.000-238.201402-4.437519000-242.6389216924999422.11725034999435.358021889999986.75919000
    8
    2021-03-01 00:00:00.000090000001.77600090000001.776410000023.322832000002090000003.3228000
    9
    2023-02-01 00:00:00.000-10.572729-0.424006000-10.9967356924953980.212145034954018.946471889999961.26567000
    10
    2024-01-01 00:00:00.000-199.388743-859.90960600-0.000001-1059.298356924980624.921625034942270.653871889938354.267750099999.999999
    11
    2023-08-01 00:00:00.000-2.773331-119.732148000-122.5054796924883389.052175034943396.58871889939992.46347000
    12
    2024-04-01 00:00:00.000422376129.621147-0.22270815014000000436376144.3984394630666718.489312698545922.615551889938347.4703215042182433.403445
    13
    2024-03-01 00:00:00.000541228286.262559-4.8447840027782433.403446569010714.8212214194290574.090872276169792.99441889938347.693030028182433.403445
    14
    2025-02-01 00:00:00.000-652663628.168534-2672.4366646709717.10143912877512.982428-0.804545-633079071.32587611504381156.68439097672722.054072039934083.96039155336245.721632110853856.25393100584248.694305
    15
    2022-11-01 00:00:00.000-10402.618554-1.017765000-10403.6363196924954023.104675034954059.494221889999963.61045000
    16
    2024-07-01 00:00:00.000173372806.395658-11.500703198175291.44539100371548086.3403464951818239.916022746308811.826091889938216.71869273388777.967788042182433.403445
    17
    2021-04-01 00:00:00.000465000000100000000.888000565000000.888975000024.2108785000020190000004.2108000
    18
    2022-06-01 00:00:00.000-10.359357-5.057074000-15.4164316924999664.756135034999673.559421889999991.19671000
    19
    2024-06-01 00:00:00.000-17772592.761127-64.76653730213193.5023970012440535.9747334580270153.575672572936005.430441889938228.219475213486.522397042182433.403445
    20
    2021-08-01 00:00:00.000400000000100000000.888000500000000.8881575000025.986261185000019.99946390000005.9868000
    53
    7KB
    13s