-
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
b00237d
commit 8350957
Showing
8 changed files
with
41 additions
and
255 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
export const CHAIN_NAME = { | ||
aptos: 'aptos', | ||
arbitrum: 'arbitrum', | ||
sui: 'sui', | ||
neutron: 'neutron', | ||
juno: 'juno', | ||
injective: 'injective', | ||
arbitrum: "arbitrum", | ||
}; |
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,86 +1,23 @@ | ||
import { STAGE } from './stage'; | ||
import { STAGE } from "./stage"; | ||
|
||
const COMPILER_API_ENDPOINT_POOL = { | ||
local: 'http://localhost:8000', | ||
dev: 'https://dev.compiler.welldonestudio.io', | ||
prod: 'https://verify.welldonestudio.io', | ||
local: "http://localhost:8000", | ||
dev: "https://dev.compiler.welldonestudio.io", | ||
prod: "https://verify.welldonestudio.io", | ||
}; | ||
export const COMPILER_API_ENDPOINT = COMPILER_API_ENDPOINT_POOL[STAGE]; | ||
|
||
const NEAR_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: 'ws://localhost:8000', | ||
dev: 'wss://dev.compiler.welldonestudio.io', | ||
prod: 'wss://prod.near.compiler.welldonestudio.io', | ||
}; | ||
export const NEAR_COMPILER_CONSUMER_ENDPOINT = NEAR_COMPILER_CONSUMER_ENDPOINT_POOL[STAGE]; | ||
|
||
const JUNO_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: 'ws://localhost:8000', | ||
dev: 'wss://dev.neutron.compiler.welldonestudio.io', | ||
prod: 'wss://prod.neutron.compiler.welldonestudio.io', | ||
}; | ||
export const JUNO_COMPILER_CONSUMER_ENDPOINT = JUNO_COMPILER_CONSUMER_ENDPOINT_POOL[STAGE]; | ||
|
||
const APTOS_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: 'ws://localhost:8000', | ||
dev: 'wss://dev.compiler.welldonestudio.io', | ||
// prod: 'wss://prod.aptos.compiler.welldonestudio.io', | ||
prod: 'wss://prod.near.compiler.welldonestudio.io', | ||
}; | ||
export const APTOS_COMPILER_CONSUMER_ENDPOINT = APTOS_COMPILER_CONSUMER_ENDPOINT_POOL[STAGE]; | ||
|
||
const SUI_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: 'ws://localhost:8000', | ||
dev: 'wss://dev.compiler.welldonestudio.io', | ||
// prod: 'wss://prod.aptos.compiler.welldonestudio.io', | ||
prod: 'wss://prod.near.compiler.welldonestudio.io', | ||
}; | ||
export const SUI_COMPILER_CONSUMER_ENDPOINT = SUI_COMPILER_CONSUMER_ENDPOINT_POOL[STAGE]; | ||
|
||
const NEUTRON_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: 'ws://localhost:8000', | ||
dev: 'wss://dev.neutron.compiler.welldonestudio.io', | ||
prod: 'wss://prod.neutron.compiler.welldonestudio.io', | ||
}; | ||
export const NEUTRON_COMPILER_CONSUMER_ENDPOINT = NEUTRON_COMPILER_CONSUMER_ENDPOINT_POOL[STAGE]; | ||
|
||
const NEUTRON_COMPILER_CONSUMER_API_ENDPOINT_POOL = { | ||
local: 'http://localhost:8000', | ||
dev: 'https://dev.neutron.compiler.welldonestudio.io', | ||
prod: 'https://prod.neutron.compiler.welldonestudio.io', | ||
}; | ||
|
||
export const NEUTRON_COMPILER_CONSUMER_API_ENDPOINT = | ||
NEUTRON_COMPILER_CONSUMER_API_ENDPOINT_POOL[STAGE]; | ||
// --- | ||
const INJECTIVE_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: 'ws://localhost:8000', | ||
dev: 'wss://dev.compiler.welldonestudio.io', | ||
prod: 'wss://prod.compiler.welldonestudio.io', | ||
}; | ||
export const INJECTIVE_COMPILER_CONSUMER_ENDPOINT = INJECTIVE_COMPILER_CONSUMER_ENDPOINT_POOL[STAGE]; | ||
|
||
const INJECTIVE_COMPILER_CONSUMER_API_ENDPOINT_POOL = { | ||
local: 'http://localhost:8000', | ||
dev: 'https://dev.compiler.welldonestudio.io', | ||
prod: 'https://prod.compiler.welldonestudio.io/', | ||
}; | ||
|
||
export const INJECTIVE_COMPILER_CONSUMER_API_ENDPOINT = | ||
INJECTIVE_COMPILER_CONSUMER_API_ENDPOINT_POOL[STAGE]; | ||
|
||
const ARBITRUM_COMPILER_CONSUMER_ENDPOINT_POOL = { | ||
local: 'ws://localhost:8000', | ||
dev: 'wss://dev.compiler.welldonestudio.io', | ||
prod: 'wss://prod.near.compiler.welldonestudio.io', | ||
local: "ws://localhost:8000", | ||
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', | ||
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 ARBITRUM_COMPILER_CONSUMER_API_ENDPOINT = ARBITRUM_COMPILER_CONSUMER_API_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
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
Oops, something went wrong.