Skip to content

Instantly share code, notes, and snippets.

@PowerStream3604
Created October 6, 2022 08:16
Show Gist options
  • Save PowerStream3604/6a47844fcb012c232c201fb157f9cbc7 to your computer and use it in GitHub Desktop.
Save PowerStream3604/6a47844fcb012c232c201fb157f9cbc7 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts
*/
contract Storage {
uint256 public number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment