Cross-Chain Bridges
Learn to support multi-chain dApp use cases with cross-chain bridges.
Token Transfers with cBridge
/**
* @dev transfer sets up a new outbound transfer with hash time lock.
*/
function transferOut(
address _bridge,
address _token,
uint256 _amount,
bytes32 _hashlock,
uint64 _timelock,
uint64 _dstChainId,
address _dstAddress
) external {
bytes32 transferId = _transfer(_bridge, _token, _amount, _hashlock, _timelock);
emit LogNewTransferOut(
transferId,
msg.sender,
_bridge,
_token,
_amount,
_hashlock,
_timelock,
_dstChainId,
_dstAddress
);
}
Name
Mainnet
Calibration
Interchain Messaging
Name
Mainnet
Calibration
A note on Finality with Celer
Last updated