import type { RouteExtended, TokenAmount } from '@lifi/sdk'; import { Fragment } from 'react'; import { StepDivider } from '../../components/StepDivider'; import type { WidgetSubvariant } from '../../types'; import { Step } from './Step'; export const getStepList = ( route?: RouteExtended, subvariant?: WidgetSubvariant, ) => route?.steps.map((step, index, steps) => { const lastIndex = steps.length - 1; const fromToken: TokenAmount | undefined = index === 0 ? { ...step.action.fromToken, amount: BigInt(step.action.fromAmount) } : undefined; const toToken: TokenAmount | undefined = index === lastIndex ? { ...(step.execution?.toToken ?? step.action?.toToken), amount: step.execution?.toAmount ? BigInt(step.execution.toAmount) : subvariant === 'nft' ? BigInt(route.toAmount) : BigInt(step.estimate.toAmount), } : undefined; const toAddress = index === lastIndex && route.fromAddress !== route.toAddress ? route.toAddress : undefined; return ( {steps.length > 1 && index !== steps.length - 1 ? ( ) : null} ); });