-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from ProjectOpenSea/1.6
update to support v1.6
- Loading branch information
Showing
47 changed files
with
4,067 additions
and
4,067 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
[profile.default] | ||
solc = "0.8.24" | ||
evm_version = "cancun" | ||
src = "src" | ||
out = "out" | ||
libs = ["lib", "node_modules"] | ||
remappings = [ | ||
'seaport-types/=lib/seaport-types/', | ||
'seaport-core/=lib/seaport-core/', | ||
'solady/=lib/solady/', | ||
"seaport-types/=lib/seaport-types/", | ||
"seaport-core/=lib/seaport-core/", | ||
"solady/=lib/solady/", | ||
] | ||
|
||
# See more config options https://github.com/foundry-rs/foundry/tree/master/config | ||
[fmt] | ||
line_length = 80 | ||
tab_width = 4 | ||
bracket_spacing = true |
Submodule seaport-core
updated
30 files
Submodule seaport-types
updated
9 files
+1 −1 | package.json | |
+1,610 −976 | src/helpers/PointerLibraries.sol | |
+28 −26 | src/interfaces/ConsiderationInterface.sol | |
+18 −0 | src/interfaces/ReentrancyErrors.sol | |
+28 −26 | src/interfaces/SeaportInterface.sol | |
+28 −6 | src/interfaces/ZoneInterface.sol | |
+149 −133 | src/lib/ConsiderationConstants.sol | |
+1 −3 | src/lib/ConsiderationErrorConstants.sol | |
+5 −119 | src/lib/ConsiderationErrors.sol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.17; | ||
|
||
import {ConduitControllerInterface} from "seaport-types/src/interfaces/ConduitControllerInterface.sol"; | ||
import { ConduitControllerInterface } from | ||
"seaport-types/src/interfaces/ConduitControllerInterface.sol"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.17; | ||
|
||
import {ConduitInterface} from "seaport-types/src/interfaces/ConduitInterface.sol"; | ||
import { ConduitInterface } from | ||
"seaport-types/src/interfaces/ConduitInterface.sol"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.17; | ||
|
||
import {ContractOffererInterface} from "seaport-types/src/interfaces/ContractOffererInterface.sol"; | ||
import { ContractOffererInterface } from | ||
"seaport-types/src/interfaces/ContractOffererInterface.sol"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.17; | ||
|
||
import {ConsiderationInterface as SeaportInterface} from "seaport-types/src/interfaces/ConsiderationInterface.sol"; | ||
import { ConsiderationInterface as SeaportInterface } from | ||
"seaport-types/src/interfaces/ConsiderationInterface.sol"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.