OperatorVault.sol is initialized with wrong version which will cause initialization to always fail.
OperatorVault.sol is initialized with version 3 in its reinitializer.
But we can see from etherscan, that the previously deployed version is also 3.
This becomes an issue because the reinitializer(uint8 version) requires that the the newly entered version be less than the previous version which is cached as the _initialized parameter.
Due to the current implementation, initializing the contract will be impossible as it will always fail the _initialized < version requirement with the "Initializable: contract is already initialized" error.
Manual Review
Change the version to one greater than 3
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.