-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
--- | ||
status: draft | ||
flip: 275 | ||
authors: Daniel Sainati ([email protected]) | ||
sponsor: Daniel Sainati ([email protected]) | ||
updated: 2024-06-04 | ||
--- | ||
|
||
# FLIP 275: Removal of Types in Contract Updates | ||
|
||
## Objective | ||
|
||
This adds a new pragma to Cadence that when processed by the contract update validator will | ||
allow a type to be removed from a contract, and also prevent a type with the same name from being | ||
added to that contract later. | ||
|
||
## Motivation | ||
|
||
As originally outlined in https://github.com/onflow/cadence/issues/3210, users have been asking for | ||
the ability to remove types from their contracts as they become outdated or otherwise unnecessary. | ||
The Cadence 1.0 upgrade in particular has exacerbated this need, as the changes to access control have | ||
rendered a number of types obselete. Additionally as all contracts on chain need to be updated for Crescendo, | ||
the ability to remove dependencies on contracts that are difficult or otherwise challenging to update has become more important. | ||
|
||
## User Benefit | ||
|
||
This will allow users to remove deprecated or unnecessary type definitions from their contracts. In particular, | ||
it unblocks the upgrade of the `FiatToken` contract on chain, a contract that numerous others depend upon. | ||
|
||
## Design Proposal | ||
|
||
As implemented in https://github.com/onflow/cadence/pull/3376 and https://github.com/onflow/cadence/pull/3380, this feature introduces a new | ||
`#removedType` pragma to Cadence. This pragma takes a single argument, an identifier signifying the type to be removed. | ||
Importantly, this identifier is not qualified, i.e. to remove a type `R` from a contract `C`, `#removedType(R)` would be used, rather than | ||
`#removedType(C.R)`. This is because the pragma is added at the same scope at which the type to be removed was originally defined. | ||
So, for example, to remove a resource `R` from `C` defined like so: | ||
|
||
```cadence | ||
access(all) contract C { | ||
access(all) resource R { | ||
// ... resource body | ||
} | ||
// ... contract body | ||
} | ||
``` | ||
|
||
the pragma would be placed here: | ||
|
||
```cadence | ||
access(all) contract C { | ||
#removedType(R) | ||
// ... contract body | ||
} | ||
``` | ||
|
||
Placing the pragma at the top level, or nested inside another definition in `C` has no effect, and does not permit the removal of `R`. | ||
|
||
When used correctly, the pragma is processed by the contract update validator and allows an update to `C` to be performed that does not include | ||
a definition of the resource type `R`, even though the old version of `C` did include `R`. In fact, when the `#removedType(T)` pragma is present, | ||
the contract update validator will reject any update to the contract that includes a definition of `T` at the same scope level as the pragma. This is | ||
to prevent the type from being added back later with incompatible changes that would otherwise circumvent the contract update validation restrictions. | ||
|
||
Additionally, once present in a contract, the `#removedType` pragma may never be removed, as this would allow the type it removed to be re-added, | ||
once again potentially circumventing the update validation. | ||
|
||
Lastly, the `#removedType` pragma may only be used with concrete types (`struct`s, `resource`s, `enum`s, and `attachment`s), not with interfaces. | ||
This is due to the fact that a removed interface cannot be removed from any existing conformance lists in which it is present, and thus removing an | ||
interface would irrevocably break any downstream types that inherited from it. | ||
|
||
### Drawbacks | ||
|
||
This does increase the ease with which users can break downstream code; removing a type definition will break | ||
all code that uses that type until uses of the type are removed. In some cases this is more feasible than in others; | ||
if a resource definition `R` is removed, removing a field of type `R` from a downstream contract is much easier than, say, | ||
fixing an attachment `A` that is designed to be used with `R`. In the latter case, the attachment `A` is likely unusable and will also have to be removed. | ||
|
||
Additionally, any existing stored values of the removed type will be broken and un-interactable forever. | ||
Because we do not currently possess a way to remove broken values from storage, the inability to load these values also means they will | ||
sit in storage forever. This change significantly increases the priority of implementing a solution for deleting broken values in storage. | ||
|
||
### Alternatives Considered | ||
|
||
As outlined in https://github.com/onflow/cadence/issues/3210, an alternative pragma specificing a type replacement, | ||
rather than a removal was considered. We elected to do the first, easier solution due to time constraints, but are open | ||
to considering the second given sufficiently good reason. | ||
|
||
## Questions and Discussion | ||
|
||
* Is it worth enabling the removal of interface types as well as regular composites? |