Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save brynbellomy/7d63f89d05a2f7923565af429b50fdb2 to your computer and use it in GitHub Desktop.

Select an option

Save brynbellomy/7d63f89d05a2f7923565af429b50fdb2 to your computer and use it in GitHub Desktop.
medium-auction-contract-storage-vars.sol
// static
address public owner;
uint public startBlock;
uint public endBlock;
string public ipfsHash;
uint public bidIncrement;
// state
bool public canceled;
address public highestBidder;
mapping(address => uint256) public fundsByBidder;
uint public highestBindingBid;
bool ownerHasWithdrawn;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment