Skip to content

Instantly share code, notes, and snippets.

@mudgen
Created November 5, 2021 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mudgen/7c8bf830b8fa86ea8d87253bb90f0f43 to your computer and use it in GitHub Desktop.
Save mudgen/7c8bf830b8fa86ea8d87253bb90f0f43 to your computer and use it in GitHub Desktop.
//SPDX-License-Identifier: MIT
pragma solidity =0.8.9;
import "./AppStorage.sol"
contract StakingFacet {
AppStorage internal s;
function myFacetFunction() external {
s.lastVar = s.firstVar + s.secondVar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment