mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
## Summary Renames the rewardsInitiator state variable, modifier, internal check function, setRewardsInitiator function, and RewardsInitiatorSet event in DataHavenServiceManager to their snowbridgeInitiator-prefixed equivalents, to better reflect the role of this address. ## Motivation The previous rewardsInitiator naming was misleading — the address filling this role is specifically the Snowbridge relayer/gateway. Renaming it end-to-end clarifies intent and aligns the codebase with the actual architecture. ## Changes * DataHavenServiceManager.sol: renamed state variable, modifier, internal check, setRewardsInitiator → -> setSnowbridgeInitiator, RewardsInitiatorSet -> SnowbridgeInitiatorSet * IDataHavenServiceManager.sol: updated event, function signature, and NatSpec * Deploy scripts & configs: updated field names across all environments (anvil, testnet, stagenet, mainnet)
32 lines
1.2 KiB
Solidity
32 lines
1.2 KiB
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
pragma solidity ^0.8.27;
|
|
|
|
import {OwnableUpgradeable} from "@openzeppelin-upgrades/contracts/access/OwnableUpgradeable.sol";
|
|
|
|
import {IGatewayV2} from "snowbridge/src/v2/IGateway.sol";
|
|
|
|
/// @notice Test-only fixture contract with intentionally broken storage layout.
|
|
/// @dev This contract is used to validate the snapshot-diff storage layout check fails as expected.
|
|
contract DataHavenServiceManagerBadLayout is OwnableUpgradeable {
|
|
// Deliberate layout shift: inserted before all original state vars
|
|
uint256 public layoutBreaker;
|
|
|
|
// Original variables (shifted by one slot)
|
|
address public snowbridgeInitiator;
|
|
mapping(address => bool) public validatorsAllowlist;
|
|
IGatewayV2 private _snowbridgeGateway;
|
|
mapping(address => address) public validatorEthAddressToSolochainAddress;
|
|
mapping(address => address) public validatorSolochainAddressToEthAddress;
|
|
|
|
// Keep the original gap size to mirror shape, despite the shift
|
|
uint256[45] private __GAP;
|
|
|
|
// Keep a compatible constructor signature for upgrade tests.
|
|
constructor(
|
|
address,
|
|
address
|
|
) {
|
|
_disableInitializers();
|
|
}
|
|
}
|
|
|