Aephiacargo transactions
Updated 2024-03-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
-- forked from profile transactions @ https://flipsidecrypto.xyz/edit/queries/0c454d3e-24f1-4db3-85fe-cd750dd9b4ee
select
*
--date_trunc('day', block_timestamp::date) as date,
--max(block_timestamp) as last_updated,
--count(distinct signers[0]) as profiles_created
FROM solana.core.fact_transactions, lateral flatten(input => instructions)
WHERE value:programId IN ('SAGEqqFewepDHH6hMDcmWy7yjHPpyKLDnRXKb3Ki8e6')--, 'Cargo8a1e6NkGyrjy4BQEW4ASGKs9KSyDyUrXMfpJoiH')
AND succeeded = 'true'
AND log_messages::string LIKE '%WithdrawCargoFromFleet%'
--AND log_messages::string NOT LIKE '%Idl%'
and block_timestamp > '2023-09-21' --AND block_timestamp < current_date --'2023-06-16'
limit 100
--group by 1
--order by 1 desc
QueryRunArchived: QueryRun has been archived