ETH RPC
Overview
This API is provided to support the most popular RPC methods in the exact format specified for Ethereum nodes. This is useful to allow sending requests to the Palm Network Block Explorer without having to change anything about the request.
Using the custom RPC is recommended for retrieving data from a node.
Supported Methods
-
-
-
eth_blockNumber
Mimics Ethereum JSON RPC's eth_blockNumber. Returns the latest block number.
eth_getBalance
Get balance for an account on the latest block.
eth_getLogs
Get event logs for the address and/or topics.
This will never return more than 1000 log entries.
For this reason, you can use pagination options to request the next page. Pagination options params: {"logIndex": "3D", "blockNumber": "6423AC", "transactionIndex": 53} which include parameters from the last log received from the previous request.
These three parameters are required for pagination.
