Platform: Code4rena
Start Date: 21/06/2022
Pot Size: $50,000 USDC
Total HM: 31
Participants: 99
Period: 5 days
Judges: moose-code, JasoonS, denhampreen
Total Solo HM: 17
Id: 139
League: ETH
Rank: 97/99
Findings: 1
Award: $26.57
🌟 Selected for report: 0
🚀 Solo Findings: 0
🌟 Selected for report: BowTiedWardens
Also found by: 0v3rf10w, 0x1f8b, 0x29A, 0xKitsune, 0xNazgul, 0xf15ers, 0xkatana, 0xmint, 8olidity, ACai, Bnke0x0, Chom, ElKu, Fabble, Fitraldys, FudgyDRS, Funen, GalloDaSballo, GimelSec, IllIllI, JC, Kaiziron, Lambda, Limbooo, MiloTruck, Noah3o6, Nyamcil, Picodes, PwnedNoMore, Randyyy, RedOneN, Sm4rty, StErMi, TomJ, Tomio, TrungOre, UnusualTurtle, Waze, _Adam, aga7hokakological, ajtra, antonttc, asutorufos, bardamu, c3phas, defsec, delfin454000, exd0tpy, fatherOfBlocks, hansfriese, ignacio, joestakey, kenta, ladboy233, m_Rassska, mics, minhquanym, oyc_109, pashov, reassor, robee, s3cunda, sach1r0, saian, sashik_eth, scaraven, sikorico, simon135, slywaters
26.5713 USDC - $26.57
keccak256()
, should use immutable
 rather than constant
File: src\contracts\YieldyStorage.sol: 9 uint256 public index; 10: bytes32 public constant ADMIN_ROLE = keccak256("ADMIN"); 11 bytes32 public constant MINTER_BURNER_ROLE = 12: keccak256("MINTER_BURNER_ROLE"); 13: bytes32 public constant REBASE_ROLE = keccak256("REBASE_ROLE"); File: src\libraries\ERC20PermitUpgradeable.sol: 36 bytes32 private constant _PERMIT_TYPEHASH = 37: keccak256( 38 "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
File: src\contracts\Staking.sol: 54 require( 55: _stakingToken != address(0) && 56: _yieldyToken != address(0) && 57: _tokeToken != address(0) && 58: _tokePool != address(0) && 59: _tokeManager != address(0) && 60: _tokeReward != address(0) && 61 _liquidityReserve != address(0),