select BLOCK_TIMESTAMP::date as date
,count(distinct TX_HASH) as bridges
,count(distinct ORIGIN_FROM_ADDRESS) as bridgers
from polygon.core.ez_decoded_event_logs
where EVENT_NAME='LiFiTransferStarted'
and DECODED_LOG:bridgeData:integrator='jumper.exchange'
and ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and DECODED_LOG:bridgeData:destinationChainId=34443
group by 1