select ORIGIN_FROM_ADDRESS as bridger,sum(amount_usd)as bridge_volume
from ethereum.core.ez_token_transfers
where ORIGIN_TO_ADDRESS='0x88ad09518695c6c3712ac10a214be5109a655671'
and BLOCK_TIMESTAMP>='2022-09-08'and BLOCK_TIMESTAMP<='2022-09-18'
and ORIGIN_FUNCTION_SIGNATURE='0xad58bdd1'
and amount_usd is not null
group by 1
order by 2 desc
limit 10