SELECT
CONCAT(source_chain, ' -> ', destination_chain) AS "Bridge",
SUM(amount_in_usd) AS "total bridge Volume"
FROM
aptos.defi.ez_bridge_activity
WHERE
DATE_TRUNC('month', block_timestamp) = DATE_TRUNC('month', CURRENT_DATE)
AND destination_chain = 'Aptos'
GROUP BY
source_chain,
destination_chain
ORDER BY
"total bridge Volume" DESC
LIMIT
5;