Skip to content

Commit

Permalink
feat: revert gaia url
Browse files Browse the repository at this point in the history
  • Loading branch information
alter-eggo committed May 25, 2023
1 parent bc1ee1c commit 52375a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/shared/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion tests-legacy/integration/profile/profile.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe(`Profile updating`, () => {
function interceptGaiaRequest(page: Page): Promise<Buffer> {
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;
Expand Down

0 comments on commit 52375a0

Please sign in to comment.