FixedPriceFactory.sol#L9
LPDAFactory.sol#L9
OpenEditionFactory.sol#L9
Typically, the contracts owner is the account that deploys the contract. As a result, the owner is able to perform certain privileged activities.
The OpenzeppelinsOwnableused inthis projectcontract implementsrenounceOwnership. This can represent a certain risk if the ownership is renounced for any other reason than by design. Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.
onlyOwner function:
We recommend to either reimplement the function to disable it or to clearly specify if it is part of the contract design.
