@croptop/core-v6 0.0.5 → 0.0.6
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": "@croptop/core-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,17 +16,17 @@
|
|
|
16
16
|
"artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'croptop-core-v5'"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@bananapus/721-hook-v6": "^0.0.
|
|
20
|
-
"@bananapus/buyback-hook-v6": "^0.0.
|
|
21
|
-
"@bananapus/core-v6": "^0.0.
|
|
22
|
-
"@bananapus/ownable-v6": "^0.0.
|
|
23
|
-
"@bananapus/permission-ids-v6": "^0.0.
|
|
24
|
-
"@bananapus/suckers-v6": "^0.0.
|
|
25
|
-
"@bananapus/router-terminal-v6": "^0.0.
|
|
19
|
+
"@bananapus/721-hook-v6": "^0.0.7",
|
|
20
|
+
"@bananapus/buyback-hook-v6": "^0.0.4",
|
|
21
|
+
"@bananapus/core-v6": "^0.0.5",
|
|
22
|
+
"@bananapus/ownable-v6": "^0.0.4",
|
|
23
|
+
"@bananapus/permission-ids-v6": "^0.0.3",
|
|
24
|
+
"@bananapus/suckers-v6": "^0.0.4",
|
|
25
|
+
"@bananapus/router-terminal-v6": "^0.0.6",
|
|
26
26
|
"@openzeppelin/contracts": "^5.2.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@rev-net/core-v6": "^0.0.
|
|
29
|
+
"@rev-net/core-v6": "^0.0.3",
|
|
30
30
|
"@sphinx-labs/plugins": "^0.33.1"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -326,14 +326,15 @@ contract ConfigureFeeProjectScript is Script, Sphinx {
|
|
|
326
326
|
core.projects.approve(address(revnet.basic_deployer), FEE_PROJECT_ID);
|
|
327
327
|
|
|
328
328
|
// Deploy the NANA fee project.
|
|
329
|
-
revnet.basic_deployer
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
329
|
+
revnet.basic_deployer
|
|
330
|
+
.deployWith721sFor({
|
|
331
|
+
revnetId: FEE_PROJECT_ID,
|
|
332
|
+
configuration: feeProjectConfig.configuration,
|
|
333
|
+
terminalConfigurations: feeProjectConfig.terminalConfigurations,
|
|
334
|
+
suckerDeploymentConfiguration: feeProjectConfig.suckerDeploymentConfiguration,
|
|
335
|
+
tiered721HookConfiguration: feeProjectConfig.hookConfiguration,
|
|
336
|
+
allowedPosts: feeProjectConfig.allowedPosts
|
|
337
|
+
});
|
|
337
338
|
}
|
|
338
339
|
|
|
339
340
|
function _isDeployed(
|