Solidity

Ethers.js 等效於 web3.eth.getStorageAt?

  • December 14, 2021

我想用 ethers.js 檢查一個私有狀態變數。什麼是等價物web3.eth.getStorageAt

它也是 getStorageAt 你可以在這裡找到文件。它在 ethers.js 中作為提供程序方法公開,因此在以下行中:

await provider.getStorageAt(address, slot);

引用自:https://ethereum.stackexchange.com/questions/115601