feat(gui): deprecate and warn about makers running <3.0.0

This commit is contained in:
binarybaron 2025-09-24 13:49:52 +02:00
parent fa53184aba
commit 9a44529fe1

View file

@ -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)