diff --git a/frontend/src/app.d.ts b/frontend/src/app.d.ts
index 1cb7e4e..fe8b593 100644
--- a/frontend/src/app.d.ts
+++ b/frontend/src/app.d.ts
@@ -1,16 +1,27 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
- namespace App {
- // interface Error {}
- // interface Locals {}
- // interface PageData {}
- // interface PageState {}
- // interface Platform {}
- }
- interface ImportMetaEnv {
- VITE_API_URL: string;
- }
+ namespace App {
+ // interface Error {}
+ // interface Locals {}
+ // interface PageData {}
+ // interface PageState {}
+ // interface Platform {}
+ }
+ interface ImportMetaEnv {
+ VITE_API_URL: string;
+ }
+
+ interface MoneroNode {
+ id: number;
+ hostname: string;
+ ip: string;
+ port: number;
+ protocol: string;
+ is_tor: boolean;
+ is_available: boolean;
+ nettype: string;
+ }
}
export {};
diff --git a/frontend/src/routes/(front)/+layout.svelte b/frontend/src/routes/(front)/+layout.svelte
index e356060..e0a02d6 100644
--- a/frontend/src/routes/(front)/+layout.svelte
+++ b/frontend/src/routes/(front)/+layout.svelte
@@ -127,7 +127,7 @@