Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 0 additions & 13 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/solidity-bits"]
path = lib/solidity-bits
url = https://github.com/estarriolvetch/solidity-bits
[submodule "lib/solidity-bytes-utils"]
path = lib/solidity-bytes-utils
url = https://github.com/GNSPS/solidity-bytes-utils
Expand All @@ -26,13 +23,3 @@
path = lib/axelar-gmp-sdk-solidity
url = https://github.com/axelarnetwork/axelar-gmp-sdk-solidity

[submodule "lib/immutable-seaport-core-1.6.0+im2"]
path = lib/immutable-seaport-core-1.6.0+im2
url = https://github.com/immutable/seaport-core

[submodule "lib/immutable-seaport-1.6.0+im4"]
path = lib/immutable-seaport-1.6.0+im4
url = https://github.com/immutable/seaport
[submodule "lib/creator-token-standards"]
path = lib/creator-token-standards
url = https://github.com/limitbreakinc/creator-token-standards
18 changes: 0 additions & 18 deletions contracts/access/IERC173.sol

This file was deleted.

2 changes: 1 addition & 1 deletion contracts/allowlist/OperatorAllowlistEnforced.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity >=0.8.19 <0.8.29;

import {IOperatorAllowlist} from "./IOperatorAllowlist.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import {OperatorAllowlistEnforcementErrors} from "../errors/Errors.sol";
import {OperatorAllowlistEnforcementErrors} from "./OperatorAllowlistEnforcementErrors.sol";

// Disable this code size warning as there is no plan to change this logic.
// forge-lint: disable-start(unwrapped-modifier-logic)
Expand Down
22 changes: 22 additions & 0 deletions contracts/allowlist/OperatorAllowlistEnforcementErrors.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//SPDX-License-Identifier: Apache 2.0
pragma solidity >=0.8.19 <0.8.29;

interface OperatorAllowlistEnforcementErrors {
/// @dev Error thrown when the operatorAllowlist address does not implement the IOperatorAllowlist interface
error AllowlistDoesNotImplementIOperatorAllowlist();

/// @dev Error thrown when calling address is not OperatorAllowlist
error CallerNotInAllowlist(address caller);

/// @dev Error thrown when 'from' address is not OperatorAllowlist
error TransferFromNotInAllowlist(address from);

/// @dev Error thrown when 'to' address is not OperatorAllowlist
error TransferToNotInAllowlist(address to);

/// @dev Error thrown when approve target is not OperatorAllowlist
error ApproveTargetNotInAllowlist(address target);

/// @dev Error thrown when approve target is not OperatorAllowlist
error ApproverNotInAllowlist(address approver);
}
51 changes: 0 additions & 51 deletions contracts/deployer/create2/OwnableCreate2Deployer.sol

This file was deleted.

59 changes: 0 additions & 59 deletions contracts/errors/Errors.sol

This file was deleted.

61 changes: 0 additions & 61 deletions contracts/games/gems/GemGame.sol

This file was deleted.

35 changes: 0 additions & 35 deletions contracts/games/gems/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion contracts/payment-splitter/PaymentSplitter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity >=0.8.19 <0.8.29;
import {SafeERC20, IERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {AccessControlEnumerable} from "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import {IPaymentSplitterErrors} from "../errors/PaymentSplitterErrors.sol";
import {IPaymentSplitterErrors} from "./PaymentSplitterErrors.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";

/**
Expand Down
73 changes: 0 additions & 73 deletions contracts/staking/StakeHolderERC20.sol

This file was deleted.

Loading