Skip to content

Commit

Permalink
http not https
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Cory authored and Will Cory committed Mar 29, 2024
1 parent 59e5144 commit 40f205f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/sdk/test-next/testUtils/ethersProviders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { z } from 'zod'
const E2E_RPC_URL_L1 = z
.string()
.url()
.default('https://localhost:8545')
.default('http://localhost:8545')
.describe('L1 ethereum rpc Url')
.parse(import.meta.env.VITE_E2E_RPC_URL_L1)
/**
Expand All @@ -16,7 +16,7 @@ const E2E_RPC_URL_L1 = z
const E2E_RPC_URL_L2 = z
.string()
.url()
.default('https://localhost:9545')
.default('http://localhost:9545')
.describe('L2 ethereum rpc Url')
.parse(import.meta.env.VITE_E2E_RPC_URL_L2)

Expand All @@ -39,13 +39,13 @@ export const l2Provider = new ethers.providers.JsonRpcProvider({
export const E2E_RPC_URL_SEPOLIA = z
.string()
.url()
.default('https://localhost:8545')
.default('http://localhost:8545')
.describe('SEPOLIA ethereum rpc Url')
.parse(import.meta.env.VITE_E2E_RPC_URL_SEPOLIA)
export const E2E_RPC_URL_OP_SEPOLIA = z
.string()
.url()
.default('https://localhost:9545')
.default('http://localhost:9545')
.describe('OP_SEPOLIA ethereum rpc Url')
.parse(import.meta.env.VITE_E2E_RPC_URL_OP_SEPOLIA)
export const sepoliaProvider = new ethers.providers.JsonRpcProvider({
Expand Down

0 comments on commit 40f205f

Please sign in to comment.