datavortexTotals
Updated 2025-02-11
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
›
⌄
⌄
⌄
⌄
⌄
/*
SELECT DISTINCT symbol, name, price, decimals from ronin.price.ez_prices_hourly
where name ilike '%Koku The Shikoku%'
*/
/*
SELECT tx_hash, decoded_log: from ronin.core.ez_decoded_event_logs
where event_name = 'Swap'
limit 50
*/
--_amount0In":
--"_amount1In": 0,
/*
SELECT
tx_hash,
COALESCE(NULLIF(decoded_log:_amount0In, 0), decoded_log:_amount1In)/1e18 AS input_amount
FROM ronin.core.ez_decoded_event_logs
WHERE event_name = 'Swap'
LIMIT 50;
*/
/*
SELECT tx_hash,
contract_name,
SPLIT_PART(contract_name, ' - ', 1) AS clean_name,
SPLIT_PART(contract_name, ' - ', 2) AS clean_name2,
decoded_log,
decoded_log:_amount0In::int,
decoded_log:_amount1In::int
FROM ronin.core.ez_decoded_event_logs
where event_name = 'Swap'
LIMIT 200
*/
/*