@rev-net/core-v6 0.0.32 → 0.0.33

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.
@@ -9,7 +9,6 @@ import {REVLoanSource} from "./REVLoanSource.sol";
9
9
  /// @custom:member prepaidFeePercent The percentage of the loan's fees that were prepaid.
10
10
  /// @custom:member prepaidDuration The duration that the loan was prepaid for.
11
11
  /// @custom:member source The source of the loan.
12
- // forge-lint: disable-next-line(pascal-case-struct)
13
12
  struct REVLoan {
14
13
  uint112 amount;
15
14
  uint112 collateral;
@@ -5,7 +5,6 @@ import {IJBPayoutTerminal} from "@bananapus/core-v6/src/interfaces/IJBPayoutTerm
5
5
 
6
6
  /// @custom:member token The token that is being loaned.
7
7
  /// @custom:member terminal The terminal that the loan is being made from.
8
- // forge-lint: disable-next-line(pascal-case-struct)
9
8
  struct REVLoanSource {
10
9
  address token;
11
10
  IJBPayoutTerminal terminal;
@@ -21,7 +21,6 @@ import {REVAutoIssuance} from "./REVAutoIssuance.sol";
21
21
  /// cashed out. This rate is out of 10_000 (JBConstants.MAX_CASH_OUT_TAX_RATE). 0% corresponds to no tax when cashing
22
22
  /// out.
23
23
  /// @custom:member extraMetadata Extra info to attach set into this stage that may affect hooks.
24
- // forge-lint: disable-next-line(pascal-case-struct)
25
24
  struct REVStageConfig {
26
25
  uint48 startsAtOrAfter;
27
26
  REVAutoIssuance[] autoIssuances;
@@ -5,7 +5,6 @@ import {JBSuckerDeployerConfig} from "@bananapus/suckers-v6/src/structs/JBSucker
5
5
 
6
6
  /// @custom:member deployerConfigurations The information for how to suck tokens to other chains.
7
7
  /// @custom:member salt The salt to use for creating suckers so that they use the same address across chains.
8
- // forge-lint: disable-next-line(pascal-case-struct)
9
8
  struct REVSuckerDeploymentConfig {
10
9
  JBSuckerDeployerConfig[] deployerConfigurations;
11
10
  bytes32 salt;