From 9a44529fe1965d8a53b3710eb9fc0f26232d5685 Mon Sep 17 00:00:00 2001 From: binarybaron Date: Wed, 24 Sep 2025 13:49:52 +0200 Subject: [PATCH] feat(gui): deprecate and warn about makers running <3.0.0 --- src-gui/src/utils/multiAddrUtils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-gui/src/utils/multiAddrUtils.ts b/src-gui/src/utils/multiAddrUtils.ts index 0f3eb26f..07f6873b 100644 --- a/src-gui/src/utils/multiAddrUtils.ts +++ b/src-gui/src/utils/multiAddrUtils.ts @@ -5,7 +5,8 @@ import { isTestnet } from "store/config"; // const MIN_ASB_VERSION = "1.0.0-alpha.1" // First version to support new libp2p protocol // const MIN_ASB_VERSION = "1.1.0-rc.3" // First version with support for bdk > 1.0 -const MIN_ASB_VERSION = "2.0.0-beta.1"; // First version with support for tx_early_refund +// const MIN_ASB_VERSION = "2.0.0-beta.1"; // First version with support for tx_early_refund +const MIN_ASB_VERSION = "3.0.0"; export function providerToConcatenatedMultiAddr(provider: Maker) { return new Multiaddr(provider.multiAddr)