@bananapus/omnichain-deployers-v6 0.0.49 → 0.0.51
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": "@bananapus/omnichain-deployers-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.51",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,16 +24,16 @@
|
|
|
24
24
|
"artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'nana-omnichain-deployers-v6'"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@bananapus/721-hook-v6": "^0.0.
|
|
28
|
-
"@bananapus/core-v6": "^0.0.
|
|
29
|
-
"@bananapus/ownable-v6": "^0.0.
|
|
27
|
+
"@bananapus/721-hook-v6": "^0.0.57",
|
|
28
|
+
"@bananapus/core-v6": "^0.0.68",
|
|
29
|
+
"@bananapus/ownable-v6": "^0.0.31",
|
|
30
30
|
"@bananapus/permission-ids-v6": "^0.0.27",
|
|
31
|
-
"@bananapus/suckers-v6": "^0.0.
|
|
31
|
+
"@bananapus/suckers-v6": "^0.0.58",
|
|
32
32
|
"@openzeppelin/contracts": "5.6.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@bananapus/address-registry-v6": "^0.0.
|
|
36
|
-
"@bananapus/buyback-hook-v6": "^0.0.
|
|
35
|
+
"@bananapus/address-registry-v6": "^0.0.28",
|
|
36
|
+
"@bananapus/buyback-hook-v6": "^0.0.55",
|
|
37
37
|
"@sphinx-labs/plugins": "0.33.3",
|
|
38
38
|
"@uniswap/v4-core": "1.0.2"
|
|
39
39
|
}
|
|
@@ -215,6 +215,7 @@ contract JBOmnichainDeployer is
|
|
|
215
215
|
JBSuckerDeploymentConfig calldata suckerDeploymentConfiguration
|
|
216
216
|
)
|
|
217
217
|
external
|
|
218
|
+
payable
|
|
218
219
|
override
|
|
219
220
|
returns (uint256 projectId, IJB721TiersHook hook, address[] memory suckers)
|
|
220
221
|
{
|
|
@@ -249,6 +250,7 @@ contract JBOmnichainDeployer is
|
|
|
249
250
|
JBSuckerDeploymentConfig calldata suckerDeploymentConfiguration
|
|
250
251
|
)
|
|
251
252
|
external
|
|
253
|
+
payable
|
|
252
254
|
override
|
|
253
255
|
returns (uint256 projectId, IJB721TiersHook hook, address[] memory suckers)
|
|
254
256
|
{
|
|
@@ -779,7 +781,7 @@ contract JBOmnichainDeployer is
|
|
|
779
781
|
returns (uint256 projectId, IJB721TiersHook hook, address[] memory suckers)
|
|
780
782
|
{
|
|
781
783
|
// Reserve the project ID up front so permissionless project creations cannot invalidate hook deployment.
|
|
782
|
-
projectId = PROJECTS.createFor(address(this));
|
|
784
|
+
projectId = PROJECTS.createFor{value: msg.value}(address(this));
|
|
783
785
|
|
|
784
786
|
// A fresh project can start without a controller, but it must not already be assigned elsewhere.
|
|
785
787
|
_requireController({projectId: projectId, allowUnset: true});
|
|
@@ -77,6 +77,7 @@ interface IJBOmnichainDeployer {
|
|
|
77
77
|
JBSuckerDeploymentConfig calldata suckerDeploymentConfiguration
|
|
78
78
|
)
|
|
79
79
|
external
|
|
80
|
+
payable
|
|
80
81
|
returns (uint256 projectId, IJB721TiersHook hook, address[] memory suckers);
|
|
81
82
|
|
|
82
83
|
/// @notice Creates a project with a default (empty-tier) 721 hook and with suckers.
|
|
@@ -98,6 +99,7 @@ interface IJBOmnichainDeployer {
|
|
|
98
99
|
JBSuckerDeploymentConfig calldata suckerDeploymentConfiguration
|
|
99
100
|
)
|
|
100
101
|
external
|
|
102
|
+
payable
|
|
101
103
|
returns (uint256 projectId, IJB721TiersHook hook, address[] memory suckers);
|
|
102
104
|
|
|
103
105
|
/// @notice Launches new rulesets for a project with a 721 tiers hook attached.
|