pietrektTC Aff Fees
    Updated 19 hours ago
    -- Query by @banbannard -- RELEVANT UP TO 01.11.2024
    with base as (select tx_id,
    to_date(block_timestamp) as date,
    affiliate_address, affiliate_fee_basis_points,
    split(from_asset, '-')[0] as from_assets,
    case
    when from_assets ilike '%/%' then split(from_assets, '/')[1]
    else split(from_assets, '.')[1]
    end as from_asset_names,
    split(to_asset, '-')[0] as to_assets,
    case
    when to_assets ilike '%/%' then split(to_assets, '/')[1]
    else split(to_assets, '.')[1]
    end as to_asset_names,
    concat(from_asset_names, ' -> ', to_asset_names) as assets,
    case when assets ilike '%RUNE' then 2
    else 1
    end as numbering,
    sum(from_amount_usd) as swap_volume
    from thorchain.defi.fact_swaps
    where date < '2024-11-01'
    group by tx_id, date,
    affiliate_address, affiliate_fee_basis_points,
    from_asset, to_asset),

    base2 as (select date,
    tx_id,
    affiliate_address, affiliate_fee_basis_points,
    array_agg(distinct assets) within group (order by assets asc) as swap_direction, --merging 2 sep path to 1
    sum(swap_volume) as swap_volume
    from base
    group by 1,2,3,4),

    base3 as (select date,
    tx_id,
    affiliate_address, affiliate_fee_basis_points,
    Last run: about 19 hours agoAuto-refreshes every 24 hours
    DAY
    LABEL
    FEE_USD
    CUMULATIVE_FEE_USD
    TOTAL_CUMULATIVE_FEE_USD
    1
    2025-04-02 00:00:00.000TrustWallet545.51872564213945650.186774132363230.2276903
    2
    2025-04-02 00:00:00.000Swapkit29.626842933769713.04746542632363230.2276903
    3
    2025-04-02 00:00:00.000Others90.3719742731766463.6640948332363230.2276903
    4
    2025-04-02 00:00:00.000THORSwap229.659149797408427.0050830432363230.2276903
    5
    2025-04-02 00:00:00.000Asgardex8.8402427241944608.1960519932363230.2276903
    6
    2025-04-01 00:00:00.000THORWallet419.6997913871881433.3038410932362326.2107549
    7
    2025-04-01 00:00:00.000CS66.18891524319.35521487432362326.2107549
    8
    2025-04-01 00:00:00.000Ledger9942.0350885573484195.2376228632362326.2107549
    9
    2025-04-01 00:00:00.000TrustWallet15129.62545331113945104.668048532362326.2107549
    10
    2025-04-01 00:00:00.000brt0.12303637280.123036372832362326.2107549
    11
    2025-04-01 00:00:00.000THORSwap6352.852807717408197.3459332532362326.2107549
    12
    2025-04-01 00:00:00.000Swapkit3405.813434843769683.42062249332362326.2107549
    13
    2025-04-01 00:00:00.000Asgardex3197.5086774731944599.3558092632362326.2107549
    14
    2025-04-01 00:00:00.000Others10978.2710946991766373.2921205632362326.2107549
    15
    2025-03-31 00:00:00.000THORWallet24.9268462411881013.6040497132312834.0924553
    16
    2025-03-31 00:00:00.000-10.493116091472.5786872232312834.0924553
    17
    2025-03-31 00:00:00.000THORSwap9227.3836927777401844.4931255432312834.0924553
    18
    2025-03-31 00:00:00.000ShapeShift168.3535235081016771.9410175332312834.0924553
    19
    2025-03-31 00:00:00.000eld0.12738556562344.23902184732312834.0924553
    20
    2025-03-31 00:00:00.000TrustWallet19626.85811912613929975.042595232312834.0924553
    ...
    10333
    803KB
    14s