From 1a3d9762a240c9e189c69c1003d5a1c7a314c359 Mon Sep 17 00:00:00 2001 From: Marcus Pousette Date: Mon, 28 Oct 2024 19:53:52 +0100 Subject: [PATCH] fix: update bootstrap address --- packages/clients/peerbit/src/bootstrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/clients/peerbit/src/bootstrap.ts b/packages/clients/peerbit/src/bootstrap.ts index e4713300a..2f787c9e2 100644 --- a/packages/clients/peerbit/src/bootstrap.ts +++ b/packages/clients/peerbit/src/bootstrap.ts @@ -5,7 +5,7 @@ export const resolveBootstrapAddresses = async ( return ( await ( await fetch( - `https://raw.githubusercontent.com/dao-xyz/peerbit-bootstrap/master/bootstrap${v ? "-" + v : ""}.env`, + `https://bootstrap.peerchecker.com/bootstrap${v ? "-" + v : ""}.env`, ) ).text() )