Skip to content

Commit

Permalink
restructure solidity/ dir
Browse files Browse the repository at this point in the history
  • Loading branch information
sisyphusSmiling committed Apr 26, 2024
1 parent 2eb62ef commit 52b5431
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions solidity/src/FlowBridgeFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./FlowBridgedERC721.sol";
import "./FlowBridgedERC20.sol";
import "./IBridgePermissions.sol";
import "./templates/FlowBridgedERC721.sol";
import "./templates/FlowBridgedERC20.sol";
import "./interfaces/IBridgePermissions.sol";

contract FlowBridgeFactory is Ownable {
mapping(string => address) public flowIdentifierToContract;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions solidity/test/FlowBridgeFactory.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pragma solidity ^0.8.17;
import {Test} from "forge-std/Test.sol";

import {FlowBridgeFactory} from "../src/FlowBridgeFactory.sol";
import {FlowBridgedERC721} from "../src/FlowBridgedERC721.sol";
import {FlowBridgedERC20} from "../src/FlowBridgedERC20.sol";
import {FlowBridgedERC721} from "../src/templates/FlowBridgedERC721.sol";
import {FlowBridgedERC20} from "../src/templates/FlowBridgedERC20.sol";

contract FlowBridgeFactoryTest is Test {
FlowBridgeFactory internal factory;
Expand Down

0 comments on commit 52b5431

Please sign in to comment.