Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ Master list of UniV3 forks:

### Non-breaking changes

* Replace `rebateClaimer()(address)` address (previously the `Deployer` owner
multisig; varies by chain) with a constant EOA owned by ZeroEx Inc

## 2025-03-11

### Breaking changes
Expand Down
7 changes: 0 additions & 7 deletions src/chains/Mainnet/Common.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ import {

import {MAINNET_POOL_MANAGER} from "../../core/UniswapV4Addresses.sol";

import {DEPLOYER} from "../../deployer/DeployerAddress.sol";
import {IOwnable} from "../../deployer/IOwnable.sol";

// Solidity inheritance is stupid
import {SettlerAbstract} from "../../SettlerAbstract.sol";

Expand Down Expand Up @@ -162,8 +159,4 @@ abstract contract MainnetMixin is
function _POOL_MANAGER() internal pure override returns (IPoolManager) {
return MAINNET_POOL_MANAGER;
}

function rebateClaimer() external view returns (address) {
return IOwnable(DEPLOYER).owner();
}
}
2 changes: 2 additions & 0 deletions src/core/UniswapV4.sol
Original file line number Diff line number Diff line change
Expand Up @@ -385,4 +385,6 @@ abstract contract UniswapV4 is SettlerAbstract {
return returndata;
}
}

address public constant rebateClaimer = 0x352650Ac2653508d946c4912B07895B22edd84CD; // an EOA owned by Scott
}