messariThorchain weekly swap volume by affiliate
    Updated 7 days ago
    -- forked from Rayyyk / Weekly Stats 7 @ https://flipsidecrypto.xyz/Rayyyk/q/8UQPX3EjXesx/weekly-stats-7

    select date_trunc('week', block_timestamp) as week,
    case
    when affiliate_address in ('t', 'T', 'thor160yye65pf9rzwrgqmtgav69n6zlsyfpgm9a7xk') then 'THORSwap'
    when affiliate_address in ('wr', 'thor1a427q3v96psuj4fnughdw8glt5r7j38lj7rkp8') then 'THORWallet'
    when affiliate_address = 'tl' then 'TS Ledger'
    when affiliate_address = 'cb' then 'CoinBot'
    when affiliate_address = 'dx' then 'Asgardex'
    when affiliate_address = 'ss' then 'ShapeShift'
    when affiliate_address = 'xdf' then 'xDEFI'
    when affiliate_address = 'rg' then 'Rango'
    when affiliate_address = 'ej' then 'Edge Wallet'
    when affiliate_address = 'ds' then 'DefiSpot'
    when affiliate_address = 'lends' then 'Lends'
    when affiliate_address = 'decentralfi' then 'DecentralFi'
    when affiliate_address in ('ti', 'te', 'tr', 'td') then 'TrustWallet'
    when affiliate_address = 'lifi' then 'LiFi'
    when affiliate_address = 'oky' then 'OneKey Wallet'
    when affiliate_address = 'sy' then 'Symbiosis'
    when affiliate_address = 'vi' then 'Vultisig'
    when affiliate_address = 'cakewallet' then 'Cake Wallet'
    when affiliate_address = 'okw' then 'OKX Wallet'
    when affiliate_address is null then 'No Affiliate'
    --else 'Other'
    end as "Affiliates",
    sum(from_amount_usd) as usd_volume,
    sum(usd_volume) over (partition by "Affiliates" order by week) as cumu_usd_volume
    from thorchain.defi.fact_swaps
    where block_timestamp < date_trunc('week', current_date)
    and block_timestamp >= '2023-06-01'
    group by 1,2
    having "Affiliates" != 'No Affiliate'
    order by 3 desc


    Last run: 7 days ago
    WEEK
    Affiliates
    USD_VOLUME
    CUMU_USD_VOLUME
    1
    2025-02-24 00:00:00.000Asgardex715180431.1175881605200258.43511
    2
    2025-03-03 00:00:00.000Asgardex279907900.4978951885108158.933
    3
    2024-03-25 00:00:00.000ShapeShift272684808.66539713615390.614621
    4
    2023-10-02 00:00:00.000THORSwap214408894.062318494183420.247095
    5
    2025-02-24 00:00:00.000TrustWallet211947109.3887034548522562.29797
    6
    2025-02-24 00:00:00.000THORWallet170591769.280253848028309.586818
    7
    2024-08-26 00:00:00.000THORSwap145020158.584882971442312.34807
    8
    2024-11-18 00:00:00.000TrustWallet129466608.1870153432360355.77282
    9
    2024-11-11 00:00:00.000TrustWallet125751038.6731033302893747.5858
    10
    2024-12-02 00:00:00.000TrustWallet121273720.1066133650383113.26812
    11
    2024-03-18 00:00:00.000ShapeShift116518629.536732440930581.949231
    12
    2025-01-13 00:00:00.000TrustWallet115099206.1022344088392248.63525
    13
    2024-01-08 00:00:00.000TrustWallet113823733.0105181005029128.85382
    14
    2024-01-01 00:00:00.000TrustWallet110831492.79382891205395.843298
    15
    2024-03-11 00:00:00.000TrustWallet106770134.462341577190192.0815
    16
    2024-06-10 00:00:00.000THORSwap97131269.58938352245716990.86034
    17
    2024-11-25 00:00:00.000TrustWallet96749037.38868873529109393.1615
    18
    2024-02-26 00:00:00.000TrustWallet96366951.21757741379583826.9304
    19
    2024-12-16 00:00:00.000TrustWallet95536655.77675543828285528.67669
    20
    2023-11-06 00:00:00.000THORSwap95024259.0033657683779644.2893
    ...
    1307
    93KB
    3s