freemartianBolide BNB v2


    -- Deposit BNB

    select
    tx_hash,
    decoded_log:depositor as Depositor,
    decoded_log:amount/pow(10,18) as deposit_amount
    -- symbol as token_symbol
    from bsc.core.ez_decoded_event_logs
    where event_name = 'Deposit'
    and contract_address = '0xac4a30d5343fd28afea2ea70b1dea93f35183b18'
    and origin_function_signature = '0x6e553f65'
    and decoded_log:token = '0x0000000000000000000000000000000000000000'


    -- Withdraw BNB

    select
    tx_hash,
    decoded_log:depositor as Withdrawer,
    decoded_log:amount/pow(10,18) as withdraw_amount
    -- symbol as token_symbol
    from bsc.core.ez_decoded_event_logs
    where event_name = 'Withdraw'
    and contract_address = '0xac4a30d5343fd28afea2ea70b1dea93f35183b18'
    and origin_function_signature = '0x00f714ce'
    and decoded_log:token = '0x0000000000000000000000000000000000000000'
    limit 10
    -- deposit BLID into ETH vault for boost

    select
    tx_hash,
    decoded_log:from as depositor,
    decoded_log:value/pow(10,18) as deposit_amount,
    Run a query to Download Data