Skip to content

Commit 26e1639

Browse files
committed
Update deploy config
1 parent e85528e commit 26e1639

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

contracts/prebuilts/drop/DropERC1155.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ contract DropERC1155 is
7373
uint256 private constant MAX_BPS = 10_000;
7474

7575
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
76-
uint16 private constant DEFAULT_FEE_BPS = 100;
76+
uint16 private constant DEFAULT_FEE_BPS = 50;
7777

7878
/*///////////////////////////////////////////////////////////////
7979
Mappings

contracts/prebuilts/drop/DropERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ contract DropERC20 is
5757
uint256 private constant MAX_BPS = 10_000;
5858

5959
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
60-
uint16 private constant DEFAULT_FEE_BPS = 100;
60+
uint16 private constant DEFAULT_FEE_BPS = 50;
6161

6262
/// @dev Global max total supply of tokens.
6363
uint256 public maxTotalSupply;

contracts/prebuilts/drop/DropERC721.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ contract DropERC721 is
6969
uint256 private constant MAX_BPS = 10_000;
7070

7171
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
72-
uint16 private constant DEFAULT_FEE_BPS = 100;
72+
uint16 private constant DEFAULT_FEE_BPS = 50;
7373

7474
/// @dev Global max total supply of NFTs.
7575
uint256 public maxTotalSupply;

contracts/prebuilts/loyalty/LoyaltyCard.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ contract LoyaltyCard is
7474
uint256 private constant MAX_BPS = 10_000;
7575

7676
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
77-
uint16 private constant DEFAULT_FEE_BPS = 100;
77+
uint16 private constant DEFAULT_FEE_BPS = 50;
7878

7979
/*///////////////////////////////////////////////////////////////
8080
Constructor + initializer

contracts/prebuilts/marketplace/direct-listings/DirectListingsLogic.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ contract DirectListingsLogic is IDirectListings, ReentrancyGuard, ERC2771Context
3737
uint64 private constant MAX_BPS = 10_000;
3838

3939
address private constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
40-
uint16 private constant DEFAULT_FEE_BPS = 100;
40+
uint16 private constant DEFAULT_FEE_BPS = 50;
4141

4242
/// @dev The address of the native token wrapper contract.
4343
address private immutable nativeTokenWrapper;

contracts/prebuilts/marketplace/english-auctions/EnglishAuctionsLogic.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ contract EnglishAuctionsLogic is IEnglishAuctions, ReentrancyGuard, ERC2771Conte
3939
uint64 private constant MAX_BPS = 10_000;
4040

4141
address private constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
42-
uint16 private constant DEFAULT_FEE_BPS = 100;
42+
uint16 private constant DEFAULT_FEE_BPS = 50;
4343

4444
/// @dev The address of the native token wrapper contract.
4545
address private immutable nativeTokenWrapper;

contracts/prebuilts/marketplace/offers/OffersLogic.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ contract OffersLogic is IOffers, ReentrancyGuard, ERC2771ContextConsumer {
3636
uint64 private constant MAX_BPS = 10_000;
3737

3838
address private constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
39-
uint16 private constant DEFAULT_FEE_BPS = 100;
39+
uint16 private constant DEFAULT_FEE_BPS = 50;
4040

4141
/*///////////////////////////////////////////////////////////////
4242
Modifiers

contracts/prebuilts/open-edition/OpenEditionERC721FlatFee.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ contract OpenEditionERC721FlatFee is
6565
uint256 private constant MAX_BPS = 10_000;
6666

6767
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
68-
uint16 private constant DEFAULT_FEE_BPS = 100;
68+
uint16 private constant DEFAULT_FEE_BPS = 50;
6969

7070
/*///////////////////////////////////////////////////////////////
7171
Constructor + initializer logic

contracts/prebuilts/token/TokenERC1155.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ contract TokenERC1155 is
6767
uint256 private constant VERSION = 1;
6868

6969
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
70-
uint16 private constant DEFAULT_FEE_BPS = 100;
70+
uint16 private constant DEFAULT_FEE_BPS = 50;
7171

7272
// Token name
7373
string public name;

contracts/prebuilts/token/TokenERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ contract TokenERC20 is
5858
uint256 private constant VERSION = 1;
5959

6060
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
61-
uint16 private constant DEFAULT_FEE_BPS = 100;
61+
uint16 private constant DEFAULT_FEE_BPS = 50;
6262

6363
bytes32 private constant TYPEHASH =
6464
keccak256(

contracts/prebuilts/token/TokenERC721.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ contract TokenERC721 is
7070
uint256 private constant VERSION = 1;
7171

7272
address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94;
73-
uint16 private constant DEFAULT_FEE_BPS = 100;
73+
uint16 private constant DEFAULT_FEE_BPS = 50;
7474

7575
bytes32 private constant TYPEHASH =
7676
keccak256(

0 commit comments

Comments
 (0)