@bannynet/core-v6 0.0.13 → 0.0.14
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bannynet/core-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
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.
|
|
23
|
+
"@bananapus/721-hook-v6": "^0.0.22",
|
|
24
|
+
"@bananapus/core-v6": "^0.0.28",
|
|
25
25
|
"@bananapus/permission-ids-v6": "^0.0.14",
|
|
26
|
-
"@bananapus/router-terminal-v6": "^0.0.
|
|
27
|
-
"@bananapus/suckers-v6": "^0.0.
|
|
28
|
-
"@croptop/core-v6": "^0.0.
|
|
26
|
+
"@bananapus/router-terminal-v6": "^0.0.21",
|
|
27
|
+
"@bananapus/suckers-v6": "^0.0.18",
|
|
28
|
+
"@croptop/core-v6": "^0.0.23",
|
|
29
29
|
"@openzeppelin/contracts": "^5.6.1",
|
|
30
|
-
"@rev-net/core-v6": "^0.0.
|
|
30
|
+
"@rev-net/core-v6": "^0.0.18",
|
|
31
31
|
"keccak": "^3.0.4"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
package/script/Deploy.s.sol
CHANGED
|
@@ -345,7 +345,6 @@ contract DeployScript is Script, Sphinx {
|
|
|
345
345
|
// address.
|
|
346
346
|
contractUri: "https://jbm.infura-ipfs.io/ipfs/Qmd2hgb1E4caEB51VvoC3GvonhwkCoVyXjJ3zqsCxHPTKK",
|
|
347
347
|
tiersConfig: JB721InitTiersConfig({tiers: tiers, currency: ETH_CURRENCY, decimals: DECIMALS}),
|
|
348
|
-
reserveBeneficiary: address(0),
|
|
349
348
|
flags: REV721TiersHookFlags({
|
|
350
349
|
noNewTiersWithReserves: false,
|
|
351
350
|
noNewTiersWithVotes: false,
|
package/test/Fork.t.sol
CHANGED
|
@@ -1903,7 +1903,6 @@ contract BannyForkTest is Test {
|
|
|
1903
1903
|
tokenUriResolver: IJB721TokenUriResolver(address(resolver)),
|
|
1904
1904
|
contractUri: "",
|
|
1905
1905
|
tiersConfig: JB721InitTiersConfig({tiers: tiers, currency: JBCurrencyIds.ETH, decimals: 18}),
|
|
1906
|
-
reserveBeneficiary: address(0),
|
|
1907
1906
|
flags: JB721TiersHookFlags({
|
|
1908
1907
|
noNewTiersWithReserves: false,
|
|
1909
1908
|
noNewTiersWithVotes: false,
|
|
@@ -84,6 +84,7 @@ contract ExclusivityMockStore {
|
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
/// @dev Returns a zero IPFS URI (unused in these tests).
|
|
87
|
+
// forge-lint: disable-next-line(mixed-case-function)
|
|
87
88
|
function encodedIPFSUriOf(address, uint256) external pure returns (bytes32) {
|
|
88
89
|
return bytes32(0);
|
|
89
90
|
}
|