post https://api.infstones.com/okc/mainnet/
Returns an array of all logs matching a given filter object.
Parameters
OBJECT
- The filter options:
Object Name | Required | Type | Detail |
---|---|---|---|
fromBlock | ❌ | String | A hex code of an integer that represents the block number, or "latest" that represents the last mined block. |
toBlock | ❌ | String | A hex code of an integer that represents the integer block number, or "latest" that represents the last mined block. |
address | ❌ | String/Array | Contract address or a list of addresses from which logs should originate. |
topics | ❌ | Array | Array of 32 Bytes DATA topics. Topics are order-dependent. Each topic can also be an array of DATA with "or" options. |
blockHash | ❌ | String | Restricts the logs returned to the single block with the blockHash . If blockHash is present in the filter criteria, then neither fromBlock nor toBlock are allowed. |
"params": [
{
"address": "0x7505cf18c24b4de5173f42bfca8e7f5ca0c105a8"
}
]
Result
It is an array of log objects, or an empty array if nothing has changed since last poll.
- For filters created with
eth_newBlockFilter
the return are block hashes (DATA
, 32 Bytes), e.g.["0x123456789..."]
. - For filters created with
eth_newFilter
logs are objects with the following fields.
Result Fields
Key | Type | Detail |
---|---|---|
address | String | Address from which this log originated. |
blockHash | String | Hash of the block where this log was in. null if either the returned block is pending or the log is pending. |
blockNumber | String | A hex code of an integer that represents the block number where this log was in. null if either the returned block is pending or the log is pending. |
data | String | Contains one or more 32 Bytes non-indexed arguments of the log. |
logIndex | String | A hex code of an integer that represents the log index position in the block. null if the log is pending. |
removed | Boolean | true if the log was removed, due to a chain reorganization. false if the log is valid. |
topics | Array | Array of 0 to 4 32 Bytes DATA of indexed log arguments. |
transactionHash | String | Hash of the transactions this log was created from. null if the log is pending. |
transactionIndex | String | A hex code of an integer that represents the transactions index position log was created from. null if the log is pending. |
Example
Request
curl <your-endpoint> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_getLogs","params":[{"address": "0xb59f67a8bff5d8cd03f6ac17265c550ed8f33907"}],"id":0}'
Return
{
"jsonrpc": "2.0",
"id": 0,
"result": []
}