|
| 1 | +// SPDX-License-Identifier: MIT |
| 2 | + |
| 3 | +pragma solidity ^0.8.20; |
| 4 | + |
| 5 | +// We keep these imports and a dummy contract just to we can run the test suite after transpilation. |
| 6 | + |
| 7 | +import {Address} from "../utils/Address.sol"; |
| 8 | +import {Arrays} from "../utils/Arrays.sol"; |
| 9 | +import {AuthorityUtils} from "../access/manager/AuthorityUtils.sol"; |
| 10 | +import {Base64} from "../utils/Base64.sol"; |
| 11 | +import {BitMaps} from "../utils/structs/BitMaps.sol"; |
| 12 | +import {Checkpoints} from "../utils/structs/Checkpoints.sol"; |
| 13 | +import {Clones} from "../proxy/Clones.sol"; |
| 14 | +import {Create2} from "../utils/Create2.sol"; |
| 15 | +import {DoubleEndedQueue} from "../utils/structs/DoubleEndedQueue.sol"; |
| 16 | +import {ECDSA} from "../utils/cryptography/ECDSA.sol"; |
| 17 | +import {EnumerableMap} from "../utils/structs/EnumerableMap.sol"; |
| 18 | +import {EnumerableSet} from "../utils/structs/EnumerableSet.sol"; |
| 19 | +import {ERC1155Holder} from "../token/ERC1155/utils/ERC1155Holder.sol"; |
| 20 | +import {ERC165} from "../utils/introspection/ERC165.sol"; |
| 21 | +import {ERC165Checker} from "../utils/introspection/ERC165Checker.sol"; |
| 22 | +import {ERC1967Utils} from "../proxy/ERC1967/ERC1967Utils.sol"; |
| 23 | +import {ERC721Holder} from "../token/ERC721/utils/ERC721Holder.sol"; |
| 24 | +import {Math} from "../utils/math/Math.sol"; |
| 25 | +import {MerkleProof} from "../utils/cryptography/MerkleProof.sol"; |
| 26 | +import {MessageHashUtils} from "../utils/cryptography/MessageHashUtils.sol"; |
| 27 | +import {SafeCast} from "../utils/math/SafeCast.sol"; |
| 28 | +import {SafeERC20} from "../token/ERC20/utils/SafeERC20.sol"; |
| 29 | +import {ShortStrings} from "../utils/ShortStrings.sol"; |
| 30 | +import {SignatureChecker} from "../utils/cryptography/SignatureChecker.sol"; |
| 31 | +import {SignedMath} from "../utils/math/SignedMath.sol"; |
| 32 | +import {StorageSlot} from "../utils/StorageSlot.sol"; |
| 33 | +import {Strings} from "../utils/Strings.sol"; |
| 34 | +import {Time} from "../utils/types/Time.sol"; |
| 35 | + |
| 36 | +contract Dummy1234 {} |
0 commit comments