freemartianBolide Deposits & Withdraws Binance BTC
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- 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