Skip to content

Commit

Permalink
Small fix in environment.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ccali11 committed Nov 16, 2023
1 parent 2aa914b commit a7804ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/composables/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const ethereumUrl = import.meta.env.PUBLIC_ETHEREUM_RPC_URL || "http://127.0.0.1
const ethereumWsUrl = import.meta.env.PUBLIC_ETHEREUM_WS_URL
const provider = new ethers.providers.JsonRpcProvider(ethereumUrl)
const batchProvider: ethers.providers.JsonRpcBatchProvider = new ethers.providers.JsonRpcBatchProvider(ethereumUrl)
const wsProvider: ethers.providers.wsProvider | null = ethereumWsUrl !== "undefined" ? new ethers.providers.wsProvider(ethereumWsUrl) : null
const wsProvider: ethers.providers.WebSocketProvider | null = ethereumWsUrl !== "undefined" ? new ethers.providers.WebSocketProvider(ethereumWsUrl) : null

/* Casimir environment */
const docsUrl = import.meta.env.PUBLIC_DOCS_URL || "https://docs.dev.casimir.co"
Expand Down

0 comments on commit a7804ac

Please sign in to comment.