const crossChainQuote = await machSdk.getQuote({
fromToken: '0x6B175474E89094C44Da98b954EedeAC495271d0F', // DAI on Ethereum
toToken: '0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063', // DAI on Polygon
amount: '1000000000000000000', // 1 DAI (in wei)
fromChainId: 1, // Ethereum
toChainId: 137, // Polygon
slippage: 0.5 // 0.5% slippage tolerance
});
console.log('Expected output amount:', crossChainQuote.expectedOutput);
console.log('Estimated fee:', crossChainQuote.fee);
console.log('Estimated completion time:', crossChainQuote.estimatedTimeMinutes, 'minutes');