From 102a36659c443b9ab7b809dea1ae0d0a23f8b738 Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Wed, 18 Dec 2024 23:35:39 +0100 Subject: [PATCH] set default relay and storage url to demo server --- src/services/service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/service.ts b/src/services/service.ts index 8231481..44b93b5 100755 --- a/src/services/service.ts +++ b/src/services/service.ts @@ -10,8 +10,8 @@ import { storeData, retrieveData } from './storage.service'; export const U32_MAX = 4294967295; -const storageUrl = `http://localhost:8080`; -const BOOTSTRAPURL = [`http://localhost:8090`]; +const storageUrl = `https://demo.4nkweb.com/storage`; +const BOOTSTRAPURL = [`https://demo.4nkweb.com/ws/`]; export default class Services { private static initializing: Promise | null = null;