ValiMohammadiUntitled Query
Updated 2022-07-14
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
block_timestamp::date as Myday, count(distinct tx_hash) as Lending_number,
count(distinct origin_from_address) as count_of_Wallet,symbol,
sum(amount) as amount_of_lending, blockchain
from crosschain.ez_lending
where symbol in ('UST','DAI','USDT','USDC','TUSD', 'sUSD')
and lending_pool ilike 'km%'
and action = 'Deposit'
group by Myday, blockchain, symbol
order by Myday
Run a query to Download Data