Skip to content
Discussion options

You must be logged in to vote

I don't think you can get it from indexer graphql or node rest endpoint. Instead use bigquery (or dune). Example using bigquery

SELECT block_timestamp, tx_version
FROM `bigquery-public-data.crypto_aptos_mainnet_us.transactions`
WHERE block_timestamp > '2025-01-01' AND block_timestamp < '2025-01-07'
QUALIFY ROW_NUMBER() OVER (PARTITION BY DATE(block_timestamp) ORDER BY tx_version DESC) = 1
ORDER BY block_timestamp

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by aarush04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants