DiscordTelegramTwitter
Search
⌃K
Links
Blast Documentation
📚
Introduction
📖
APIs Documentation
Trace API
Debug API
Erigon API
erigon_getHeaderByNumber
erigon_getHeaderByHash
erigon_getLogsByHash
erigon_forks
erigon_getBlockByTimestamp
erigon_blockNumber
erigon_getLatestLogs
erigon_getBlockReceiptsByBlockHash
eth_getBlockReceipts
💡
Things you need to know
📜
Tutorials and guides
🧰
Blast SDK
🔬
Blast protocol
Running a node
🏠
Introduction: How to Run Specific Blockchain Nodes | Blast API
⛓
Supported Chains
⚙
IP Whitelist - Firewall Rules
🕦
Technical support
💬
Contact
Indexing
💾
Indexing the Klaytn Network
⚙
Indexer node set up
💻
Subgraph Development
Houston Testnet
💰
Blast delegation program
Bware Labs Snapshot Service
⛓
Supported Chains
Powered By GitBook

erigon_getLatestLogs

Example

Request
curl --location 'https://eth-mainnet.blastapi.io/<project_id>' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "erigon_getLatestLogs",
"params": [
{
"address": "0xfe6e72b223f6d6cf4edc6bff92f30e84b8258249"
},
{
"logCount": 1000
}
],
"id": 1
}'
Response:
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
Previous
erigon_blockNumber
Next
erigon_getBlockReceiptsByBlockHash
Last modified 2mo ago