forked from ProjectOpenSea/seaport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Shim.sol
30 lines (29 loc) · 1.25 KB
/
Shim.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
/**
* @dev HardHat doesn't support multiple source folders; so import everything
* extra that reference tests rely on so they get compiled. Allows for faster
* feedback than running an extra yarn build
*/
import { EIP1271Wallet } from "contracts/test/EIP1271Wallet.sol";
import { Reenterer } from "contracts/test/Reenterer.sol";
import { TestERC20 } from "contracts/test/TestERC20.sol";
import { TestERC721 } from "contracts/test/TestERC721.sol";
import { TestERC1155 } from "contracts/test/TestERC1155.sol";
import { TestZone } from "contracts/test/TestZone.sol";
import {
PausableZoneController
} from "contracts/zones/PausableZoneController.sol";
import { TransferHelper } from "contracts/helpers/TransferHelper.sol";
import {
InvalidERC721Recipient
} from "contracts/test/InvalidERC721Recipient.sol";
import { ERC721ReceiverMock } from "contracts/test/ERC721ReceiverMock.sol";
import { TestERC20Panic } from "contracts/test/TestERC20Panic.sol";
import {
ConduitControllerMock
} from "contracts/test/ConduitControllerMock.sol";
import { ConduitMock } from "contracts/test/ConduitMock.sol";
import {
ImmutableCreate2FactoryInterface
} from "contracts/interfaces/ImmutableCreate2FactoryInterface.sol";