freemartianUser LVN Airdrop
Updated 2024-04-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
WITH airdrop AS (
SELECT
block_timestamp,
tx_id,
msg:sender AS sender,
value:addr AS address,
(value:coins[0]:amount)/pow(10,6) AS amount,
value:coins[0]:denom AS token
FROM osmosis.core.fact_tx_body_msgs, LATERAL FLATTEN (input => msg:msg:transfer:recipients)
WHERE sender = 'osmo1qrwt8r63jks74ykgq7d28fvy6msd2dpgz8zxaj'
AND address = '{{wallet_address}}'
AND block_timestamp::date = '2023-12-20'
ORDER BY amount DESC
)
SELECT
address,
SUM(amount) AS amount
FROM airdrop
GROUP BY 1
Auto-refreshes every 24 hours
QueryRunArchived: QueryRun has been archived