banbannardMiso User Base
Updated 2022-09-16Copy Reference Fork
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
›
⌄
with base as (select distinct(from_address),
'1. Ethereum' as chain,
1 as numbering
from ethereum.core.fact_transactions
where origin_function_signature = '0x29762960'
and status = 'SUCCESS'
union
select distinct(from_address),
'3. Polygon',
1 as numbering
from polygon.core.fact_transactions
where origin_function_signature = '0x29762960'
and status = 'SUCCESS'
union
select distinct(from_address),
'5. Arbitrum',
1 as numbering
from arbitrum.core.fact_transactions
where origin_function_signature = '0x29762960'
and status = 'SUCCESS'
union
select distinct(from_address),
'4. Avalanche',
1 as numbering
from avalanche.core.fact_transactions
where origin_function_signature = '0x29762960'
and status = 'SUCCESS'
union
Run a query to Download Data