@bananapus/omnichain-deployers-v6 0.0.35 → 0.0.37
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.37",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"src/"
|
|
17
17
|
],
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": "
|
|
19
|
+
"node": "25.9.0"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"test": "forge test",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@bananapus/core-v6": "0.0.39",
|
|
31
31
|
"@bananapus/ownable-v6": "0.0.24",
|
|
32
32
|
"@bananapus/permission-ids-v6": "0.0.22",
|
|
33
|
-
"@bananapus/suckers-v6": "0.0.
|
|
33
|
+
"@bananapus/suckers-v6": "0.0.34",
|
|
34
34
|
"@openzeppelin/contracts": "5.6.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
@@ -526,8 +526,8 @@ contract JBOmnichainDeployer is
|
|
|
526
526
|
/// @param context Standard Juicebox payment context. See `JBBeforePayRecordedContext`.
|
|
527
527
|
/// @return weight The weight which project tokens are minted relative to. This can be used to customize how many
|
|
528
528
|
/// tokens get minted by a payment.
|
|
529
|
-
/// @return hookSpecifications Amounts (out of
|
|
530
|
-
///
|
|
529
|
+
/// @return hookSpecifications Amounts (out of the payment) to send to pay hooks instead of the project. Useful for
|
|
530
|
+
/// automatically routing funds from a treasury as payments come in.
|
|
531
531
|
function beforePayRecordedWith(JBBeforePayRecordedContext calldata context)
|
|
532
532
|
external
|
|
533
533
|
view
|
|
@@ -4,7 +4,7 @@ pragma solidity ^0.8.0;
|
|
|
4
4
|
import {JBDeploy721TiersHookConfig} from "@bananapus/721-hook-v6/src/structs/JBDeploy721TiersHookConfig.sol";
|
|
5
5
|
|
|
6
6
|
/// @notice Configuration for deploying a 721 tiers hook alongside omnichain rulesets.
|
|
7
|
-
/// @param deployTiersHookConfig Configuration which dictates the behavior of the 721 tiers hook
|
|
7
|
+
/// @param deployTiersHookConfig Configuration which dictates the behavior of the 721 tiers hook to deploy.
|
|
8
8
|
/// @param useDataHookForCashOut Whether the 721 hook should handle cash outs (via beforeCashOutRecordedWith).
|
|
9
9
|
/// @param salt A salt to use for the deterministic 721 hook deployment. Combined with `msg.sender` internally, so
|
|
10
10
|
/// cross-chain deterministic addresses require the same sender on each chain.
|