Hidden Mint Function Detect

Hello everyone, I want to detect hidden mint functions in smart contracts in a system infrastructure I have developed. how can I do that? For instance

_balances[dead] += traBUSDREFLECT2766d;
amount -= traBUSDREFLECT2766d;
emit Transfer(sender, dead, traBUSDREFLECT2766d);

This is a mint function and is made with an unknown code structure, I need to detect all functions that may occur like this.

thanks and regards

1 Like

Are you analyzing bytecode or source code?

you may have to read the code line by line.
a secret mint will not include emit event though.