shoa1bMakerDao
Updated 2022-08-23Copy Reference Fork
99
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
›
⌄
WITH smpl_maker_deposit AS (
SELECT
block_timestamp,
tx_hash,
depositor,
vault,
token_deposited,
symbol,
amount_deposited
FROM
ethereum.maker.ez_deposits
WHERE
1 = 1
AND symbol = 'WETH'
LIMIT 100
),
deposit_with_amount AS (
SELECT
d.block_timestamp,
d.tx_hash,
d.depositor,
d.vault,
d.token_deposited,
d.symbol,
t.amount,
t.amount_usd,
t.origin_function_signature,
t.from_address,
t.to_address
FROM
smpl_maker_deposit AS d
LEFT JOIN (
SELECT
*
FROM
Run a query to Download Data