Skip to content

Commit

Permalink
update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
0age committed Mar 15, 2024
1 parent 9da776a commit 45cc20d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[profile.default]
solc = "0.8.14"
bytecode_hash = "none"
optimizer_runs = 1_000_000
optimizer_runs = 9_999_999
ignored_error_codes = [5574, 5667, 9302]
evm_version='shanghai'
evm_version='cancun'
4 changes: 2 additions & 2 deletions src/marketplaces/seaport-1.6/lib/ConsiderationTypeHashes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ contract ConsiderationTypeHashes {
bytes32 internal immutable _ORDER_TYPEHASH;
bytes32 internal immutable _DOMAIN_SEPARATOR;
address internal constant seaportAddress =
address(0x00000000000000ADc04C56Bf30aC9d3c0aAF14dC);
address(0x0000000000000068F116a894984e2DB1123eB395);

constructor() {
// Derive hash of the name of the contract.
_NAME_HASH = keccak256(bytes("Seaport"));

// Derive hash of the version string of the contract.
_VERSION_HASH = keccak256(bytes("1.5"));
_VERSION_HASH = keccak256(bytes("1.6"));

bytes memory offerItemTypeString = abi.encodePacked(
"OfferItem(",
Expand Down

0 comments on commit 45cc20d

Please sign in to comment.