Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
shazarre committed Oct 17, 2024
1 parent cce20aa commit 387eece
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/viem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ export abstract class ViemCommand extends Command {

protected async getPublicClient(): Promise<PublicClient<HttpTransport, typeof celo>> {
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({
Expand Down

0 comments on commit 387eece

Please sign in to comment.