diff --git a/components/page/bridge/index.tsx b/components/page/bridge/index.tsx index 1fdcc45..02f2cfe 100644 --- a/components/page/bridge/index.tsx +++ b/components/page/bridge/index.tsx @@ -255,6 +255,10 @@ const Bridge = () => { throw `The bridge contract does not have enough balance to process this bridge transaction. Wanted ${amount} ${token.symbol}, have ${balanceMax} ${token.symbol}`; } + if (Number(amount) < 100) { + throw Error("Minimum bridge is 100 USDT"); + } + const bridgeAdapterAddress = Address.parse( TonInteractionContract[tonNetwork].bridgeAdapter ); @@ -391,6 +395,10 @@ const Bridge = () => { throw `The bridge contract does not have enough balance to process this bridge transaction. Wanted ${amount} ${token.symbol}, have ${displayBalance} ${token.symbol}`; } + if (Number(amount) < 100) { + throw Error("Minimum bridge is 100 USDT"); + } + const tonBridgeClient = new TonbridgeBridgeClient( window.client, oraiAddress,