[Filter] eth_getFilterLogs
Returns an array of all logs matching filter with given id, which has been obtained using eth_newFilter. Note that filter ids returned by other filter creation functions, such as eth_newBlockFilter or eth_newPendingTransactionFilter , cannot be used with this function.
The execution of this API can be limited by two node configurations to manage resources of Kaia node safely.
-
The number of maximum returned results in a single query (Default: 10,000).
-
The execution duration limit of a single query (Default: 10 seconds).
JSONRPC: eth_getFilterLogs
Request
- application/json
Body
The filter id
Responses
- 200
Returns an array of all logs matching filter with given id, which has been obtained using eth_newFilter.
- application/json
- Schema
- Example (from schema)
Schema
Array [
- BlockHash
- TransactionHash
- LogObject
]
error
object
result
object[]
Array of log objects, or an empty array if nothing has changed since last poll.
anyOf
For filters created with eth_newBlockFilter, the return are block hashes (32-byte DATA), e.g., ["0x3454645634534..."].
string
For filters created with eth_newPendingTransactionFilter, the return are transaction hashes (32-byte DATA), e.g., ["0x6345343454645..."].
string
For filters created with klay_newFilter logs are objects with following properties
true when the log was removed, due to a chain reorganization. false if its a valid log.
Integer of the log index position in the block. null when it is a pending log.
Integer of the transactions index position log was created from. null when pending.
Hash of the transactions this log was created from. null when pending.
Hash of the block where this log was in. null when pending.
The block number where this log was in. null when pending.
Address from which this log originated.
Contains the non-indexed arguments of the log.
Array of 0 to 4 32-byte DATA of indexed log arguments. (In Solidity The first topic is the hash of the signature of the event (e.g., Deposit(address,bytes32,uint256)), except you declared the event with the anonymous specifier.).
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": [
{
"address": "0x87ac99835e67168d4f9a40580f8f5c33550ba88b",
"topics": [
"0xd596fdad182d29130ce218f4c1590c4b5ede105bee36690727baa6592bd2bfc8"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000007b",
"blockNumber": "0x54",
"transactionHash": "0xcd4703cd62bd930d4652999bce8dcb75b7ade49d922fa42dc11e568c52a5fa6f",
"transactionIndex": "0x0",
"blockHash": "0x9a49f30f1d1876ff3913bd0aa58f328822e7a369cb13e0640b82234f26e781bb",
"logIndex": "0x0",
"removed": false
}
]
}
- curl
- python
- nodejs
- java
- Curl
curl -X 'POST' \
'https://public-en-kairos.node.kaia.io' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"method": "eth_getFilterLogs",
"id": 1,
"jsonrpc": "2.0",
"params": ["0xd32fd16b6906e67f6e2b65dcf48fc272"]
}'
- CURL
curl -L 'https://public-en-kairos.node.kaia.io/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"method": "eth_getFilterLogs",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0xd32fd16b6906e67f6e2b65dcf48fc272"
]
}'