-
Notifications
You must be signed in to change notification settings - Fork 14
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
Non-standard empty response for eth_getStorageAt? #595
Comments
From discord: ethers v5 provider.getStorageAt throws
<script type="module">
import { ethers } from "https://cdnjs.cloudflare.com/ajax/libs/ethers/5.7.2/ethers.esm.js";
const provider = new ethers.providers.Web3Provider(window.ethereum)
console.log(await provider.getStorageAt(
"0x52Dcf311dc34Ac9373a4A4cfF37A3292487F273D",
"0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
"latest",
))
</script> |
Ethers v6 throws
<script type="module">
import { ethers } from "https://cdnjs.cloudflare.com/ajax/libs/ethers/6.13.2/ethers.js";
const provider6 = new ethers.BrowserProvider(window.ethereum)
console.log(await provider6.getStorage(
"0x52Dcf311dc34Ac9373a4A4cfF37A3292487F273D",
"0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
"latest",
))
</script> |
Related ethers-io/ethers.js#1132 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Copied from slack before it's lost
Luka:
Peter:
Luka:
The text was updated successfully, but these errors were encountered: