From 6f3540f16fa2f8eaa79630b282765adfdb8f6d15 Mon Sep 17 00:00:00 2001 From: maybeast <78227110+maybeast@users.noreply.github.com> Date: Thu, 16 Jan 2025 10:11:54 +0200 Subject: [PATCH] boltz(config): enable chain swaps and RBTC/L-BTC pair --- data/backend/boltz.conf | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/data/backend/boltz.conf b/data/backend/boltz.conf index 77ce7bd..74000d0 100755 --- a/data/backend/boltz.conf +++ b/data/backend/boltz.conf @@ -31,6 +31,7 @@ base = "BTC" quote = "BTC" rate = 1 fee = 0.5 +swapInFee = 0.1 maxSwapAmount = 40_294_967 minSwapAmount = 50_000 @@ -43,7 +44,8 @@ minSwapAmount = 50_000 [[pairs]] base = "L-BTC" quote = "BTC" -fee = 0.1 +fee = 0.25 +swapInFee = 0.1 rate = 1 maxSwapAmount = 40_294_967 minSwapAmount = 50_000 @@ -58,7 +60,8 @@ minSwapAmount = 50_000 base = "RBTC" quote = "BTC" rate = 1 -fee = 0.5 +fee = 0.25 +swapInFee = 0.1 maxSwapAmount = 4_294_967 minSwapAmount = 50_000 @@ -69,6 +72,30 @@ minSwapAmount = 50_000 swapMaximal = 2880 swapTaproot = 10080 +[[pairs]] +base = "RBTC" +quote = "L-BTC" +rate = 1 +fee = 0.25 +swapInFee = 0.1 + +maxSwapAmount = 10_000_000 +minSwapAmount = 2_500 + +swapTypes = ["chain"] + + [pairs.chainSwap] + buyFee = 0.1 + sellFee = 0.1 + + minSwapAmount = 25_000 + + [pairs.timeoutDelta] + reverse = 1440 + swapMinimal = 1440 + swapMaximal = 2880 + swapTaproot = 10080 + [[currencies]] symbol = "BTC" network = "bitcoinRegtest"