Skip to content

Commit

Permalink
docs: upgradability meta
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Jun 12, 2024
1 parent 9d02dfa commit c843758
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/zoe/src/contractFacet/types-ambient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,11 @@ type ContractMeta<
Pattern
>;
privateArgsShape?: { [K in keyof Parameters<SF>[1]]: Pattern };
/**
* - `none` means that the contract is not upgradable.
* - `canUpgrade` means this code can perform an upgrade
* - `canBeUpgraded` means that the contract stores kinds durably such that the next version can upgrade
*/
upgradability?: 'none' | 'canBeUpgraded' | 'canUpgrade' | undefined;
};
/**
Expand Down

0 comments on commit c843758

Please sign in to comment.