Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(config,store,world): add namespaceLabel to table config #3039

Merged
merged 9 commits into from
Aug 16, 2024
Merged
Prev Previous commit
Next Next commit
fix test
alvrs committed Aug 15, 2024
commit 941cb7a8857c4e656a113776fde4aaab05e1bda5
4 changes: 2 additions & 2 deletions packages/cli/src/deploy/getTables.ts
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@ import {
import { Schema, Table } from "@latticexyz/config";
import storeConfig from "@latticexyz/store/mud.config";

// TODO: add label once we register it onchain
type DeployedTable = Omit<Table, "label">;
// TODO: add label and namespaceLabel once we register it onchain
type DeployedTable = Omit<Table, "label" | "namespaceLabel">;

export async function getTables({
client,