From 7d472e8d90792e43f84c261538ca2613d5682921 Mon Sep 17 00:00:00 2001 From: Faberto Date: Sat, 19 Oct 2024 14:03:01 +0200 Subject: [PATCH 1/3] switch to staqe seed node --- plugins/nimiq/nFunctions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/nimiq/nFunctions.ts b/plugins/nimiq/nFunctions.ts index fc00806..b7f45c9 100644 --- a/plugins/nimiq/nFunctions.ts +++ b/plugins/nimiq/nFunctions.ts @@ -13,7 +13,7 @@ export async function initClient(): Promise { // Specify the seed nodes to initially connect to: // Optional, default is ['/dns4/seed1.pos.nimiq-testnet.com/tcp/8443/wss'] - config.seedNodes(['/dns4/seed1.pos.nimiq-testnet.com/tcp/8443/wss']); + config.seedNodes(['/dns4/history.node.staqe.io/tcp/443/wss']); // Change the lowest log level that is output to the console: // Optional, default is 'info' From 5121f3b71a5d9d037c7fddb649fd75a4ee67486f Mon Sep 17 00:00:00 2001 From: Faberto Date: Sun, 20 Oct 2024 10:17:10 +0200 Subject: [PATCH 2/3] original seed node --- plugins/nimiq/nFunctions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/nimiq/nFunctions.ts b/plugins/nimiq/nFunctions.ts index b7f45c9..a830b1d 100644 --- a/plugins/nimiq/nFunctions.ts +++ b/plugins/nimiq/nFunctions.ts @@ -13,7 +13,7 @@ export async function initClient(): Promise { // Specify the seed nodes to initially connect to: // Optional, default is ['/dns4/seed1.pos.nimiq-testnet.com/tcp/8443/wss'] - config.seedNodes(['/dns4/history.node.staqe.io/tcp/443/wss']); + config.seedNodes(['/dns4/history.node.staqe.io/tcp/443/wss','/dns4/seed1.pos.nimiq-testnet.com/tcp/8443/wss']); // Change the lowest log level that is output to the console: // Optional, default is 'info' From fe61eb85d26a53bbaa3e0d5b1c44d4a73c362a0b Mon Sep 17 00:00:00 2001 From: Faberto Date: Sun, 20 Oct 2024 10:18:44 +0200 Subject: [PATCH 3/3] prettier --- plugins/nimiq/nFunctions.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/nimiq/nFunctions.ts b/plugins/nimiq/nFunctions.ts index a830b1d..214ab6d 100644 --- a/plugins/nimiq/nFunctions.ts +++ b/plugins/nimiq/nFunctions.ts @@ -13,7 +13,10 @@ export async function initClient(): Promise { // Specify the seed nodes to initially connect to: // Optional, default is ['/dns4/seed1.pos.nimiq-testnet.com/tcp/8443/wss'] - config.seedNodes(['/dns4/history.node.staqe.io/tcp/443/wss','/dns4/seed1.pos.nimiq-testnet.com/tcp/8443/wss']); + config.seedNodes([ + '/dns4/history.node.staqe.io/tcp/443/wss', + '/dns4/seed1.pos.nimiq-testnet.com/tcp/8443/wss', + ]); // Change the lowest log level that is output to the console: // Optional, default is 'info'