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<