Contract request: Ownable without `renounceOwnership`

My use case is about a contract that has the right to withdraw some earnings that accrue in the contract over time. I obviously don’t want to end up renouncing the ownership by mistake, given that would incur a permanent loss of funds.

Having a flavour of Ownable without renounceOwnership would be pretty cool!

1 Like

I think anyway owner can renounce ownership by transferring ownership to unowned address. Maybe Claimable would better fit your needs?

1 Like

Yup, but a fat-finger error is more likely with a method with no parameters.

Oh this definitely looks better! However, since it's not in the main repo right now, it doesn't help us much. Just like someone said on GitHub, using Claimable now would make us lose the "widely-used and thoroughly-verified by the community" feature.

1 Like

These situations are common enough that I think a Claimable v2 is due. I’m not a fan of how the original one worked, but we can probably come up with a better design. Stay tuned!

3 Likes

I like the idea that any renounce function would require a parameter of the current address with that role to save fat fingers in autogenerated UI.

Though this would require an API change.

1 Like