@rev-net/core-v6 0.0.39 → 0.0.41
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 +1 -1
- package/src/REVDeployer.sol +53 -54
- package/src/REVHiddenTokens.sol +1 -1
- package/src/REVLoans.sol +141 -150
- package/src/REVOwner.sol +48 -39
- package/src/interfaces/IREVDeployer.sol +10 -10
- package/src/interfaces/IREVHiddenTokens.sol +4 -4
- package/src/interfaces/IREVLoans.sol +28 -28
- package/src/structs/REV721TiersHookFlags.sol +4 -5
- package/src/structs/REVAutoIssuance.sol +4 -2
- package/src/structs/REVConfig.sol +8 -5
- package/src/structs/REVCroptopAllowedPost.sol +7 -8
- package/src/structs/REVDeploy721TiersHookConfig.sol +10 -10
- package/src/structs/REVDescription.sol +6 -5
- package/src/structs/REVLoan.sol +9 -5
- package/src/structs/REVLoanSource.sol +2 -2
- package/src/structs/REVStageConfig.sol +14 -16
- package/src/structs/REVSuckerDeploymentConfig.sol +2 -2
|
@@ -3,8 +3,8 @@ pragma solidity ^0.8.0;
|
|
|
3
3
|
|
|
4
4
|
import {JBSuckerDeployerConfig} from "@bananapus/suckers-v6/src/structs/JBSuckerDeployerConfig.sol";
|
|
5
5
|
|
|
6
|
-
/// @custom:member deployerConfigurations The
|
|
7
|
-
/// @custom:member salt The salt to use for
|
|
6
|
+
/// @custom:member deployerConfigurations The configuration for bridging tokens to other chains.
|
|
7
|
+
/// @custom:member salt The salt to use for deterministic sucker addresses across chains.
|
|
8
8
|
struct REVSuckerDeploymentConfig {
|
|
9
9
|
JBSuckerDeployerConfig[] deployerConfigurations;
|
|
10
10
|
bytes32 salt;
|