scottincryptoAave Tokenomics
    Updated 2024-01-29
    with xfer_out as (
    select
    date_trunc('day', block_timestamp) as block_day
    -- , from_address as contract_address
    , sum(amount) as transfer_out
    from ethereum.core.ez_token_transfers
    where contract_address = '0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9'
    -- and block_timestamp >= '2020-09-23'
    and from_address in (
    '0x25f2226b597e8f9514b3f68f00f494cf4f286491' -- Ecosystem Reserve
    , '0xd784927ff2f95ba542bfc824c8a8a98f3495f6b5' -- Incentives Controller V2
    , '0x317625234562b1526ea2fac4030ea499c5291de4' -- EthLend Migrator Contract
    )
    group by block_day --, from_address
    ),

    xfer_in as (
    select
    date_trunc('day', block_timestamp) as block_day
    -- , to_address as contract_address
    , sum(amount) as transfer_in
    from ethereum.core.ez_token_transfers
    where contract_address = '0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9'
    -- and block_timestamp >= '2020-09-23'
    and to_address in (
    '0x25f2226b597e8f9514b3f68f00f494cf4f286491' -- Ecosystem Reserve
    , '0xd784927ff2f95ba542bfc824c8a8a98f3495f6b5' -- Incentives Controller V2
    , '0x317625234562b1526ea2fac4030ea499c5291de4' -- EthLend Migrator Contract
    )
    group by block_day --, to_address

    )

    , stk_xfer_out as (
    select
    date_trunc('day', block_timestamp) as block_day
    Last run: about 1 year agoAuto-refreshes every 12 hours
    BLOCK_DAY
    NON_CIRCULATING_SUPPLY
    CIRCULATING_SUPPLY
    STK_AAVE_SUPPLY
    1
    2020-10-02 00:00:00.00015567529.7060617432470.293938272340914.844769633
    2
    2020-10-03 00:00:00.00014626855.64429881373144.355701251048604.16137725
    3
    2020-10-04 00:00:00.00014368838.56751021631161.43248981246441.25772437
    4
    2020-10-05 00:00:00.00011694260.55892114305739.441078921310057.19336433
    5
    2020-10-06 00:00:00.00011380418.83881374619581.16118631364167.20781719
    6
    2020-10-07 00:00:00.00011152799.60433334847200.395666711420338.20064753
    7
    2020-10-08 00:00:00.00010953338.09357615046661.906423921450021.9970472
    8
    2020-10-09 00:00:00.00010875327.21081615124672.789183941495024.94030565
    9
    2020-10-10 00:00:00.00010769186.22809375230813.771906271556434.32662755
    10
    2020-10-11 00:00:00.00010740380.16551945259619.834480591574376.04642264
    11
    2020-10-12 00:00:00.00010556164.40204575443835.597954251708930.30256256
    12
    2020-10-13 00:00:00.0007031380.614838888968619.385161121697440.07338471
    13
    2020-10-14 00:00:00.0006939307.312977679060692.687022341727900.79598355
    14
    2020-10-15 00:00:00.0006773050.21246139226949.78753871752289.26224137
    15
    2020-10-16 00:00:00.0006576672.627254179423327.372745831945475.52045006
    16
    2020-10-17 00:00:00.0006515065.022881919484934.977118091964012.79748739
    17
    2020-10-18 00:00:00.0006488148.13495289511851.86504721963251.82186348
    18
    2020-10-19 00:00:00.0006334292.967355649665707.032644362045771.16208171
    19
    2020-10-20 00:00:00.0005437154.2545026810562845.74549732106020.93203943
    20
    2020-10-21 00:00:00.0005365534.3256889110634465.67431112811745.06699589
    ...
    1215
    93KB
    86s