diff --git a/src/shared/constants.ts b/src/shared/constants.ts index 6b208771a3f..3e21b2d23aa 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -3,7 +3,7 @@ import { ChainID } from '@stacks/transactions'; import { IS_TEST_ENV } from './environment'; import { Blockchains } from './models/blockchain.model'; -export const gaiaUrl = 'https://hub.hiro.so'; +export const gaiaUrl = 'https://hub.blockstack.org'; export const POPUP_CENTER_WIDTH = 442; export const POPUP_CENTER_HEIGHT = 646; diff --git a/tests-legacy/integration/profile/profile.spec.ts b/tests-legacy/integration/profile/profile.spec.ts index 725af42adff..2ec42d27ed8 100644 --- a/tests-legacy/integration/profile/profile.spec.ts +++ b/tests-legacy/integration/profile/profile.spec.ts @@ -50,7 +50,7 @@ describe(`Profile updating`, () => { function interceptGaiaRequest(page: Page): Promise { return new Promise(resolve => { page.on('request', request => { - if (request.url().startsWith('https://hub.hiro.so')) { + if (request.url().startsWith('https://hub.blockstack.org/store')) { const requestBody = request.postDataBuffer(); if (request.method() === 'GET') return; if (requestBody === null) return;