cic-dw/queries/public.sql

7 lines
311 B
MySQL
Raw Normal View History

2022-05-14 10:15:45 +02:00
-- name: all-known-tokens
-- Looks up all known tokens from the transactions records
SELECT DISTINCT tokens.token_symbol, tokens.token_address FROM transactions
INNER JOIN tokens on transactions.token_address = tokens.token_address
WHERE transactions.sender_address = $1
OR transactions.recipient_address = $1;