Spot-WiggumWIP Borrow Distribution 3
Updated 2025-01-14
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from BASE Borrow Distribution 3 @ https://flipsidecrypto.xyz/studio/queries/3cdab843-95ce-4a91-93b5-17d41c78a737
-- forked from banbannard / Borrow Distribution 3 @ https://flipsidecrypto.xyz/banbannard/q/Flz2QBve7fDS/borrow-distribution-3
with base as (select block_timestamp, dim_block_id,
owner,
round(collateralization_ratio/10000, 2) as CR,
round((1/CR) * 100, 2) as LTV,
split(collateral_asset, '.')[1] as collateral,
split(split(target_asset, '.')[1], '-')[0] as borrow,
collateral_asset,
target_asset
from thorchain.defi.fact_loan_open_events
where block_timestamp >= '2023-08-01'),
base2 as (select a.block_timestamp, a.dim_block_id, owner, cr, LTV,
collateral_asset,
collateral,
from_amount,
from_amount_USD,
target_asset,
borrow,
case
when affiliate_address = 'thor160yye65pf9rzwrgqmtgav69n6zlsyfpgm9a7xk' then 'THORSwap'
when affiliate_address = 'wr' then 'THORWallet'
when affiliate_address = 'tl' then 'TS Ledger'
when affiliate_address = 'cb' then 'Team CoinBot'
when affiliate_address is null then 'No Affiliate'
else affiliate_address
end as affiliates,
tx_id,
max(b.streaming_quantity) as collateral_SS_count
from base a
left join thorchain.defi.fact_swaps b
on a.block_timestamp = b.block_timestamp and a.owner = b.from_address
where tx_id in (select tx_id
QueryRunArchived: QueryRun has been archived