Skip to content

Commit

Permalink
simplify contract template
Browse files Browse the repository at this point in the history
  • Loading branch information
spengrah committed Nov 19, 2024
1 parent 95e0a10 commit c68ec2a
Showing 1 changed file with 8 additions and 17 deletions.
25 changes: 8 additions & 17 deletions src/Counter.sol → src/Contract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,32 @@ pragma solidity ^0.8.18;

// import { console2 } from "forge-std/Test.sol"; // remove before deploy

contract Counter {
/*//////////////////////////////////////////////////////////////
contract Contract {
/*//////////////////////////////////////////////////////////////
CUSTOM ERRORS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
DATA MODELS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
CONSANTS
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
MUTABLE STATE
//////////////////////////////////////////////////////////////*/
uint256 public number;

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/

/*//////////////////////////////////////////////////////////////
/*//////////////////////////////////////////////////////////////
PUBLIC FUNCTIONS
//////////////////////////////////////////////////////////////*/

function setNumber(uint256 newNumber) public {
number = newNumber;
}

function increment() public {
number++;
}
}

0 comments on commit c68ec2a

Please sign in to comment.