MoeNFT
Updated 2024-10-07
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
(call:transaction:"from") as receiver
from
axelar.axelscan.fact_gmp
where
call ilike '%0xB5FB4BE02232B1bBA4dC8f81dc24C26980dE9e3C%'
and call:returnValues:destinationChain ilike 'ethereum') ,
base1 as (
select
receiver
from
axelar.defi.ez_bridge_satellite
where
DESTINATION_CHAIN ilike 'ethereum'
union all
select
receiver
from
axelar.defi.ez_bridge_squid
where
DESTINATION_CHAIN ilike 'ethereum'
)
select
-- distinct from_address,
case
when (BUYER_ADDRESS in (
select
receiver
from
base
) or
BUYER_ADDRESS in (
QueryRunArchived: QueryRun has been archived