Pure vs view functions in upgradeable contracts

Hey, question about upgradeable contracts, say I have a v1 implementation contract that has function x which is a pure function. Would it be possible to upgrade this contract and change the function to a view function? thanks!

Yes that is possible and shouldn't cause any issues.

thank you! always good to double check.

1 Like