freemartianBolide Deposits & Withdraws Binance BTC
    -- deposit btc

    select
    tx_hash,
    decoded_log:from as Depositor,
    decoded_log:value/pow(10,decimals) as deposit_amount,
    symbol as token_symbol
    from bsc.core.ez_decoded_event_logs l
    inner join bsc.core.dim_contracts c on c.address = l.contract_address
    where event_name = 'Transfer'
    and contract_address = '0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c'
    and origin_function_signature = '0x6e553f65'
    and decoded_log:to = '0xed18f1ce58fed758c7937cc0b8be66cb02dc45c6'


    -- withdraw btc

    select
    tx_hash,
    decoded_log:to as Withdrawer,
    decoded_log:value/pow(10,decimals) as withdraw_amount,
    symbol as token_symbol
    from bsc.core.ez_decoded_event_logs l
    inner join bsc.core.dim_contracts c on c.address = l.contract_address
    where event_name = 'Transfer'
    and contract_address = '0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c'
    and origin_function_signature = '0x00f714ce'
    and decoded_log:from = '0xed18f1ce58fed758c7937cc0b8be66cb02dc45c6'
    limit 1



    -- deposit BLID into btc vault for boost

    select
    tx_hash,
    Run a query to Download Data