From afae24198c4639074cb05355d9edca91833d609e Mon Sep 17 00:00:00 2001 From: NeOMakinG <14963751+NeOMakinG@users.noreply.github.com> Date: Tue, 6 Jan 2026 14:40:08 +0100 Subject: [PATCH] fix: tron lp deposits --- src/lib/utils/thorchain/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/utils/thorchain/index.ts b/src/lib/utils/thorchain/index.ts index 4becff58d45..3ac39ac5b79 100644 --- a/src/lib/utils/thorchain/index.ts +++ b/src/lib/utils/thorchain/index.ts @@ -7,6 +7,7 @@ import { rujiAssetId, tcyAssetId, thorchainChainId, + tronChainId, } from '@shapeshiftoss/caip' import type { HDWallet } from '@shapeshiftoss/hdwallet-core' import { isGridPlus } from '@shapeshiftoss/hdwallet-gridplus' @@ -303,7 +304,7 @@ export const getThorchainTransactionType = (chainId: ChainId) => { if (supportedEvmChainIds.includes(chainId as KnownChainIds)) { return 'EvmCustomTx' } - if (isUtxoChainId(chainId) || chainId === cosmosChainId) { + if (isUtxoChainId(chainId) || chainId === cosmosChainId || chainId === tronChainId) { return 'Send' }