const quotes = await sdk.getQuotes({
collateralAmount: "0.1",
loanAmount: "5000",
});
const selectedQuote = quotes[0];
const fees = await sdk.getQuoteFees({
collateralAmount: "0.1",
loanAmount: "5000",
fromChain: ChainType.BITCOIN,
fromAssetSymbol: "BTC",
toChain: selectedQuote.chain,
toAssetSymbol: selectedQuote.collateralAssetSymbol ?? "WBTC",
loanChain: selectedQuote.loanChain ?? selectedQuote.chain,
loanAssetSymbol: selectedQuote.loanAssetSymbol ?? "USDC",
});
console.log("Bridge fee USD:", fees.bridgeFees.totalBridgeFeeUSD);
console.log("Platform fee:", fees.borrowFees.platformFee);
console.log("Net loan to user:", fees.borrowFees.netLoanAmount);