store
Signature
Section titled “Signature”function store(address account, bytes32 slot, bytes32 value) external;Description
Section titled “Description”Stores the value value in storage slot slot on account account.
Examples
Section titled “Examples”/// contract LeetContract {/// uint256 private leet = 1337; // slot 0/// }
vm.store(address(leetContract), bytes32(uint256(0)), bytes32(uint256(31337)));bytes32 leet = vm.load(address(leetContract), bytes32(uint256(0)));emit log_uint(uint256(leet)); // 31337SEE ALSO
Section titled “SEE ALSO”Forge Standard Library