@lifi/sdk
Version:
LI.FI Any-to-Any Cross-Chain-Swap SDK
84 lines (79 loc) • 2.62 kB
text/typescript
import type { Client, GetChainIdReturnType } from 'viem'
import { getChainId } from 'viem/actions'
import { getAction } from 'viem/utils'
import { LiFiErrorCode } from '../../errors/constants.js'
import { ProviderError } from '../../errors/errors.js'
import type { StatusManager } from '../StatusManager.js'
import type { ExecutionOptions, LiFiStepExtended, Process } from '../types.js'
/**
* This method checks whether the wallet client is configured for the correct chain.
* If yes it returns the wallet clien.
* If no and if user interaction is allowed it triggers the switchChainHook. If no user interaction is allowed it aborts.
*
* Account Type: local -
* We need to create and return a new connector client from the switchChainHook in order to continue execution on a new chain.
*
* Account Type: json-rpc -
* We can switch chain and return existing connector client from the switchChainHook in order to continue execution on a new chain.
* @param client
* @param statusManager
* @param step
* @param switchChainHook
* @param allowUserInteraction
* @returns New connector client
*/
export const switchChain = async (
client: Client,
statusManager: StatusManager,
step: LiFiStepExtended,
process: Process,
targetChainId: number,
allowUserInteraction: boolean,
executionOptions?: ExecutionOptions
): Promise<Client | undefined> => {
// if we are already on the correct chain we can proceed directly
const currentChainId = (await getAction(
client,
getChainId,
'getChainId'
)(undefined)) as GetChainIdReturnType
if (currentChainId === targetChainId) {
return client
}
if (!allowUserInteraction) {
return
}
try {
if (!executionOptions?.switchChainHook) {
throw new ProviderError(
LiFiErrorCode.ChainSwitchError,
'Chain switch hook is not provided.'
)
}
const updatedClient = await executionOptions.switchChainHook(targetChainId)
let updatedChainId: number | undefined
if (updatedClient) {
updatedChainId = (await getAction(
updatedClient,
getChainId,
'getChainId'
)(undefined)) as GetChainIdReturnType
}
if (updatedChainId !== targetChainId) {
throw new ProviderError(
LiFiErrorCode.ChainSwitchError,
'Chain switch required.'
)
}
return updatedClient
} catch (error: any) {
statusManager.updateProcess(step, process.type, 'FAILED', {
error: {
message: error.message,
code: LiFiErrorCode.ChainSwitchError,
},
})
statusManager.updateExecution(step, 'FAILED')
throw error
}
}