Hossein2023-07-10 05:01 PM
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 t as (
select
tx_hash,
block_timestamp,
'Mint' as type,
'sAVAX' as platform,
to_address as user,
amount
from avalanche.core.ez_token_transfers
where to_address <> '0x0000000000000000000000000000000000000000'
and from_address = origin_to_address
and contract_address = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be'
and amount > 0
union all
select
tx_hash,
block_timestamp,
'Mint' as type,
'sAVAX' as platform,
to_address as user,
amount
from avalanche.core.ez_token_transfers
where from_address = '0x0000000000000000000000000000000000000000'
and contract_address = origin_to_address
and origin_to_address = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be'
and to_address <> '0x0000000000000000000000000000000000000000'
and amount > 0
union all
select
tx_hash,
Run a query to Download Data