Skip to content

Update deploy config #687

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion contracts/prebuilts/drop/DropERC1155.sol
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ contract DropERC1155 is
uint256 private constant MAX_BPS = 10_000;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/*///////////////////////////////////////////////////////////////
Mappings
Expand Down
2 changes: 1 addition & 1 deletion contracts/prebuilts/drop/DropERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ contract DropERC20 is
uint256 private constant MAX_BPS = 10_000;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/// @dev Global max total supply of tokens.
uint256 public maxTotalSupply;
Expand Down
2 changes: 1 addition & 1 deletion contracts/prebuilts/drop/DropERC721.sol
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ contract DropERC721 is
uint256 private constant MAX_BPS = 10_000;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/// @dev Global max total supply of NFTs.
uint256 public maxTotalSupply;
Expand Down
2 changes: 1 addition & 1 deletion contracts/prebuilts/loyalty/LoyaltyCard.sol
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ contract LoyaltyCard is
uint256 private constant MAX_BPS = 10_000;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/*///////////////////////////////////////////////////////////////
Constructor + initializer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ contract DirectListingsLogic is IDirectListings, ReentrancyGuard, ERC2771Context
uint64 private constant MAX_BPS = 10_000;

address private constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/// @dev The address of the native token wrapper contract.
address private immutable nativeTokenWrapper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract EnglishAuctionsLogic is IEnglishAuctions, ReentrancyGuard, ERC2771Conte
uint64 private constant MAX_BPS = 10_000;

address private constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/// @dev The address of the native token wrapper contract.
address private immutable nativeTokenWrapper;
Expand Down
2 changes: 1 addition & 1 deletion contracts/prebuilts/marketplace/offers/OffersLogic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ contract OffersLogic is IOffers, ReentrancyGuard, ERC2771ContextConsumer {
uint64 private constant MAX_BPS = 10_000;

address private constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/*///////////////////////////////////////////////////////////////
Modifiers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ contract OpenEditionERC721FlatFee is
uint256 private constant MAX_BPS = 10_000;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

/*///////////////////////////////////////////////////////////////
Constructor + initializer logic
Expand Down
2 changes: 1 addition & 1 deletion contracts/prebuilts/token/TokenERC1155.sol
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ contract TokenERC1155 is
uint256 private constant VERSION = 1;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

// Token name
string public name;
Expand Down
2 changes: 1 addition & 1 deletion contracts/prebuilts/token/TokenERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ contract TokenERC20 is
uint256 private constant VERSION = 1;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

bytes32 private constant TYPEHASH =
keccak256(
Expand Down
2 changes: 1 addition & 1 deletion contracts/prebuilts/token/TokenERC721.sol
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ contract TokenERC721 is
uint256 private constant VERSION = 1;

address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
uint16 private constant DEFAULT_FEE_BPS = 100;
uint16 private constant DEFAULT_FEE_BPS = 50;

bytes32 private constant TYPEHASH =
keccak256(
Expand Down