-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59f0681
commit 8c6daa9
Showing
5 changed files
with
58 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,18 @@ | ||
import { STAGE } from "./stage"; | ||
|
||
const COMPILER_API_ENDPOINT_POOL = { | ||
local: "http://localhost:8000", | ||
// local: "http://localhost:8000", | ||
// local: "https://cargo-test.veriwell.dev", | ||
local: "https://arbitrum.compiler.welldonestudio.io", | ||
dev: "https://dev.compiler.welldonestudio.io", | ||
prod: "https://verify.welldonestudio.io", | ||
}; | ||
export const COMPILER_API_ENDPOINT = COMPILER_API_ENDPOINT_POOL[STAGE]; | ||
|
||
const ARBITRUM_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: "ws://localhost:8000", | ||
const COMPILER_WEBSOCKET_ENDPOINT_POOL = { | ||
// local: "ws://localhost:8000", | ||
local: "wss://arbitrum.compiler.welldonestudio.io", | ||
dev: "wss://dev.compiler.welldonestudio.io", | ||
prod: "wss://prod.near.compiler.welldonestudio.io", | ||
}; | ||
export const ARBITRUM_COMPILER_CONSUMER_ENDPOINT = ARBITRUM_COMPILER_CONSUMER_ENDPOINT_POOL[STAGE]; | ||
|
||
const ARBITRUM_COMPILER_CONSUMER_API_ENDPOINT_POOL = { | ||
local: "http://localhost:8000", | ||
dev: "https://dev.compiler.welldonestudio.io", | ||
prod: "https://verify.welldonestudio.io", | ||
}; | ||
|
||
export const ARBITRUM_COMPILER_CONSUMER_API_ENDPOINT = ARBITRUM_COMPILER_CONSUMER_API_ENDPOINT_POOL[STAGE]; | ||
export const COMPILER_WEBSOCKET_ENDPOINT = COMPILER_WEBSOCKET_ENDPOINT_POOL[STAGE]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters