From 6bd4fad630bb978d45afdfa07b1032b76925a11b Mon Sep 17 00:00:00 2001 From: yonada Date: Mon, 22 Apr 2024 15:58:26 +0100 Subject: [PATCH] fix(world): useProxy in DeployInput (#2705) --- packages/world/ts/config/v2/input.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/world/ts/config/v2/input.ts b/packages/world/ts/config/v2/input.ts index 3f6bf09baa..40f5d69e54 100644 --- a/packages/world/ts/config/v2/input.ts +++ b/packages/world/ts/config/v2/input.ts @@ -31,6 +31,8 @@ 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 */ + useProxy?: boolean; }; export type CodegenInput = { @@ -40,8 +42,6 @@ export type CodegenInput = { worldgenDirectory?: string; /** Path for world package imports. Default is "@latticexyz/world/src/" */ worldImportPath?: string; - /** Deploy the World as an upgradable proxy */ - useProxy?: boolean; }; export type WorldInput = evaluate<