CryptoIcicleExchange Flows in the Bear - After Withdrawal Metrics
Updated 2022-08-13
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
›
⌄
-- -- Payout 150 USDC
-- -- Grand Prize 500 USDC
-- -- Payout Network Ethereum
-- -- Level Advanced
-- -- Difficulty Elite
-- Let's understand whether the bear market and recent issues with CeFi products have changed centralized exchange users' behavior.
-- Explore trends in exchange withdrawal (specifically, moving money from CEX addresses onto the chain)
-- patterns over the last 6 months.
-- Have those withdrawals increased?
-- Has the typical size of them changed?
-- Most important: are people creating new wallets to take custody of their CeFi deposits?
-- Also have a look at what people do after a withdrawal:
-- are they holding their withdrawn tokens?
-- Or are they fiat-on-ramping so they can swap, provide liquidity, buy NFTs, etc.hint:
-- find centralized exchange addresses in [chainname].core.dim_labels where label_type = 'cex' and label_subtype = 'hot_wallet'
-- other hint: feel free to include a couple of major chains for this analysis, but certainly at least include Ethereum
-- NOTE: We will pay out the 10 best submissions for this bounty according to the following:
-- 1st Prize: 500 USDC
-- 2nd Prize: 400 USDC
-- 3rd Prize: 300 USDC
-- 4-10 Prize: 150 USDC
with cex_wallets as (
select
*
from ethereum.core.dim_labels
where label_type = 'cex' and label_subtype = 'hot_wallet'
),
transfers as (
(
select
split(w.address_name,' ')[0] as address_name,
t.block_timestamp,
t.tx_hash,
t.origin_to_address as wallet,
Run a query to Download Data