feat: change gaia url, closes #3678

This commit is contained in:
alter-eggo
2023-05-24 10:56:07 +04:00
committed by kyranjamie
parent b3ec461bb8
commit baa3c4a11f
4 changed files with 7 additions and 7 deletions

View File

@@ -325,7 +325,7 @@
"webpack-hot-middleware": "2.25.3"
},
"resolutions": {
"socket.io-parser": "4.2.2",
"socket.io-parser": "4.2.3",
"**/**/bn.js": "5.2.1"
},
"keywords": [

View File

@@ -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.blockstack.org';
export const gaiaUrl = 'https://hub.hiro.so';
export const POPUP_CENTER_WIDTH = 442;
export const POPUP_CENTER_HEIGHT = 646;

View File

@@ -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.blockstack.org/store')) {
if (request.url().startsWith('https://hub.hiro.so')) {
const requestBody = request.postDataBuffer();
if (request.method() === 'GET') return;
if (requestBody === null) return;

View File

@@ -16008,10 +16008,10 @@ socket.io-client@4.4.1:
parseuri "0.0.6"
socket.io-parser "~4.1.1"
socket.io-parser@4.2.2, socket.io-parser@~4.1.1:
version "4.2.2"
resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.2.tgz#1dd384019e25b7a3d374877f492ab34f2ad0d206"
integrity sha512-DJtziuKypFkMMHCm2uIshOYC7QaylbtzQwiMYDuCKy3OPkjLzu4B2vAhTlqipRHHzrI0NJeBAizTK7X+6m1jVw==
socket.io-parser@4.2.3, socket.io-parser@~4.1.1:
version "4.2.3"
resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.3.tgz#926bcc6658e2ae0883dc9dee69acbdc76e4e3667"
integrity sha512-JMafRntWVO2DCJimKsRTh/wnqVvO4hrfwOqtO7f+uzwsQMuxO6VwImtYxaQ+ieoyshWOTJyV0fA21lccEXRPpQ==
dependencies:
"@socket.io/component-emitter" "~3.1.0"
debug "~4.3.1"