The SmartWalletChecker is an external contract that checks if certain smart contracts are approved to lock CRV tokens into the VotingEscrow. Permission can be granted via the approveWallet and revoked via revokeWallet methods.
This contract can be replaced in its entirety with a new SmartWalletChecker through the VotingEscrow's commit_smart_wallet_checker function.
Once this happens, the previously approved smart contracts will not be able to create a new lock, extend the lock duration, or add more CRV to the already existing lock if the new SmartWalletChecker does not approve them again. This is because all those methods (create_lock, increase_unlock_time, and increase_amount) check if the caller is approved via the internal assert_not_contract function.
VotingEscrow: Internal assert_not_contract function
@internaldefassert_not_contract(addr:address):""" @notice Check if the call is from a whitelisted smart contract, revert if not @param addr Address to be checked """ifaddr!=tx.origin:checker:address=self.smart_wallet_checkerifchecker!=ZERO_ADDRESS:ifSmartWalletChecker(checker).check(addr):returnraise"Smart contract depositors not allowed"