Skip to content

Commit

Permalink
chore: add initial total supply to mocked Morpho token
Browse files Browse the repository at this point in the history
  • Loading branch information
QGarchery committed Dec 6, 2023
1 parent 6ae9d24 commit 6d8cdec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion certora/helpers/MorphoToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ pragma solidity >=0.8.0;
import "@rari-capital/solmate/src/tokens/ERC20.sol";

contract MorphoToken is ERC20 {
constructor() ERC20("Morpho Token", "MORPHO", 18) {}
constructor(address _receiver) ERC20("Morpho Token", "MORPHO", 18) {
_mint(_receiver, 1_000_000_000 ether);
}
}

0 comments on commit 6d8cdec

Please sign in to comment.