Skip to content

Added notes callouts for latest block and other limitations #412

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 19 additions & 18 deletions src/openrpc/chains/hyperevm/hyperevm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
<Note>Currently only works on the latest block.</Note>
Executes a new message call immediately without creating a transaction on the blockchain.
params:
- name: Transaction
required: true
Expand Down Expand Up @@ -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: |
<Note>Currently only works on the latest block.</Note>
Generates and returns an estimate of how much gas is necessary to allow the transaction to complete.
params:
- name: Transaction
required: true
Expand Down Expand Up @@ -569,19 +573,8 @@ methods:
# --------------------------------------------------------------------------
- name: eth_getLogs
description: |
<Note>Currently only supports up to 4 topics and a range up to 50 blocks.</Note>
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
Expand Down Expand Up @@ -620,7 +613,9 @@ methods:
# State methods
# --------------------------------------------------------------------------
- name: eth_getBalance
description: Returns the balance of the account of a given address.
description: |
<Note>Currently only works on the latest block.</Note>
Returns the balance of the account of a given address.
params:
- name: Address
required: true
Expand Down Expand Up @@ -649,7 +644,9 @@ methods:
value: "0x1cfe56f3795885980000"

- name: eth_getStorageAt
description: Returns the value from a storage position at a given address.
description: |
<Note>Currently only works on the latest block.</Note>
Returns the value from a storage position at a given address.
params:
- name: Address
required: true
Expand Down Expand Up @@ -685,7 +682,9 @@ methods:
value: "0x0000000000000000000000000000000000000000000000000000000000000000"

- name: eth_getTransactionCount
description: Returns the number of transactions sent from an address.
description: |
<Note>Currently only works on the latest block.</Note>
Returns the number of transactions sent from an address.
params:
- name: Address
required: true
Expand Down Expand Up @@ -714,7 +713,9 @@ methods:
value: "0x1"

- name: eth_getCode
description: Returns the code at a given address.
description: |
<Note>Currently only works on the latest block.</Note>
Returns the code at a given address.
params:
- name: Address
required: true
Expand Down