Skip to content

Instantly share code, notes, and snippets.

@veridelisi
Created February 27, 2023 14:20
Show Gist options
  • Save veridelisi/4bee79a6bdca9d802229a6f9e38bf3ae to your computer and use it in GitHub Desktop.
Save veridelisi/4bee79a6bdca9d802229a6f9e38bf3ae to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
contract StorageContract {
uint256 a = 9; // Slot 0
uint256 b = 8; // Slot 1
uint256 c = 7; // Slot 2
uint256 d = 6; // Slot 3
function readStorageSlot0(uint yournumber) public view returns (bytes32 result) {
assembly {
result := sload(yournumber)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment