Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
add mypools route
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 committed Jun 28, 2024
1 parent f91f324 commit c35065b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions sql_extensions/migrations/00005_my_pools.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
CREATE INDEX inbox_events_mypools ON inbox_events (
(data ->> 'provider')
) WHERE event_name = 'emojicoin_dot_fun::Liquidity' AND (data ->> 'liquidity_provided')::BOOLEAN = true;

CREATE FUNCTION mypools (address text) RETURNS TABLE (LIKE market_data) AS
$$
WITH mypools AS (
SELECT DISTINCT (data ->> 'market_id')::NUMERIC AS market_id
FROM inbox_events
WHERE event_name = 'emojicoin_dot_fun::Liquidity'
AND (data ->> 'liquidity_provided')::BOOLEAN = true
AND (data ->> 'provider') = $1
)
SELECT m.* FROM market_data m INNER JOIN mypools p ON m.market_id = p.market_id;
$$ LANGUAGE SQL;

0 comments on commit c35065b

Please sign in to comment.