Skip to content

Commit

Permalink
refactor: upgradable to upgradeable
Browse files Browse the repository at this point in the history
  • Loading branch information
yonadaa committed Apr 25, 2024
1 parent 7f38db6 commit befc949
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .changeset/spicy-bags-cough.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"@latticexyz/cli": patch
---

Added a `deploy.upgradeableWorldImplementation` option to the MUD config that deploys the World as an upgradable proxy contract. The proxy behaves like a regular World contract, but the underlying implementation can be upgraded by calling `setImplementation`.
Added a `deploy.upgradeableWorldImplementation` option to the MUD config that deploys the World as an upgradeable proxy contract. The proxy behaves like a regular World contract, but the underlying implementation can be upgraded by calling `setImplementation`.
2 changes: 1 addition & 1 deletion packages/world/ts/config/v2/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export type DeployInput = {
deploysDirectory?: string;
/** JSON file to write to with chain -> latest world deploy address (Default "./worlds.json") */
worldsFile?: string;
/** Deploy the World as an upgradable proxy */
/** Deploy the World as an upgradeable proxy */
upgradeableWorldImplementation?: boolean;
};

Expand Down
2 changes: 1 addition & 1 deletion packages/world/ts/config/v2/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export type Deploy = {
readonly deploysDirectory: string;
/** JSON file to write to with chain -> latest world deploy address (Default "./worlds.json") */
readonly worldsFile: string;
/** Deploy the World as an upgradable proxy */
/** Deploy the World as an upgradeable proxy */
readonly upgradeableWorldImplementation: boolean;
};

Expand Down

0 comments on commit befc949

Please sign in to comment.