normie-Yld1plarbitrum maker
Updated 2024-09-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
select
'arbitrum' as chain,
'maker' as mode,
block_number,
block_timestamp,
tx_hash,
decoded_log
from
arbitrum.core.ez_decoded_event_logs
where tx_status = 'SUCCESS'
-- and type = 'CALL'
and event_name = 'CreatedOrder'
and contract_address = '0xef4fb24ad0916217251f553c0596f8edc630eb66'
-- and block_timestamp >= '2024-06-26'
-- --and block_timestamp < '2024-05-01'
and tx_hash = '0xae7da87825d9c2d91effa15442af20664aaa7c06f0f57a3017062442e1207ee3'
order by block_timestamp
limit 99000