SwapAndBridge() initiates the cross-chain transfer by creating a unique message hash and transferring tokens to the bridge contract. This function handles the source chain operations and token locking mechanism
function swapAndBridge(
uint256 sourceChainId,
address addr,
uint256 amount,
address tokenAddress,
uint256 nonce,
uint256 destinationChainId
) public returns (bytes32) {
bytes32 message = hashMessage(sourceChainId, addr, amount, tokenAddress, nonce, destinationChainId);
messenger.sendMessage(message);
//Before calling this function, the user must approve the contract to spend their tokens
IERC20(tokenAddress).transferFrom(msg.sender, address(this), amount);
return message;
}
TOKEN RECEPTION HANDLER-
receiveTokens() processes incoming bridge transfers by verifying the message hash and preventing duplicate transactions. This function manages token distribution on the destination chain after validation.
receiveMessage() implements multi-signature validation using primary and secondary validator signatures through ecrecover. This function ensures secure message verification before completing cross-chain transfers