Function: _bridgeToSource(byte[1] _bridgeId, address _receiver, address _token, uint256 _amount, uint16 _sourceChainId, byte[] _withdrawPayload)
This bridges the token to the destination chain via the selected bridge.
Inputs
_bridgeIdConstraints: Has to be one of 0x01, 0x02 or 0x03.
Impact: The ID of the bridge to use (e.g., 0x01, 0x02, 0x03).
_receiverConstraints: No constraints.
Impact: The address to receive the bridged tokens.
_tokenConstraints: No constraints.
Impact: The address of the token to bridge.
_amountConstraints: No constraints.
Impact: The amount of the token to bridge.
_sourceChainIdConstraints: No constraints.
Impact: The ID of the chain the token is being bridged from (always calling chain).
_withdrawPayloadConstraints: Should be encoded in the correct format based on the selected bridge.
Impact: The payload to decode for the extra inputs for each bridge.
Branches and code coverage (including function calls)
Intended branches
The function calls the appropriate
_bridgeWithfunction based on_bridgeId.
Negative behavior
The function reverts if
_bridgeIdis not one of the supported bridge identifiers.
Function call analysis
_bridgeWithCeler(_receiver, _token, _amount, _sourceChainId, abi.decode(_withdrawPayload, (uint256)))What is controllable?
_receiver,_token,_amount,_sourceChainId, and_withdrawPayload.If return value controllable, how is it used and how can it go wrong? N/A.
What happens if it reverts, reenters, or does other unusual control flow? If this reverts, the entire call fails --- no reentrancy issues.
_bridgeWithHyphen(_receiver, _token, _amount, _sourceChainId)What is controllable?
_receiver,_token,_amount, and_sourceChainId.If return value controllable, how is it used and how can it go wrong? N/A.
What happens if it reverts, reenters, or does other unusual control flow? If this reverts, the entire call fails --- no reentrancy issues.
_bridgeWithHop(_receiver, _token, _amount, _sourceChainId, maxSlippage, bonderFee)What is controllable?
_receiver,_token,_amount,_sourceChainId,maxSlippage, andbonderFee.If return value controllable, how is it used and how can it go wrong? N/A.
What happens if it reverts, reenters, or does other unusual control flow? If this reverts, the entire call fails --- no reentrancy issues.