Skip to content

Commit

Permalink
Merge pull request #10 from Levana-Protocol/make-testnet
Browse files Browse the repository at this point in the history
Always testnet for now
  • Loading branch information
lvn-rusty-dragon authored Sep 6, 2024
2 parents 7aedcbd + c23158f commit 3a4d82f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions frontend/src/config/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ export type Environment = "mainnet" | "testnet"

export const ENV: Environment = match(window.location.host)
.returnType<Environment>()
.with("predict.levana.finance", () => "mainnet")
.with("predict.staff.levana.exchange", () => "mainnet")
.otherwise(() => "testnet")

export const IS_TESTNET = ENV === "testnet"
Expand Down

0 comments on commit 3a4d82f

Please sign in to comment.