mirror of
https://github.com/GrassrootsEconomics/cic-dw.git
synced 2024-11-12 19:26:46 +01:00
7 lines
311 B
SQL
7 lines
311 B
SQL
-- 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;
|