bitereum2023-08-26 12:05 PM
Updated 2023-08-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
block_timestamp as tx_time,
from_address as "from",
to_address as "to",
matic_value as value,
block_hash as tx_hash
from
polygon.core.fact_transactions
where
(from_address = '0x116ab27d13bccae95819b086486b976d3d8d2a3c'
and to_address = '0x3eb4054da1dbe73d3bf13ecc02bf584a7288bcff')
or (from_address = '0x3eb4054da1dbe73d3bf13ecc02bf584a7288bcff'
and to_address = '0x116ab27d13bccae95819b086486b976d3d8d2a3c')
order by block_timestamp
limit 1000
Run a query to Download Data