Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix prettier issues
  • Loading branch information
drinkcoffee committed Apr 22, 2024
commit ebe21bcb35a3b7678e9c9a037e85061532bc6be2
1 change: 1 addition & 0 deletions remappings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ solidity-bytes-utils/=lib/solidity-bytes-utils/
seaport/contracts/=lib/immutable-seaport-1.5.0+im1.3/contracts/
seaport-core/=lib/immutable-seaport-core-1.5.0+im1/
seaport-types/=lib/immutable-seaport-1.5.0+im1.3/lib/seaport-types/
@axelar-gmp-sdk-solidity=lib/axelar-gmp-sdk-solidity
2 changes: 1 addition & 1 deletion test/deployer/create2/OwnableCreate2Deployer.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {ERC20MintableBurnable} from "@axelar-gmp-sdk-solidity/contracts/test/tok
import {ERC20MintableBurnableInit} from "@axelar-gmp-sdk-solidity/contracts/test/token/ERC20MintableBurnableInit.sol";
import {ContractAddress} from "@axelar-gmp-sdk-solidity/contracts/libs/ContractAddress.sol";

import {OwnableCreate2Deployer} from "../../src/create2/OwnableCreate2Deployer.sol";
import {OwnableCreate2Deployer} from "../../../contracts/deployer/create2/OwnableCreate2Deployer.sol";

contract OwnableCreate2DeployerTest is Test {
OwnableCreate2Deployer private factory;
Expand Down
4 changes: 2 additions & 2 deletions test/deployer/create3/OwnableCreate3Deployer.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import {ERC20MintableBurnable} from "@axelar-gmp-sdk-solidity/contracts/test/tok
import {ERC20MintableBurnableInit} from "@axelar-gmp-sdk-solidity/contracts/test/token/ERC20MintableBurnableInit.sol";
import {ContractAddress} from "@axelar-gmp-sdk-solidity/contracts/libs/ContractAddress.sol";

import {OwnableCreate3Deployer} from "../../src/create3/OwnableCreate3Deployer.sol";
import {OwnableCreateDeploy} from "../../src/create/OwnableCreateDeploy.sol";
import {OwnableCreate3Deployer} from "../../../contracts/deployer/create3/OwnableCreate3Deployer.sol";
import {OwnableCreateDeploy} from "../../../contracts/deployer/create/OwnableCreateDeploy.sol";

contract OwnableCreate3DeployerTest is Test {
OwnableCreate3Deployer private factory;
Expand Down