eth_getFilterLogs - Gnosis

Example code for the eth_getFilterLogs json-rpc method. Сomplete guide on how to use eth_getFilterLogs json-rpc in GetBlock.io Web3 documentation.

Parameters

data - None

Filter ID.

Request

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "eth_getFilterLogs",
"params": ["0x5ace5de3985749b6a1b2b0d3f3e1fb69"],
"id": "getblock.io"}'

Response

{
    "error": {
        "code": -32603,
        "message": "Filter with id: '120702037069533879537037142191838985065' does not exist."
    },
    "id": "getblock.io",
    "jsonrpc": "2.0"
}

Last updated