Anomit Ghosh
Results
1
issues of
Anomit Ghosh
Code in question: ```py from eip712_structs import EIP712Struct, Address, String, Uint class Identity(EIP712Struct): userId = Uint(256) wallet = Address() class Message(EIP712Struct): actionType = String() timestamp = Uint(256) authorizer = Identity...