OneTrueKirk

Ethereum, cryptoeconomics, governance

View My GitHub Profile

Reflex Framework Review

This is a peer review article as part of the first Credit Salon. See all the submitted articles and software projects along with my reviews here. You can comment below with your own thoughts. This article is reviewing the Reflex smart contract framework, submitted by Jack Longarzo.

Comments

There’s heated debate in the industry about upgradeable contracts, and significant developer overhead generally involved in making modifications to live contract systems. At the Ethereum Credit Guild, we have moved towards favoring immutable contracts with backwards compatibility to minimize governance risk. That said, the advantages of an upgradeable system are apparent: the user experience can be improved over time without the need for migrations. The downsides reveal themselves in events like the Compound cETH market freeze. Standardized frameworks for performing (and testing) upgrades seem essential to mitigate these errors.

I’m looking forward to seeing the example implementation that will be shared here. I’d also encourage the reader to take a look at some of the links in the acknowledgements, especially:

The architecture is directly inspired by Euler’s Proxy Protocol and we are thankful for their extensive documentation and novel modularization architecture.

The original idea of what a Solidity framework may look like has been inspired by Olympus DAO’s Default Framework.