We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9911fdc commit 0324ab8Copy full SHA for 0324ab8
apps/kyberswap-interface/src/pages/CrossChainSwap/adapters/NearIntentsAdapter.ts
@@ -216,6 +216,9 @@ export class NearIntentsAdapter extends BaseSwapAdapter {
216
) {
217
throw new Error('Near Intent recipient or refundTo is ZERO ADDRESS')
218
}
219
+
220
+ console.log('refreshedQuote.quote.minAmountOut ======', refreshedQuote.quote.minAmountOut)
221
+ console.log('quote.rawQuote.quote.minAmountOut ======', quote.rawQuote.quote.minAmountOut)
222
if (BigInt(refreshedQuote.quote.minAmountOut) < BigInt(quote.rawQuote.quote.minAmountOut)) {
223
throw new Error('Quote amount out is less than expected')
224
0 commit comments