diff --git a/src/openrpc/chains/hyperevm/hyperevm.yaml b/src/openrpc/chains/hyperevm/hyperevm.yaml
index 17c36443..85a79d56 100644
--- a/src/openrpc/chains/hyperevm/hyperevm.yaml
+++ b/src/openrpc/chains/hyperevm/hyperevm.yaml
@@ -358,7 +358,9 @@ methods:
# Execute methods
# --------------------------------------------------------------------------
- name: eth_call
- description: Executes a new message call immediately without creating a transaction on the blockchain.
+ description: |
+ Currently only works on the latest block.
+ Executes a new message call immediately without creating a transaction on the blockchain.
params:
- name: Transaction
required: true
@@ -389,7 +391,9 @@ methods:
value: "0x"
- name: eth_estimateGas
- description: Generates and returns an estimate of how much gas is necessary to allow the transaction to complete.
+ description: |
+ Currently only works on the latest block.
+ Generates and returns an estimate of how much gas is necessary to allow the transaction to complete.
params:
- name: Transaction
required: true
@@ -569,19 +573,8 @@ methods:
# --------------------------------------------------------------------------
- name: eth_getLogs
description: |
+ Currently only supports up to 4 topics and a range up to 50 blocks.
Returns an array of all logs matching the specified filter.
- ### Supported Block Ranges
- Here are the block ranges you're able to submit in a single query, depending on your plan tier:
-
- > ⚠️ Note: All responses will be capped at 150MB.
-
- | Chain | Free | Pay As You Go | Enterprise |
- |-------|------|---------------|------------|
- | Ethereum and Layer 2s (Ethereum, Base, Optimism, Arbitrum, Worldchain) | unlimited | unlimited | unlimited |
- | Polygon | 500 | 2000 | unlimited |
- | Monad | 500 | 1000 | unlimited |
- | BSC | 500 | 10000 | 10000 |
- | All Other Chains | 500 | 10000 | unlimited |
params:
- name: Filter
required: true
@@ -620,7 +613,9 @@ methods:
# State methods
# --------------------------------------------------------------------------
- name: eth_getBalance
- description: Returns the balance of the account of a given address.
+ description: |
+ Currently only works on the latest block.
+ Returns the balance of the account of a given address.
params:
- name: Address
required: true
@@ -649,7 +644,9 @@ methods:
value: "0x1cfe56f3795885980000"
- name: eth_getStorageAt
- description: Returns the value from a storage position at a given address.
+ description: |
+ Currently only works on the latest block.
+ Returns the value from a storage position at a given address.
params:
- name: Address
required: true
@@ -685,7 +682,9 @@ methods:
value: "0x0000000000000000000000000000000000000000000000000000000000000000"
- name: eth_getTransactionCount
- description: Returns the number of transactions sent from an address.
+ description: |
+ Currently only works on the latest block.
+ Returns the number of transactions sent from an address.
params:
- name: Address
required: true
@@ -714,7 +713,9 @@ methods:
value: "0x1"
- name: eth_getCode
- description: Returns the code at a given address.
+ description: |
+ Currently only works on the latest block.
+ Returns the code at a given address.
params:
- name: Address
required: true