The BriTechToken contract implements a standard ERC20 token with proper access control using OpenZeppelin's Ownable pattern
The mint() function allows the contract owner to create unlimited tokens without any supply cap, creating significant centralization and economic risk
contract BriTechToken is ERC20, Ownable {
constructor() ERC20("BriTechLabs", "BTT") Ownable(msg.sender) {}
}
Likelihood:
The owner can execute the mint function multiple times without restrictions
No maximum supply validation prevents repeated minting operations
Impact:
Unlimited token supply inflation leading to complete devaluation of holder assets
Destruction of token economic model and loss of investor confidence
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.