fuel-bridge
fuel-bridge copied to clipboard
The canonical Fuel bridge mono repo.
Currently, there is a single entrypoint that uses a static struct pointing mimicking fuel-core defined headers. As the chain progresses, headers might change, increasing its versions. To preserve the ability...
At FuelERC20GatewayV4, it is possible to pack this information: ```sol mapping(address => uint256) internal _deposits; mapping(address => uint256) internal _depositLimits; mapping(address => uint256) internal _decimalsCache; ``` Under the a structure...
Create a base asset contract for ether
Needs diagrams, drawings and graphics (see the bridge repo) https://l2beat.com/scaling/projects/arbitrum#contracts https://github.com/FuelLabs/fuel-bridge/blob/main/docs/ARCHITECTURE.md Needs a much better explanation of the entire architecture, including it’s bridging in relation to the security profile https://l2beat.com/scaling/projects/arbitrum#risk-summary...
Adding support for Permit, or Uniswap's Permit2 would improve the bridge's security and UX.
Branch to track issue https://github.com/FuelLabs/fuel-bridge/tree/deficake/issue-158 Trying to pack a payload that is not multiple of 32 bytes (like in the picture) seems to conflict with fuel-core. At `relayCommonMessage.ts`: ```ts //...