From 22877d9136655283b76776eb558b1c776c6505ec Mon Sep 17 00:00:00 2001 From: NeOMakinG <14963751+NeOMakinG@users.noreply.github.com> Date: Tue, 24 Sep 2024 22:36:55 +0800 Subject: [PATCH] fix: lower btc dust threshold as thor docs (#7788) --- .../opportunitiesSlice/resolvers/thorchainsavers/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/slices/opportunitiesSlice/resolvers/thorchainsavers/utils.ts b/src/state/slices/opportunitiesSlice/resolvers/thorchainsavers/utils.ts index 01aa66eb8b3..5418fa05931 100644 --- a/src/state/slices/opportunitiesSlice/resolvers/thorchainsavers/utils.ts +++ b/src/state/slices/opportunitiesSlice/resolvers/thorchainsavers/utils.ts @@ -48,7 +48,7 @@ const usdtEthereumAssetId: AssetId = 'eip155:1/erc20:0xdac17f958d2ee523a22062069 // The minimum amount to be sent both for deposit and withdraws // else it will be considered a dust attack and gifted to the network export const THORCHAIN_SAVERS_DUST_THRESHOLDS_CRYPTO_BASE_UNIT = { - [btcAssetId]: '30000', + [btcAssetId]: '10000', [bchAssetId]: '10000', [ltcAssetId]: '10000', [dogeAssetId]: '100000000',