@bannynet/core-v6 0.0.21 → 0.0.22
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 +7 -7
- package/test/Fork.t.sol +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bannynet/core-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'banny-core-v6'"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@bananapus/721-hook-v6": "^0.0.
|
|
24
|
-
"@bananapus/core-v6": "^0.0.
|
|
25
|
-
"@bananapus/permission-ids-v6": "^0.0.
|
|
23
|
+
"@bananapus/721-hook-v6": "^0.0.35",
|
|
24
|
+
"@bananapus/core-v6": "^0.0.34",
|
|
25
|
+
"@bananapus/permission-ids-v6": "^0.0.17",
|
|
26
26
|
"@bananapus/router-terminal-v6": "^0.0.26",
|
|
27
|
-
"@bananapus/suckers-v6": "^0.0.
|
|
28
|
-
"@croptop/core-v6": "^0.0.
|
|
27
|
+
"@bananapus/suckers-v6": "^0.0.25",
|
|
28
|
+
"@croptop/core-v6": "^0.0.33",
|
|
29
29
|
"@openzeppelin/contracts": "^5.6.1",
|
|
30
|
-
"@rev-net/core-v6": "^0.0.
|
|
30
|
+
"@rev-net/core-v6": "^0.0.32",
|
|
31
31
|
"keccak": "^3.0.4"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
package/test/Fork.t.sol
CHANGED
|
@@ -19,6 +19,7 @@ import {JBFundAccessLimits} from "@bananapus/core-v6/src/JBFundAccessLimits.sol"
|
|
|
19
19
|
import {JB721TiersHookStore} from "@bananapus/721-hook-v6/src/JB721TiersHookStore.sol";
|
|
20
20
|
import {JB721TiersHook} from "@bananapus/721-hook-v6/src/JB721TiersHook.sol";
|
|
21
21
|
import {JB721TiersHookDeployer} from "@bananapus/721-hook-v6/src/JB721TiersHookDeployer.sol";
|
|
22
|
+
import {JB721CheckpointsDeployer} from "@bananapus/721-hook-v6/src/JB721CheckpointsDeployer.sol";
|
|
22
23
|
import {JBAddressRegistry} from "@bananapus/address-registry-v6/src/JBAddressRegistry.sol";
|
|
23
24
|
import {IJB721TiersHook} from "@bananapus/721-hook-v6/src/interfaces/IJB721TiersHook.sol";
|
|
24
25
|
import {JB721TierConfig} from "@bananapus/721-hook-v6/src/structs/JB721TierConfig.sol";
|
|
@@ -1805,7 +1806,7 @@ contract BannyForkTest is Test {
|
|
|
1805
1806
|
jbPermissions = new JBPermissions(trustedForwarder);
|
|
1806
1807
|
jbProjects = new JBProjects(multisig, address(0), trustedForwarder);
|
|
1807
1808
|
jbDirectory = new JBDirectory(jbPermissions, jbProjects, multisig);
|
|
1808
|
-
JBERC20 jbErc20 = new JBERC20();
|
|
1809
|
+
JBERC20 jbErc20 = new JBERC20(jbPermissions, jbProjects);
|
|
1809
1810
|
jbTokens = new JBTokens(jbDirectory, jbErc20);
|
|
1810
1811
|
jbRulesets = new JBRulesets(jbDirectory);
|
|
1811
1812
|
jbPrices = new JBPrices(jbDirectory, jbPermissions, jbProjects, multisig, trustedForwarder);
|
|
@@ -1832,9 +1833,11 @@ contract BannyForkTest is Test {
|
|
|
1832
1833
|
function _deploy721Hook() internal {
|
|
1833
1834
|
JB721TiersHookStore store = new JB721TiersHookStore();
|
|
1834
1835
|
JBAddressRegistry addressRegistry = new JBAddressRegistry();
|
|
1836
|
+
JB721CheckpointsDeployer checkpointsDeployer = new JB721CheckpointsDeployer();
|
|
1835
1837
|
|
|
1836
|
-
JB721TiersHook hookImpl =
|
|
1837
|
-
|
|
1838
|
+
JB721TiersHook hookImpl = new JB721TiersHook(
|
|
1839
|
+
jbDirectory, jbPermissions, jbPrices, jbRulesets, store, jbSplits, checkpointsDeployer, trustedForwarder
|
|
1840
|
+
);
|
|
1838
1841
|
|
|
1839
1842
|
hookDeployer = new JB721TiersHookDeployer(hookImpl, store, addressRegistry, trustedForwarder);
|
|
1840
1843
|
}
|