@ballkidz/defifa 0.0.14 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/src/DefifaDeployer.sol +1 -0
- package/src/DefifaHook.sol +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ballkidz/defifa",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0"
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"url": "https://github.com/BallKidz/defifa-collection-deployer"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@bananapus/721-hook-v6": "^0.0.
|
|
16
|
+
"@bananapus/721-hook-v6": "^0.0.26",
|
|
17
17
|
"@bananapus/address-registry-v6": "^0.0.16",
|
|
18
|
-
"@bananapus/core-v6": "^0.0.
|
|
19
|
-
"@bananapus/permission-ids-v6": "^0.0.
|
|
20
|
-
"@croptop/core-v6": "^0.0.
|
|
18
|
+
"@bananapus/core-v6": "^0.0.30",
|
|
19
|
+
"@bananapus/permission-ids-v6": "^0.0.15",
|
|
20
|
+
"@croptop/core-v6": "^0.0.26",
|
|
21
21
|
"@openzeppelin/contracts": "^5.6.1",
|
|
22
22
|
"@prb/math": "^4.1.1",
|
|
23
|
-
"@rev-net/core-v6": "^0.0.
|
|
23
|
+
"@rev-net/core-v6": "^0.0.24",
|
|
24
24
|
"scripty.sol": "^2.1.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
package/src/DefifaDeployer.sol
CHANGED
|
@@ -476,6 +476,7 @@ contract DefifaDeployer is IDefifaDeployer, IDefifaGamePhaseReporter, IDefifaGam
|
|
|
476
476
|
useVotingUnits: false,
|
|
477
477
|
cannotBeRemoved: true,
|
|
478
478
|
cannotIncreaseDiscountPercent: true,
|
|
479
|
+
cantBuyWithCredits: false,
|
|
479
480
|
splitPercent: 0,
|
|
480
481
|
splits: new JBSplit[](0)
|
|
481
482
|
});
|
package/src/DefifaHook.sol
CHANGED
|
@@ -880,7 +880,7 @@ contract DefifaHook is JB721Hook, Ownable, IDefifaHook {
|
|
|
880
880
|
|
|
881
881
|
// Record the mint. The returned token IDs correspond to the tiers passed in.
|
|
882
882
|
// slither-disable-next-line reentrancy-benign
|
|
883
|
-
(tokenIds, leftoverAmount) = store.recordMint({
|
|
883
|
+
(tokenIds, leftoverAmount,) = store.recordMint({
|
|
884
884
|
amount: amount,
|
|
885
885
|
tierIds: mintTierIds,
|
|
886
886
|
isOwnerMint: false // Not a manual mint
|