From 387eece4c12679a171928010bfddbcff073c07d5 Mon Sep 17 00:00:00 2001 From: Leszek Stachowski Date: Thu, 17 Oct 2024 17:03:12 +0200 Subject: [PATCH] fix build --- packages/cli/src/viem.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/viem.ts b/packages/cli/src/viem.ts index 31c3ed985..2e83ced64 100644 --- a/packages/cli/src/viem.ts +++ b/packages/cli/src/viem.ts @@ -7,7 +7,8 @@ export abstract class ViemCommand extends Command { protected async getPublicClient(): Promise> { if (!this.publicClient) { - const nodeUrl = await this.getNodeUrl() + // TEMP + const nodeUrl = 'http://127.0.0.1:8545' const transport = http(nodeUrl) // Create an intermediate client to get the chain id const intermediateClient = createPublicClient({