DstSwapper
Last updated
Last updated
DstSwapper
is an access controlled contract which executes transaction data when tokens must be swapped on the destination chain before being deposited into a vault. This typically occurs when the vault being deposited into has little bridge liquidity in the underlying asset. In this case, the more liquid token is sent to the DstSwapper
contract rather than going directly to CoreStateRegistry.
The contract also accounts for failed swaps, where the requested output of the swapped token on DstSwapper
falls below the user's intended amount they specified via .maxSlippage
. If the swapped amount will be lower, the payload is marked as failed and the user can rescue their funds and make the swap themselves on the destination chain.
There are three stages in which DstSwapper
handles actions on the destination chain. It first tries to swap via processTx
or batchProcessTx
, if not successful, the transaction is marked as failed via updateFailedTx
or batchUpdateFailedTx
which means the intermediary tokens can be rescued by CoreStateRegistry.
The core function in DstSwapper
is processTx
. Used in single vault payloads, after validating that the provided data will send tokens to CoreStateRegistry, processTx
calls the designated bridge address with the provided transaction data via the onlySwapper
modifier. This secures against txData
manipulation by off-chain route generation. processTx
will revert if the amount of the vault underlying token to be received was lower than what the user intended.
Name | Description |
---|---|
This function is used to swap tokens in multi vault payloads.
If processTx
doesn't go through successfully within a pre-determined time-frame (30 minutes being the default) transactions will be marked as failed via updateFailedTx
in a single vault payload.
If batchProcessTx
doesn't go through successfully within a pre-determined time-frame (30 minutes being the default) transactions will be marked as failed via batchUpdateFailedTx
in a multi vault payload.
Once transactions are marked as failed by swapper, they can be rescued by the rescue/dispute process conducted in CoreStateRegistry.
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
Name | Description |
---|---|
payloadId_
uint256 payload id to update
indices_
uint256 array of indeces to process
bridgeId_
uint8 bridgeId
that is being used for the swap
txData_
bytes txData
being executed
payloadId_
uint256 payload id to update
index_
uint256 index of the superformId
in the payload
interimToken_
address of the intermediary token that needs to be rescued
amount_
uint256 amount of the intermediary token that needs to be rescued
payloadId_
uint256 payload id to update
indices_
uint256 index of the superformId
in the payload
interimToken_
address of the intermediary token that needs to be rescued
amount_
uint256 amount of the intermediary token that needs to be rescued
user_
address of the user to refund on the destination chain
interimToken_
address of the interim token that wasn't able to be swapped which the user is owed
amount_
uint256 amount of the intermediary token the user is owed
payloadId_
uint256 payload id to update
bridgeId_
uint8 bridgeId
that is being used for the swap
txData_
bytes txData
being executed