Skip to content

Commit

Permalink
inherit MulticallTarget to FastBridge V1
Browse files Browse the repository at this point in the history
  • Loading branch information
parodime committed Oct 9, 2024
1 parent 847600b commit 36e4abc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/contracts-rfq/contracts/FastBridge.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ import {UniversalTokenLib} from "./libs/UniversalToken.sol";
import {Admin} from "./Admin.sol";
import {IFastBridge} from "./interfaces/IFastBridge.sol";

contract FastBridge is IFastBridge, Admin {
import {MulticallTarget} from "./utils/MulticallTarget.sol";

contract FastBridge is IFastBridge, MulticallTarget, Admin {
using SafeERC20 for IERC20;
using UniversalTokenLib for address;

Expand Down

0 comments on commit 36e4abc

Please sign in to comment.