From 8a66bfe7e9102d4a7cdc7084dfda63177191ce5a Mon Sep 17 00:00:00 2001 From: kyle-zhang-alch Date: Wed, 23 Jul 2025 14:19:55 -0700 Subject: [PATCH 1/2] Added notes callouts for latest block and other limitations --- package.json | 2 +- src/openrpc/chains/hyperevm/hyperevm.yaml | 37 ++++++++++++----------- 2 files changed, 20 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 832c948c..456695db 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "docs", "version": "1.0.0", "description": "API Specs and content files for Alchemy's documentation", - "packageManager": "pnpm@10.9.0", + "packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad", "license": "CC-BY-4.0", "engines": { "node": "22.x" diff --git a/src/openrpc/chains/hyperevm/hyperevm.yaml b/src/openrpc/chains/hyperevm/hyperevm.yaml index acefe071..cba55046 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 From 86fec656272cc32def15ddf4c3f69c52311cb93d Mon Sep 17 00:00:00 2001 From: kyle-zhang-alch Date: Wed, 23 Jul 2025 14:28:12 -0700 Subject: [PATCH 2/2] Reverting my pnpm change --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 456695db..832c948c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "docs", "version": "1.0.0", "description": "API Specs and content files for Alchemy's documentation", - "packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad", + "packageManager": "pnpm@10.9.0", "license": "CC-BY-4.0", "engines": { "node": "22.x"