From befc94918cc4e6b6a2e6b7b4b407a76524770ccb Mon Sep 17 00:00:00 2001 From: Fraser Scott Date: Thu, 25 Apr 2024 14:11:12 +0100 Subject: [PATCH] refactor: upgradable to upgradeable --- .changeset/spicy-bags-cough.md | 2 +- packages/world/ts/config/v2/input.ts | 2 +- packages/world/ts/config/v2/output.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.changeset/spicy-bags-cough.md b/.changeset/spicy-bags-cough.md index 11692e7348..5c2d4877ca 100644 --- a/.changeset/spicy-bags-cough.md +++ b/.changeset/spicy-bags-cough.md @@ -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`. diff --git a/packages/world/ts/config/v2/input.ts b/packages/world/ts/config/v2/input.ts index adab759f3e..e1ea7961b3 100644 --- a/packages/world/ts/config/v2/input.ts +++ b/packages/world/ts/config/v2/input.ts @@ -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; }; diff --git a/packages/world/ts/config/v2/output.ts b/packages/world/ts/config/v2/output.ts index cd15683dcd..99456b6af2 100644 --- a/packages/world/ts/config/v2/output.ts +++ b/packages/world/ts/config/v2/output.ts @@ -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; };