Asset Bridging
The AssetController
enables cross-chain asset transfers by minting and burning tokens like xERC20
on different chains. It uses a flexible and bridge-agnostic architecture powered by Adapters, allowing transfers through one or multiple bridge systems. These controllers contracts are deployed and controlled exclusively by the Project, and Lucid has no control over them. An AssetController
can only bridge one token in a chain. Asset Controller contracts are deployed from the Lucid App using a Create3 factory, meaning they have the same addresses in all the chains they have been deployed.
Projects can deploy their own AssetController
contracts on any supported chain that an xERC20 token exists. The protocol supports multi-bridge relay validation, custom thresholds, resend mechanisms, pause controls, and role-based permissions. AssetController
contacts deployed via the Lucid App
The AssetController enables cross-chain asset transfers by minting and burning tokens such as xERC20 across different chains. It follows a flexible, bridge-agnostic architecture powered by Adapters, allowing assets to be transferred using one or multiple bridge systems.
These contracts are deployed and controlled exclusively by the project — Lucid has no control over them. An AssetController can only bridge one token per chain.
Asset Controllers are deployed from the Lucid App using a Create3 factory, which ensures that they have the same address on every chain where they are deployed.
Projects can deploy their own AssetController contracts on any supported chain where an xERC20 token exists. The protocol supports multi-bridge relay validation, configurable thresholds, resend mechanisms, pause controls, and role-based permissions.
Key Features
Token Management
AssetControllers manage the minting and burning of a specified token across chains using one or multiple bridge adapters. Only xERC20 tokens, or other ERC20 tokens that delegate mint and burn rights to the controller, are supported. Full conformance with the xERC20 standard is not required.
Cross-Chain Transfer Flow
An AssetController burns the token on the source chain, sends a "mint" message via selected bridge adapters, and mints the equivalent amount to the user on the destination chain.
Bridge-Agnostic Architecture
Supports multiple bridge systems through pluggable adapter contracts, allowing flexibility and extensibility as new bridges are added.
Resend Mechanism
If a transfer fails due to a bridge issue, it can be resent through alternate whitelisted adapters without the risk of duplicate execution or asset loss.
Bridge Adapter Limits
Each bridge adapter used for minting is subject to a configurable 24-hour mint and burn limit, allowing for fine-grained control and added safety.
Higher Limits with Multiple Bridges
Large transfers that exceed a single bridge’s limit can be handled by using multiple approved bridges. Minting only occurs when a minimum number of adapters confirm delivery, improving throughput and resilience.
Replay Protection
Every transfer is uniquely identified and tracked to prevent duplicate minting or re-execution.
Token Unwrapping on Destination
When paired with an xERC20 lockbox, transfers can be configured to unwrap the token on the destination chain and deliver the original asset to the recipient.
Existing tokens
An AssetController can be used to bridge:
Existing xERC20 tokens
Other ERC20 tokens that can assign mint and burn rights to the controller
The controller will check for the following interfaces:
or
or
If the token conforms to ERC7802, it must expose and support mint/burn interfaces such as:
If you're using xERC20 or ERC7802 tokens, the token contract owner must grant sufficient mint/burn limits to the AssetController on each chain where the controller is deployed. These limits should match the sum of all 24-hour limits from whitelisted bridge adapters — to ensure successful minting on transfers.
Roles and Permissions
Asset Controllers use a role-based access control system to ensure that only authorized accounts can perform sensitive operations.
Admin Role (DEFAULT_ADMIN_ROLE)
This is the highest authority in the contract. Accounts with this role can:
Grant or revoke the Pause Role
Whitelist bridge adapters and set their 24-hour mint/burn limits
Set the minimum number of bridges required for unrestricted transfers
Whitelist bridge adapters for unrestricted bridging
Set the addresses of AssetController contracts on other chains
For detailed instructions on calling each function, please refer to the relevant function documentation: Admin Functions
Pause Role (PAUSE_ROLE)
Accounts with this role can:
Pause or unpause the contract. Pausing stops message sending, resending, and execution.
Last updated