Skip to content

Commit

Permalink
Merge pull request #12 from dsrvlabs/develop
Browse files Browse the repository at this point in the history
fix injective compiler endpoint
  • Loading branch information
altpd13 authored Jul 19, 2024
2 parents 9002e46 + deb0859 commit c1a41de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/const/endpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ export const NEUTRON_COMPILER_CONSUMER_API_ENDPOINT =
// ---
const INJECTIVE_COMPILER_CONSUMER_ENDPOINT_POOL = {
local: 'ws://localhost:8000',
dev: 'wss://dev.injective.compiler.welldonestudio.io',
prod: 'wss://prod.injective.compiler.welldonestudio.io',
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.injective.compiler.welldonestudio.io',
prod: 'https://prod.injective.compiler.welldonestudio.io',
dev: 'https://dev.compiler.welldonestudio.io',
prod: 'https://prod.compiler.welldonestudio.io/',
};

export const INJECTIVE_COMPILER_CONSUMER_API_ENDPOINT =
Expand Down

0 comments on commit c1a41de

Please sign in to comment.