File tree Expand file tree Collapse file tree 1 file changed +21
-19
lines changed
dune/abstractions/balancer Expand file tree Collapse file tree 1 file changed +21
-19
lines changed Original file line number Diff line number Diff line change 11CREATE OR REPLACE VIEW balancer .view_swaps AS
22SELECT
3- block_time,
4- token_a_symbol,
5- token_b_symbol,
6- token_a_amount,
7- token_b_amount,
8- trader_a,
9- trader_b,
10- token_a_amount_raw,
11- token_b_amount_raw,
12- usd_amount,
13- token_a_address,
14- token_b_address,
15- exchange_contract_address AS contract_address,
16- tx_hash,
17- tx_from,
18- trace_address,
19- evt_index
20- FROM dex .trades
21- WHERE project = ' Balancer'
3+ block_time,
4+ token_a_symbol,
5+ token_b_symbol,
6+ token_a_amount,
7+ token_b_amount,
8+ trader_a,
9+ trader_b,
10+ token_a_amount_raw,
11+ token_b_amount_raw,
12+ usd_amount,
13+ token_a_address,
14+ token_b_address,
15+ exchange_contract_address AS contract_address,
16+ tx_hash,
17+ tx_from,
18+ trace_address,
19+ evt_index
20+ FROM
21+ dex .trades
22+ WHERE
23+ project = ' Balancer' ;
You can’t perform that action at this time.
0 commit comments