freemartian2023-11-15 02:20 PM
Updated 2023-11-15
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
block_timestamp,
from_address,
tx_hash,
(RAW_AMOUNT_PRECISE / pow(10,6)) AS eth_value
from polygon.core.fact_token_transfers
WHERE contract_address <> lower('0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619')
AND RIGHT (RAW_AMOUNT_PRECISE,4) = 9023
AND to_address IN ('0x41d3d33156ae7c62c094aae2995003ae63f587b3','0xd7aa9ba6caac7b0436c91396f22ca5a7f31664fc','0x095D2918B03b2e86D68551DCF11302121fb626c9')
AND block_timestamp::date > '2023-07-01'
LIMIT 10
Run a query to Download Data