sarathmisouser5
Updated 2022-09-20
999
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
›
⌄
with eth as (
select
distinct contract_address
from ethereum.core.fact_event_logs
where origin_function_signature = '0xfa18022c' -- prepareMiso
and event_name = 'AuctionWalletUpdated'
order by contract_address),
eth_tx as (
select *
from ethereum.core.fact_event_logs
where
( (origin_function_signature = '0xdc97e082' and event_name = 'Transfer') or
(origin_function_signature = '0x29762960' and event_name = 'AddedCommitment' ))
and origin_to_address in (select contract_address from eth)),
bsc as (
select
distinct contract_address
from bsc.core.fact_event_logs
where origin_function_signature = '0xfa18022c' -- prepareMiso
and event_name = 'AuctionWalletUpdated'
order by contract_address),
bsc_tx as (
select *
from bsc.core.fact_event_logs
where ((origin_function_signature = '0xdc97e082' and event_name = 'Transfer') or
(origin_function_signature = '0x29762960' and event_name = 'AddedCommitment'))
and origin_to_address in (select contract_address from bsc)),
poly as (
select
distinct contract_address
from polygon.core.fact_event_logs
where origin_function_signature = '0xfa18022c' -- prepareMiso
and event_name = 'AuctionWalletUpdated'
Run a query to Download Data