Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Bitkit/Constants/Env.swift
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,12 @@ enum Env {
static let playStoreUrl = "https://play.google.com/store/apps/details?id=to.bitkit"
static let githubUrl = "https://www.github.com/synonymdev/bitkit"
static let githubReleasesUrl = "https://www.github.com/synonymdev/bitkit/releases"
static let updaterUrl = "https://github.com/synonymdev/bitkit/releases/download/updater/release.json"
static var updaterUrl: String {
isE2E
? "https://github.com/synonymdev/bitkit-e2e-tests/releases/download/updater/release.json"
: "https://github.com/synonymdev/bitkit/releases/download/updater/release.json"
}

static let termsOfServiceUrl = "https://www.bitkit.to/terms-of-use"
static let privacyPolicyUrl = "https://www.bitkit.to/privacy-policy"
static let geoCheckUrl = "https://api1.blocktank.to/api/geocheck"
Expand Down
Loading