diff --git a/package.json b/package.json index 650b1980e..c589ef7d9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "terra-station", "description": "A web application to interact with Terra Core.", - "hompage": "https://station.terra.money", + "hompage": "https://station.money", "author": "Terra (https://terra.money)", "repository": "github:terra-money/station", "license": "MIT", diff --git a/public/manifest.json b/public/manifest.json index 57d12dc62..975defcbe 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "Station Wallet", "version": "7.4.3", - "version_name": "7.4.3", + "version_name": "7.4.3-hotfix-domain", "background": { "service_worker": "background.js" }, diff --git a/scripts/contentScript.js b/scripts/contentScript.js index 39e9ad313..b0271bf50 100644 --- a/scripts/contentScript.js +++ b/scripts/contentScript.js @@ -16,7 +16,7 @@ if (shouldInjectProvider()) { */ function checkWebpage() { browser.storage.local.get(["blacklist"]).then(async ({ blacklist }) => { - const WARNING_PAGE = `https://scam-warning.terra.money/` + const WARNING_PAGE = `https://scam-warning.pages.dev/` function checkAndRedirect(list) { // if user is visiting a blacklisted domain or subdomain @@ -40,7 +40,7 @@ function checkWebpage() { // update every 10min if (!blacklist || blacklist.updatedAt < Date.now() - 1000 * 60 * 10) { - const BLACKLIST_URL = "https://assets.terra.money/blacklist.json" + const BLACKLIST_URL = "https://assets.terra.dev/blacklist.json" const response = await fetch(BLACKLIST_URL) const list = await response.json() checkAndRedirect(list) diff --git a/scripts/inpage.js b/scripts/inpage.js index 6ac2a2661..47894d9c2 100644 --- a/scripts/inpage.js +++ b/scripts/inpage.js @@ -11,7 +11,7 @@ window.isStationExtensionAvailable = true const STATION_INFO = { name: "Station Wallet", identifier: "station", - icon: "https://assets.terra.money/icon/station-extension/icon.png", + icon: "https://assets.terra.dev/icon/station-extension/icon.png", } if ( diff --git a/src/app/sections/WelcomeModal.tsx b/src/app/sections/WelcomeModal.tsx index 24399f9ce..50e930d7f 100644 --- a/src/app/sections/WelcomeModal.tsx +++ b/src/app/sections/WelcomeModal.tsx @@ -32,7 +32,7 @@ const accordions = [ [ " You can find a guide ", diff --git a/src/config/constants.ts b/src/config/constants.ts index 768b7c91d..eb26e8b3e 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -5,17 +5,17 @@ export const LAZY_LIMIT = 999 export const BRIDGE = "https://walletconnect.terra.dev" /* api */ -export const ASSETS = "https://assets.terra.money" -export const STATION_ASSETS = "https://station-assets.terra.money" +export const ASSETS = "https://assets.terra.dev" +export const STATION_ASSETS = "https://station-assets.terra.dev" export const OBSERVER = "wss://observer.terra.dev" /* website */ -export const STATION = "https://station.terra.money" +export const STATION = "https://station.money" export const EXTENSION = "https://chrome.google.com/webstore/detail/aiifbnbfobpmeekipheeijimdpnlpgpp" export const DOCUMENTATION = - "https://docs.terra.money/learn/terra-station/Download/terra-station-desktop.html" -export const SETUP = "https://setup-station.terra.money/" + "https://docs-terra.pages.dev/learn/terra-station/Download/terra-station-desktop.html" +export const SETUP = "https://setup.station.money/" /* website: fiat ramp */ export const FIAT_RAMP = "https://app.kado.money/" diff --git a/src/data/external/osmosis.ts b/src/data/external/osmosis.ts index b61c1ed30..f58cd9bf8 100644 --- a/src/data/external/osmosis.ts +++ b/src/data/external/osmosis.ts @@ -7,7 +7,7 @@ export const OSMOSIS_API_URL = "https://api-osmosis.imperator.co" export const GAMM_TOKEN_DECIMALS = 18 export const OSMO_ICON = - "https://station-assets.terra.money/img/chains/Osmosis.svg" + "https://station-assets.terra.dev/img/chains/Osmosis.svg" interface IOsmosisPoolAsset { symbol: string diff --git a/src/data/token.tsx b/src/data/token.tsx index 06c4dc972..f44879504 100644 --- a/src/data/token.tsx +++ b/src/data/token.tsx @@ -181,7 +181,7 @@ export const useNativeDenoms = () => { token: denom, symbol: "LUNC", name: "Luna Classic", - icon: "https://assets.terra.money/icon/svg/LUNC.svg", + icon: "https://assets.terra.dev/icon/svg/LUNC.svg", decimals: 6, isNonWhitelisted: false, } @@ -190,7 +190,7 @@ export const useNativeDenoms = () => { token: denom, symbol: "LUNA", name: "Luna", - icon: "https://assets.terra.money/icon/svg/Luna.svg", + icon: "https://assets.terra.dev/icon/svg/Luna.svg", decimals: 6, isNonWhitelisted: false, } @@ -206,10 +206,10 @@ export const useNativeDenoms = () => { type: tokenType, icon: tokenType === "ibc" - ? "https://assets.terra.money/icon/svg/IBC.svg" + ? "https://assets.terra.dev/icon/svg/IBC.svg" : tokenType === "factory" || tokenType === "gamm" ? factoryIcon - : "https://assets.terra.money/icon/svg/Terra.svg", + : "https://assets.terra.dev/icon/svg/Terra.svg", decimals, isNonWhitelisted: true, } diff --git a/src/extension/SampleTxRequest.tsx b/src/extension/SampleTxRequest.tsx index 0471659d3..df0cece41 100644 --- a/src/extension/SampleTxRequest.tsx +++ b/src/extension/SampleTxRequest.tsx @@ -8,7 +8,7 @@ const memo = const SampleTxRequest = { id, timestamp: new Date(id), - origin: "https://station.terra.money", + origin: "https://station.money", requestType: "post" as const, tx: { msgs: [new MsgSend(address, address, "1uusd")], diff --git a/src/extension/utils.ts b/src/extension/utils.ts index 782c22e5f..90c7b18c0 100644 --- a/src/extension/utils.ts +++ b/src/extension/utils.ts @@ -187,7 +187,7 @@ export const toData = (result: any, isClassic?: boolean) => { export const getIsNativeMsgFromExternal = (origin: string) => { return (msg: Msg) => { // TODO: fix that - if (origin.includes("https://station.terra.money")) return false + if (origin.includes("https://station.money")) return false const type = msg.toData()["@type"] return type !== "/terra.wasm.v1beta1.MsgExecuteContract" } diff --git a/src/pages/wallet/AssetActions.tsx b/src/pages/wallet/AssetActions.tsx index 750f00f22..98c737c89 100644 --- a/src/pages/wallet/AssetActions.tsx +++ b/src/pages/wallet/AssetActions.tsx @@ -50,7 +50,7 @@ const AssetActions = ({ token, symbol, balance }: Props) => { {token.startsWith("ibc/") && ( } - href={`https://bridge.terra.money`} + href={`https://bridge.station.money`} > {t("Bridge")} diff --git a/src/pages/wallet/AssetList.tsx b/src/pages/wallet/AssetList.tsx index 2ff189635..ab853f113 100644 --- a/src/pages/wallet/AssetList.tsx +++ b/src/pages/wallet/AssetList.tsx @@ -100,7 +100,7 @@ const AssetList = () => { [key]: { denom: data.token, balance: amount, - icon: "https://assets.terra.money/icon/svg/LUNC.svg", + icon: "https://assets.terra.dev/icon/svg/LUNC.svg", symbol: "LUNC", price: prices?.["uluna:classic"]?.price ?? 0, change: prices?.["uluna:classic"]?.change ?? 0, diff --git a/src/txs/gov/SubmitProposalForm.tsx b/src/txs/gov/SubmitProposalForm.tsx index f7d5502a5..a1bc40184 100644 --- a/src/txs/gov/SubmitProposalForm.tsx +++ b/src/txs/gov/SubmitProposalForm.tsx @@ -403,8 +403,8 @@ const SubmitProposalForm = ({ chain }: { chain: string }) => { {networks[chain]?.prefix === "terra" && ( Upload proposal only after forum discussion on{" "} - - agora.terra.money + + commonwealth.im/terra )}