RayyykWeekly Stats 7
    Updated 3 days ago
    with table_1 as (select date_trunc('week', block_timestamp) as week,
    a1.value::string as affiliate_addresss,
    sum(from_amount_usd) as usd_volume,
    sum(usd_volume) over (partition by affiliate_addresss order by week) as cumu_usd_volume
    from thorchain.defi.fact_swaps as t,
    lateral flatten(input => t.affiliate_addresses_array) a1,
    lateral flatten(input => t.affiliate_fee_basis_points_array) a2
    where block_timestamp < date_trunc('week', current_date)
    and block_timestamp >= '2024-01-01'
    and affiliate_address is not null
    group by 1,2)

    select week,
    affiliate as "Affiliates",
    usd_volume,
    cumu_usd_volume
    from table_1 a
    join $query('4ebfe5bf-1afd-4187-b326-3ea8a4c8d308') b on a.affiliate_addresss = b.affiliate_address
    having "Affiliates" != 'No Affiliate'
    order by 3 desc
    Last run: 3 days ago
    WEEK
    Affiliates
    USD_VOLUME
    CUMU_USD_VOLUME
    1
    2025-02-24 00:00:00.000Asgardex715180431.1175871449228492.68875
    2
    2025-03-24 00:00:00.000SwapKit356376940.976121982120597.78205
    3
    2025-03-24 00:00:00.000THORSwap319784127.5898923356965874.93242
    4
    2025-03-03 00:00:00.000Asgardex279907900.4978951729136393.18664
    5
    2024-03-25 00:00:00.000ShapeShift272684808.66539597285342.000849
    6
    2025-02-24 00:00:00.000SwapKit249926679.6470631244738750.28534
    7
    2025-02-24 00:00:00.000TrustWallet191329417.7187962991450593.84572
    8
    2025-02-24 00:00:00.000THORWallet170591769.280253761985150.716844
    9
    2025-02-24 00:00:00.000OKX Wallet160319960.8009641463635957.18109
    10
    2025-03-17 00:00:00.000SwapKit151964968.6896851625743656.80593
    11
    2025-02-17 00:00:00.000SwapKit148207551.850731994812070.638272
    12
    2024-08-26 00:00:00.000THORSwap145020158.584881859823487.61339
    13
    2025-03-10 00:00:00.000SwapKit117733628.8074261473778688.11624
    14
    2025-01-20 00:00:00.000SwapKit117656742.414561656618069.771748
    15
    2024-03-18 00:00:00.000ShapeShift116518629.536732324600533.335459
    16
    2025-01-20 00:00:00.000OKX Wallet115762295.2945511104382101.15898
    17
    2025-03-03 00:00:00.000SwapKit111306309.0234831356045059.30882
    18
    2024-11-11 00:00:00.000TrustWallet102941618.5612891992196737.8715
    19
    2025-02-24 00:00:00.000TrustWallet100729774.464817131210502.615572
    20
    2025-01-13 00:00:00.000SwapKit99972308.961549538961327.357187
    ...
    1716
    123KB
    5s