add note about pagination params

pull/2366/head
Ayrat Badykov 5 years ago
parent 8e23dc5534
commit 2d2bdfc4ed
No known key found for this signature in database
GPG Key ID: B44668E265E9396F
  1. 3
      apps/explorer/lib/explorer/eth_rpc.ex

@ -22,7 +22,8 @@ defmodule Explorer.EthRPC do
"eth_getLogs" => %{ "eth_getLogs" => %{
action: :eth_get_logs, action: :eth_get_logs,
notes: """ notes: """
Will never return more than 1000 log entries. Will never return more than 1000 log entries.\n
For this reason, you can use pagination options to request the next page. Pagination options params: {"block_number": 1, "transaction_index": 0, "log_index": 1} which include parameters from the last log received from the previous request.
""", """,
example: """ example: """
{"id": 0, "jsonrpc": "2.0", "method": "eth_getLogs", "params": [{"address": "0x0000000000000000000000000000000000000026","topics": ["0x01"]}]} {"id": 0, "jsonrpc": "2.0", "method": "eth_getLogs", "params": [{"address": "0x0000000000000000000000000000000000000026","topics": ["0x01"]}]}

Loading…
Cancel
Save