Bridging Assets
Introduction
To bridge tokens from Chain A to Chain B, an Asset Controller contract must be deployed on both chains.
To successfully bridge tokens from a controller on a source chain, ensure that:
The selected bridge adapter is whitelisted by an admin.
The adapter has sufficient mint/burn limits (unless bridging without limits).
The following sections describe how to manually bridge tokens by interacting directly with the smart contracts. This is intended for advanced users. It is recommended to use the Lucid App to bridge tokens or to construct/export transactions for execution via Safe, Snapshot’s oSnap module, or a Governor proposal.
Bridging Tokens
Using mint/burn limits - Single Bridge
To bridge tokens using a single whitelisted bridge adapter (with mint/burn limits), call the following function on the source chain:
burnAndBridge
Burns tokens on the source chain
Sends a mint message to the destination chain via the selected bridge adapter
msg.value
must contain the bridge adapter feeThe token allowance must be approved prior to calling this function
recipient
address
The address of the recipient. Could be the same as msg.sender.
amount
uint256
The amount of the asset to mint.
unwrap
bool
Whether to unwrap the native asset using the lockbox. Lockbox must be set in the destination chain, holding enough liquidity
destChainId
uint256
The destination chain ID.
bridgeAdapter
address
The address of the bridge adapter.
bridgeOptions
bytes
Additional params to be used by the adapter.
If the selected bridge adapter is not whitelisted, or if it does not have sufficient burn limits, the transaction will revert. Any account holding the token managed by the Asset Controller can initiate a transfer.
The following event is emitted after a transfer has been sent:
The transferId
can be used to:
Resend the transfer using another adapter
Track delivery status on the destination chain
resendTransfer
If a bridge fails to deliver a transfer to the destination chain, anyone can call resendTransfer
, specifying the transferId
and a different whitelisted adapter.
No new tokens will be burned
The original bridge message is resent using the new adapter
The burn amount is deducted from the new adapter’s burn limit
The function is payable, and
msg.value
must contain the new adapter’s fee
transferId
bytes32
The unique identifier of the message.
adapters
address
The address of the bridge adapter.
options
bytes[]
Additional abi-encoded options that are passed to the bridge adapter, specific for the bridge adapter.
Without mint/burn limits - Multiple Bridges
For transfers that exceed a single adapter’s limit, you can use multiple bridge adapters without limits by calling burnAndBridgeMulti()
This function:
Burns tokens on the source chain
Sends the mint message through multiple whitelisted adapters
Requires the addresses of adapters that have been pre-approved for use without limits
msg.value
must include any multi-bridge feesThe token allowance must be set before calling this function.
To determine:
The minimum number of adapters required for minting:
To determine whether a specific adapter is approved for unlimited bridging:
To send a transfer, call the following function:
recipient
address
The address of the recipient. Could be the same as msg.sender.
amount
uint256
The amount of the asset to mint.
unwrap
bool
Whether to unwrap the native asset using the lockbox. Lockbox must be set in the destination chain, holding enough liquidity
destChainId
uint256
The destination chain ID.
adapters
address[]
The address of the bridge adapter.
fees
bytes[]
The fees to be paid to the bridge adapters.
bridgeOptions
bytes[]
Additional params to be used by the adapter.
A token allowance must be given before calling this function, which should include the multi-bridge fee, if any.
If the bridgeAdapter
that was selected is not whitelisted, or the burn limits are not enough, then the transaction will revert.
resendTransferMulti
If delivery fails in a multi-bridge setup, the transfer can be resent using another whitelisted adapter by calling resendTransferMulti()
.
Works similarly to
resendTransfer
No additional tokens are burned
The message is simply resent using the new adapter
transferId
bytes32
The unique identifier of the message.
adapters
address[]
The address of the bridge adapter.
fees
uint256[]
The fees to be paid to the bridge adapters.
options
bytes[]
Additional abi-encoded options that are passed to the bridge adapter, specific for the bridge adapter.
Multi-Bridge fee
When bridging without mint/burn limits using multiple adapters, a fixed 0.3% fee is applied to the token amount being transferred.
To get a fee quote, call the following function on the FeeCollector contract (on the source chain), passing the transfer amount.
Token Minting
Once the message is delivered to the destination Asset Controller by the bridge adapters, the transfer must be executed.
Lucid will automatically execute the transfer once it becomes eligible. However, anyone can manually execute it by calling the following function and passing the transfer ID:
This function can be called by any account.
Last updated