Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mmv08/calculate-storage-hash
https://github.com/mmv08/calculate-storage-hash
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mmv08/calculate-storage-hash
- Owner: mmv08
- Created: 2023-11-09T21:53:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T21:54:07.000Z (about 1 year ago)
- Last Synced: 2024-10-08T02:41:49.851Z (about 1 month ago)
- Language: TypeScript
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Calculate Storage Hash
Just a fun project that calculates a storage hash of a contract:
```solidity
pragma solidity ^0.8.0;contract Cat {
address public a;constructor() {
a = address(0x73);
}
}
```deployed at https://gnosisscan.io/address/0xb911943750b74707a97a33538d73592abe926ffb
It calculates the storage hash locally and compares it with the one obtained with `eth_getProof`