freemartianReddit Source
Updated 2022-11-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
tx_hash,
block_timestamp,
contract_address as collection,
event_inputs:_to as minter,
event_inputs:_id as NFTid
from polygon.core.fact_event_logs
where origin_function_signature in ('0x5a86c41a', '0x669f5a51')
and event_inputs:_from = '0x0000000000000000000000000000000000000000'
and event_name = 'TransferSingle'
and tx_status = 'SUCCESS'
Run a query to Download Data