Skip to content

Commit

Permalink
fix(cli): remove hardcoded chain ID
Browse files Browse the repository at this point in the history
  • Loading branch information
dtbuchholz committed Jul 10, 2024
1 parent 328cd1b commit 23d35ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/import-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const handler = async (
signer,
aliases,
});
const baseUrl = SdkHelpers.getBaseUrl(31337);
const baseUrl = SdkHelpers.getBaseUrl(chainId);
const val = new Validator({ baseUrl });
// get the table schema to help map values to their type
const { schema } = await val.getTableById({
Expand Down

0 comments on commit 23d35ca

Please sign in to comment.